mysql 安裝教學~~!
前進YUM
搜尋 mysql 勾選~~!
安裝.....
如果沒啟動可以試試下面指令[mysql 官方]
//Start the MySQL server with the following command:
shell> sudo service mysqld start
//This is a sample output of the above command:
Starting mysqld:[ OK ]
/**You can check the status of the MySQL server with the following command:*/
shell> sudo service mysqld status
//This is a sample output of the above command:
mysqld (pid 3066) is running.
//Stop the MySQL server with the following command:
shell> sudo service mysqld stop