rhel 7安装Mysql

rhel7安装mysql服务


环境:

  1)rhel 7虚拟机mysql

  2)配置完163网络yum源,而且保证网络通畅sql

安装过程:

  1) 安装Mysql和Mysql-devel网络

    命令:yum install mysqlide

       yum install mysql-develrest

  2 ) 安装mysql-serverserver

    命令: wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpmget

        rpm -ivh mysql-community-release-el7-5.noarch.rpm虚拟机

       yum install  mysql-communityit

  3)重启mysql服务配置

    命令 : service mysqld restart 

 

基本使用:

  1)设置root密码

    命令: mysql -uroot

       set password for 'root'@'localhost' =password('password');

  2)远程链接设置:

    (1) 建立新用户

        create user 'username'@'%' identified by 'password';

    (2)为用户远程链接设置权限

        grant all privileges on *.* to username@'%'identified by 'password';

 

 

至此,mysql基本配置完成

相关文章
相关标签/搜索