欧美另类自拍,白白操在线视频,性欲av在线,天堂电影院在线观看完整版高清下载,偷窥者电影未删减完整版百度网盘 ,爱爱资源网,钉子电影电影高清完整版在线观看

首頁 服務 產品 文檔 關于

centos 華為OpenEuler 用c#連接MySQL出現(xiàn)錯誤 Unable to connect to any of the specified MySQL hosts.

centos 華為OpenEuler 用c#連接MySQL出現(xiàn)錯誤 Unable to connect to any of the specified MySQL hosts.

檢查連接字符串沒問題

防火墻也沒開,

主要是因為iptables相關端口沒開導致的

開放TCP3306端口***************************
1、開啟iptables端口

開啟1521端口:

iptables -A INPUT -p tcp --dport 3306 -j ACCEPT

iptables -A OUTPUT -p tcp --dport 3306 -j ACCEPT

2、保存iptables設置,重啟iptables

在更改完設置后要先保存設置:

service iptables save

然后再重啟iptables才能使設置生效:

service iptables restart

3、看端口

輸入命令查看已開端口:

iptables -L -n