我的笔记本电脑上运行的是 CentOS 6.3,并且已经连接到网络。
与我的 PC 上的 MySQL 服务器对话的命令行是什么?
两台设备都通过我的路由器连接,并且可以相互通信。
答案1
您需要ip-address
使用命令了解运行 MYSQL 服务器的 PC 的地址ifconfig
。
然后从您的笔记本电脑运行以下命令。
$ mysql --host=ip-address --user=user_name --password=password
在哪里,
user_name = a user who have access to db,
password = password of the above user.