ERROR 1130 Host 'xxx' is not allowed to connect to this MySQL server
ERROR 1130 Host 'xxx' is not allowed to connect to this MySQL server
ex)
userID : testuser
userPW : testuser
DB : xe
ip : 192.168.0.2
Mysql >
GRANT ALL PRIVILEGES ON *.* TO testuser@192.168.0.2 IDENTIFIED BY 'testuser' WITH GRANT OPTION;
FLUSH PRIVILEGES;
접속 권한이 없어서 발생한 문제
ex)
userID : testuser
userPW : testuser
DB : xe
ip : 192.168.0.2
Mysql >
GRANT ALL PRIVILEGES ON *.* TO testuser@192.168.0.2 IDENTIFIED BY 'testuser' WITH GRANT OPTION;
FLUSH PRIVILEGES;
접속 권한이 없어서 발생한 문제