root@test-2:/usr/local# mysql -u root -H 192.168.x.xxx -p
输入密码:
ERROR 1045(28000):拒绝用户“root”@“localhost”访问(使用密码:是)
答案1
-H
是 的别名--html
,它将
生成 HTML 输出。
您正在寻找-h
或--host=
。
答案2
考虑使用以下内容:
[alexus@wcmisdlin02 ~]$ cat ~/.my.cnf
[client]
user=root
password=password
[alexus@wcmisdlin02 ~]$
您host=fqdn
也可以包括。