mysql安裝之後連線不上的問題
1. 修改原始密碼 mysql -uroot -p cCS<-H=Yu0Os //後面是系統生成的密碼
2. 上面設定留下的坑
客戶端連線後產生以下問題 錯誤程式碼是1130,ERROR 1130: Host X.X.X.X is not allowed to connect to this MySQL server
猜想是無法給遠端連線的使用者許可權問題。結果這樣子操作mysql庫,即可解決。
在伺服器登入mysql後,更改 “mysql” 資料庫裡的 “user” 表裡的 “host” 項,從”localhost”改稱’%’。
下面是用SQL語句解決問題:
mysql -u root -ppass use mysql; select ‘host’ from user where user=‘root’; update user set host = ‘%’ where user =‘root’; flush privileges; select ‘host’ from user where user=‘root’;
第一句是以許可權使用者root登入
第二句:選擇mysql庫
第三句:檢視mysql庫中的user表的host值(即可進行連線訪問的主機/IP名稱)
第四句:修改host值(以萬用字元%的內容增加主機/IP地址),當然也可以直接增加IP地址
第五句:重新整理MySQL的系統許可權相關表
第六句:再重新檢視user表時,有修改。。
重起mysql服務即可完成。
設定完成後產生一下問題
Authentication plugin ‘caching_sha2_password’ cannot be loaded: dlopen(/usr/local/mysql/lib/plugin/caching_sha2_password.so, 2): image not found
原因:密碼加密方式【caching_sha2_password】,客戶端不支援。 在資料庫伺服器上登入: mysql>use mysql; mysql>select user, host, plugin, authentication_string from user\G; *************************** 2. row *************************** user: root host: % plugin: caching_sha2_password authentication_string: $AXN:@GbgA#f7W+*'3rfILovff0TIgd2lrblzTBREzWsJSvRFNwV0Eu/C/XX9
啦啦啦。。。。一大丟
於是我猜測,root使用者 在安裝資料庫是,指定的加密外掛是:caching_sha2_password,應該是我的安裝沒修改安裝配置檔案
於是我要修改root使用者的加密外掛,因為用新新增的使用者需要去授權,反正很麻煩,直接改一下root的密碼加密方式。 修改 root 使用者密碼:
ALTER USER ‘root’@’%’ IDENTIFIED WITH mysql_native_password BY ‘root’;
OK。