今天在測試MySQL的鏈接時候,發現鏈接不經過,並報錯ERROR 2003 (HY000): Can't connect to mysql server on '192.168.10.210' (111)
測試代碼:html
require 'mysql2' client = Mysql2::Client.new(:host=>"192.168.10.210",:username=>'root',:password=>"root") puts results = client.query("show databases;")
谷歌了一下以後,原來是在mysql的my.cnf中有下面一段代碼:mysql
# Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. bind-address = 127.0.0.1 #這裏默認監聽本地localhost
若是要讓mysql監聽到其餘的地址,能夠將bind-address = 127.0.0.1
註釋掉。
或者將bind-address = 0.0.0.0
監聽全部的地址sql
屏蔽掉以後再次運行代碼又出現:Host '192.168.10.83' is not allowed to connect to this MySQL server
解決方法:
若是想讓192.168.10.83
可以鏈接到本地的這個數據庫,要讓數據庫給其分配權限,登陸mysql,執行:(username 和 password是登陸mysql的用戶名和密碼)數據庫
GRANT ALL PRIVILEGES ON *.* TO 'username'@'192.168.10.83' IDENTIFIED BY 'password' WITH GRANT OPTION;
若是要想全部的外部ip地址都可以訪問使用mysql,能夠執行下面:less
GRANT ALL PRIVILEGES ON *.* TO 'username'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
以後執行刷新數據庫:tcp
flush privileges;
若是要查看用戶的權限,能夠執行:post
> show grants for 'root'@192.168.10.83
以上摘抄於:測試
http://www.cnblogs.com/zihanxing/p/7049244.htmlui
CentOS6開啓MySQL遠程訪問
1.開放MySQL訪問端口3306this
修改防火牆配置文件
vi /etc/sysconfig/iptables
加入端口配置
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
從新加載規則
service iptables restart
2.修改mysql庫裏的host
登陸mysql;
use mysql
update user set host='%' where user='root' and host='localhost';
記得必定還得修改密碼,由於這時密碼已失效,雖然本地還能夠原密碼登陸,可遠程改了host後仍是無法訪問
UPDATE user SET password=password("root") WHERE user='root';
flush privileges;
3.重啓mysql,遠程就能夠訪問了
service mysqld restart;
CentOS7開啓MySQL遠程訪問
CentOS7這個版本的防火牆默認使用的是firewall,與以前的版本使用iptables不同。按以下方便配置防火牆:
一、關閉防火牆:sudo systemctl stop firewalld.service
二、關閉開機啓動:sudo systemctl disable firewalld.service
三、安裝iptables防火牆
執行如下命令安裝iptables防火牆:sudo yum install iptables-services
四、配置iptables防火牆,打開指定端口(CentOS6同樣)
五、設置iptables防火牆開機啓動:sudo systemctl enable iptables
六、以後的和CentOS6同樣
CentOS下防火牆的基本操做命令
CentOS 配置防火牆操做實例(啓、停、開、閉端口):
注:防火牆的基本操做命令:
查詢防火牆狀態:
[root@localhost ~]# service iptables status
中止防火牆:
[root@localhost ~]# service iptables stop
啓動防火牆:
[root@localhost ~]# service iptables start
重啓防火牆:
[root@localhost ~]# service iptables restart
永久關閉防火牆:
[root@localhost ~]# chkconfig iptables off
永久關閉後啓用:
[root@localhost ~]# chkconfig iptables on
以上摘抄於:
https://www.cnblogs.com/qianzf/p/6995140.html
若是上述列出的方案不可以解決你遇到的問題,能夠參考以下mysql官方網頁:
https://dev.mysql.com/doc/refman/5.6/en/problems-connecting.html