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基本配置完成