天天看點

設定mysql5.7遠端連接配接

在ubuntu14.04上安裝好mysql5.7之後,本地可以連接配接mysql伺服器。

遠端就不行。

注釋掉在/etc/mysql/mysql.conf.d/mysqld.cnf裡面的bind-address = 127.0.0.1

# By default we only accept connections from localhost
#bind-address   = 127.0.0.1
           

如果還有問題,如Access denied for user ‘root’@’ip位址’ (using password: YES)

輸入root使用者密碼,進入mysql伺服器指令行

use mysql;
Grant all on *.* to 'root'@'%' identified by 'root使用者的密碼' with grant option;
flush privileges;
           

然後用以下指令檢視哪些使用者和host可以通路,%代表任意ip位址

繼續閱讀