程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql主主復制+keepalived高可用(使用VIP訪問數據庫提示不允許連接)

mysql主主復制+keepalived高可用(使用VIP訪問數據庫提示不允許連接)

編輯:MySQL綜合教程

mysql主主復制+keepalived高可用(使用VIP訪問數據庫提示不允許連接)


ERROR 1130 (HY000): Host 'nginx-vip' is not allowed to connect to this MySQL server     mysql> GRANT ALL PRIVILEGES ON *.* TO 'slave'@'192.168.0.232' IDENTIFIED BY 'slave' WITH GRANT OPTION; Query OK, 0     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 user,host from user; +-------+---------------+ | user  | host          | +-------+---------------+ | root  | %             | | root  | 127.0.0.1     | | slave | 192.168.0.231 | | slave | 192.168.0.232 | | root  | ::1           | |       | localhost     | |       | nginx01       | | root  | nginx01       | +-------+---------------+ 8 rows in set (0.00 sec)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved