***Linux(Ubuntu、CentOS)下開放 MySQL 服務遠程訪問

Navicat沒法遠程鏈接阿里雲的解決方法:

是由於在阿里雲端有IP限制,因此容易致使沒法遠程的錯誤mysql



CentOS 直接跳到第二步。

第一步,修改配置文件:

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;

第二行命令使設置生效,能夠立刻鏈接。阿里雲

相關文章
相關標籤/搜索