当前位置: > CentOS > CentOS教程 >

Centos7安装Mysql

时间:2015-07-08 22:47来源:linux.it.net.cn 作者:IT

前提条件:

1、安装了yum命令

安装步骤:

[html] view plaincopy
 
  1. 1、wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm  
[html] view plaincopy
 
  1. 2、rpm -ivh mysql-community-release-el7-5.noarch.rpm  
[html] view plaincopy
 
  1. 3、yum install mysql-community-server  
成功安装之后重启mysql服务
[html] view plaincopy
 
  1. 4、service mysqld restart  

初次安装mysql是root账户是没有密码的
设置密码的方法
[html] view plaincopy
 
  1. 5、mysql -u root -p  
输入密码的时候,直接回车,就进入了控制台
[html] view plaincopy
 
  1. 6、SET PASSWORD=password('password');  
[html] view plaincopy
 
  1. 7、GRANT all privileges on *.* TO 'root'@'%'identified by'password'WITH GRANT OPTION;   
  2.    FLUSH PRIVILEGES;  

到此,安装成功了。 (责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容