1. 程式人生 > 其它 >linux 下安裝mysql

linux 下安裝mysql

  1. 先進入root 許可權 su root, 防止後續操作有因為許可權不夠報錯
  2. 如果上次安裝有誤需重灌,先查詢 
    •   rpm -qa | grep mysql                                                          
  3. 刪除               
    •   rpm -e 檔名
  4. 下載               
    •   wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
  5. 安裝rpm         
    •   yum -y install mysql57-community-release-el7-10.noarch.rpm
  6. 安裝mysql       
    •   yum -y install mysql-community-server
  7. 上一步若出現   
    •   Unable to find a match: mysql-community-server, 則 yum module disable mysql
  8. 啟動服務         
    •   systemctl start mysqld.service
  9. 檢視執行狀態   
    •   service mysqld status
  10. 檢視初始密碼   
    •   grep 'password' /var/log/mysqld.log
  11. 進入資料庫       
    •   mysql -u root -p
  12. 切換資料庫
    •   use mysql
  13. 改密碼
    •   update user set authentication_string=password('root') where user='root';  
  14. 若前面步驟密碼無法登陸,進入這個檔案 
    •   find / -name my.cnf, 然後在【mysqld】 內增加 skip-grant-tables, 可免密