1. 程式人生 > 其它 >mysql 遠端可以連線 localhost或者127.0.0.1 不能連線問題解決

mysql 遠端可以連線 localhost或者127.0.0.1 不能連線問題解決

技術標籤:mysqlmysql

mysql 安裝完成後 ,在別的客戶端上可以連線到伺服器,但是在伺服器上使用localhost卻不能訪問。

選擇mysql庫,使用命令或者視窗都行;

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed

檢視user表資料,使用命令返回內容太多,用工具檢視比較好。如下

如果host為127.0.0.1的密碼和%的不一致,或者配置不一致,可以選擇刪除127.0.0.1的資料,或者修改其資料。

如下命令:

Delete FROM user Where User=’’ or Host=’localhost’ or or Host='127.0.0.1';

flush privileges;