host is not allowed to connect to this mysql server

Solution:

Adding a new administrator privilege account

CREATE USER 'test'@'%' IDENTIFIED BY '1234';
GRANT ALL PRIVILEGES ON *.* TO 'test'@'%' WITH GRANT OPTION;
GRANT ALL ON *.* to test@'%' IDENTIFIED BY '1234'; 

Post a Comment

0 Comments