mysql服務設定遠端連線 解決1251 client does not support ..問題

來源:互聯網
上載者:User

標籤:鏡像   www.   plugin   target   修改   str   遠端連線   csdn   fill   

在docker裡面建立mysql容器後設定的密碼在遠程主機串連時候出現錯誤:

一、如果是在docker裡面安裝的mysql鏡像則需要先進入mysql裡面:參考上一篇:https://www.cnblogs.com/ya-qiang/p/9093558.html

二 、mysql配置

1、使用root使用者串連遠程主機mysql

mysql -u root -p  

備忘 : mysql -u 最高許可權使用者名稱 -p   再輸入密碼進入

2、設定使用者配置項

(1) 查看使用者資訊

select host,user,plugin,authentication_string from mysql.user;  

備忘:host為 % 表示不限制ip   localhost表示本機使用    plugin非mysql_native_password 則需要修改密碼

(2)修改使用者密碼

1.如果想要設定遠程這樣設定:ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘newpassword‘; #更新一下使用者的密碼 root使用者密碼為newpassword  

2.如果要設定本地plugin為mysql_native_password這樣設定:

ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘newpassword‘; #更新一下使用者的密碼 root使用者密碼為newpassword  

flush privileges;

 

mysql服務設定遠端連線 解決1251 client does not support ..問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.