串連mysql時報:message from server: "Host '192.168.76.89' is not allowed to connect to this MySQL server

來源:互聯網
上載者:User

標籤:start   時報   info   change   ted   操作   quick   query   warning   

處理方案:

1、先用localhost方式串連到MySQL資料庫,然後使用MySQL內建的資料庫mysql;

          use mysql; 

 

2、執行:select host from user where user = ‘root‘;  發現,host的值就是localhost。

     所以將它的值改掉:update user set host=‘%‘ where user = ‘root‘; 

 

3、修改完成後,執行:flush privileges;  

     將修改內容生效,再次配置時,用IP地址或者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

mysql> select host from user where user = ‘root‘;

+-----------+

| host      |

+-----------+

| localhost |

+-----------+

1 row in set (0.00 sec)

 

mysql> update user set host=‘%‘ where user = ‘root‘;

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0

 

mysql> select host from user where user = ‘root‘;

+------+

| host |

+------+

| %    |

+------+

1 row in set (0.00 sec)

 

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

 

mysql>

串連mysql時報:message from server: "Host '192.168.76.89' is not allowed to connect to this MySQL server

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.