是由於在阿里雲端有IP限制,因此容易致使沒法遠程的錯誤mysql
Ubuntu(CentOS 直接跳到第二步):c++
vim /etc/mysql/my.cnf
找到:sql
bind-address = 127.0.0.1
改成:數據庫
bind-address = 0.0.0.0 #容許任意ip地址訪問
也能夠指定IP地址。
而後重啓MySQL:vim
sudo /etc/init.d/mysqld restart
受權root用戶進行遠程鏈接,注意替換 「password」 爲 root 用戶真正的密碼:ide
grant all privileges on *.* to root@"%" identified by "password" with grant option; flush privileges;
第二行命令使設置生效,能夠立刻鏈接。阿里雲