connecting to mysql server on another PC in LAN

前端 未结 10 807
[愿得一人]
[愿得一人] 2020-12-09 07:00

I have mySQL setup in a PC on my local network, how do I connect to it? I also have mySQL installed in this computer (which I want to use to connect to the database).

<
10条回答
  •  北海茫月
    2020-12-09 07:17

    mysql -u user -h 192.168.1.2 -p
    

    This should be enough for connection to MySQL server. Please, check the firewall of 192.168.1.2 if remote connection to MySQL server is enabled.

    Regards

提交回复
热议问题