RedHat6.5怎麼安裝MySQL?以下這篇文章就來跟大家介紹在RedHat6.5下安裝MySQL5.7的方法,希望對你們有幫助。
相關學習推薦:mysql教學
安裝環境:
RedHat6.5
#安裝步驟:
第一步: 下載
下載MySQL5.7:http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.12-1.el6.x86_64.rpm- bundle.tar
第二步驟:安裝
安裝前檢查伺服器是否已安裝MySQL,如已安裝則將其解除安裝:
[root@worker1 tmp]# rpm -qa|grep mysql mysql-libs-5.1.71-1.el6.x86_64 [root@worker1 tmp]# rpm -e --nodeps mysql-libs-5.1.71-1.el6.x86_64 //卸载
將下載的檔案解壓縮:
[root@worker1 tmp]# tar -xf mysql-5.7.12-1.el6.x86_64.rpm-bundle.tar
依序依序安裝:
rpm -ivh mysql-community-common-5.7.12-1.el6.x86_64.rpm rpm -ivh mysql-community-libs-5.7.12-1.el6.x86_64.rpm rpm -ivh mysql-community-devel-5.7.12-1.el6.x86_64.rpm rpm -ivh mysql-community-client-5.7.12-1.el6.x86_64.rpm rpm -ivh mysql-community-server-5.7.12-1.el6.x86_64.rpm
不意外,MySQL應該已經安裝成功。
第三個步驟:環境變數設定
1、啟動MySQL:service mysqld start
解決方法如下:
skip-grant-tables,儲存後重新啟動MySQL服務:
service mysqld restart,然後重新登入。
mysql> use mysql mysql> update user set password_expired='N' where user='root'; mysql> update user set authentication_string=password('123456') where user=‘root'; mysql> flush privileges;
注意:一定要將my.cnf設定檔之前加的跳過密碼偵測內容去掉,重啟服務;
其他:
1、編碼設定:vim /etc/my.cnf,檔案結尾加上編碼內容
default-character-set=utf8
mysql>grant all privileges on . to ‘root'@'%'with grant option;會錯誤:
ERROR 1133 (42000): Can't find any matching row in the user table
mysql>grant all privileges on . to ‘root'@'%'identified by ‘123456' with grant option;3、更改密碼原則:
mysql> set global validate_password_length=0; --更改密码长度 mysql> set global validate_password_policy=0; --更改密码策略为LOW
以上是RedHat6.5怎麼安裝MySQL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!