178 無法連線遠端伺服器mysql資料庫

2021-07-14 05:32:46 字數 835 閱讀 2033

無法連線遠端伺服器mysql資料庫

今天連線阿里雲上的mysql資料報錯,資訊如下

error 2003 (hy000): can't connect to mysql server on

"host" (111)

vim /etc/mysql/my.cnf

# instead of skip-networking the default

is now to listen only on

# localhost which is more compatible and

isnot less secure.

#bind-address = 127.0

.0.1

<---注釋掉這一行就可以遠端登入了

另外乙個報錯

報錯:1130-host ... is not allowed to connect to this mysql server
可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 「mysql」 資料庫裡的 「user」 表裡的 「host」 項,從」localhost」改稱」%」

mysql -u root -pvmwaremysql

>use mysql;

mysql> update user set host =

'%'where user =

'root';

mysql> flush privileges;

xshell 無法連線遠端伺服器

如果出現 missing var empty sshd 網路可以ping 通 也可以在連線不上那伺服器 通過 ssh 連線其它伺服器 應該是許可權問題 解決方法 先賦予許可權 chmod 600 etc ssh ssh host rsa key chmod 600 etc ssh ssh host ...

雲伺服器 遠端mysql 無法連線

問題 mysql不管是用免安裝版的,還是用直接安裝的,還是用phpstudy直接發布的mysql服務。都只能用localhost登入,不能用伺服器的ip進行遠端訪問 遇到這個問題。按照網上大家介紹的方法去解決,但是一直不行。後來發現自己的阿里雲伺服器安全組規則中沒有新增埠號為3306的項,加上之後,...

PUTTY無法遠端連線伺服器故障解決

對於乙個剛剛了解putty工具的新手來說,在putty工具使用中有時出現了問題而無法解決。今天就來介紹怎麼解決putty無法遠端連線伺服器的故障。用putty遠端連線伺服器時,提示錯誤 server unexpectedlyclosed network connection 解決方法 1 檢視伺服器...