我尝试连接到ip 10.198.161.41
当我给出
mysql -u user -p -h 10.198.161.41
输出:
输入密码:ERROR 2003(HY000):无法连接到MySQL服务器 '10 .198.161.41'(111)
10.198.161.41
上的mysqld在端口4308
上运行。
是否应在命令中提及?
也没有my.cnf file in cygwin
。
我能尝试什么?
(Info:The 10.198.161.41 is a windows machine and has mysqld running on it)
答案 0 :(得分:0)
如果你使用mysql任何不同的端口而不是3306这是mysql默认端口那么你必须提到它连接如下 -
mysql -u user -p -h 10.198.161.41 -P 4308
这里小p表示密码,P表示端口。