Allowing MySQL Root Access from Specific IP address
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.0.18' IDENTIFIED BY 'password' WITH GRANT OPTION;
make all your changes to affect.
FLUSH PRIVILEGES;
You don't need to restart your MySQL server.
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.0.18' IDENTIFIED BY 'password' WITH GRANT OPTION;
make all your changes to affect.
FLUSH PRIVILEGES;
You don't need to restart your MySQL server.
Comments
Post a Comment