Connecting Clients machine to MySQL Server machine
问题 I've two machine. Machine 1 (Server) : MySQL Server installed on it. Machine 2 (Client) : MySQL Server not installed on it. I would like connect from Machine 2 (Client) to MySQL Server on Machine 1 (Server). I did following command on Machine 1 (Server) to grant permission to all clients : GRANT ALL ON *.* TO root@'%' IDENTIFIED BY '123456'; Well, I need to connect MySQL Server from Client. I've write below command in cmd on Machine 2 (Client) : mysql -h 192.168.0.1 -u root -p 192.168.0.1 on