1. 程式人生 > >centos7 用yum安裝mysql(轉)

centos7 用yum安裝mysql(轉)

unity 文件 設置密碼 highlight yum oca 網上 get r文件

CentOS 7的yum源中貌似沒有正常安裝mysql時的mysql-sever文件,需要去官網上下載

 	
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server

成功安裝之後重啟mysql服務

# service mysqld restart

初次安裝mysql是root賬戶是沒有密碼的

設置密碼的方法

# mysql -uroot
mysql> set password for [email protected]
/* */ = password(‘mypasswd‘); mysql> exit

搞定!

centos7 用yum安裝mysql(轉)