我正在尝试向mysql数据库添加一个新用户。用户应获得所有权限,并应通过tcp/ip ssh连接进行连接。
我使用了以下命令:
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
这并没有起作用,所以我看了一下,发现了一个类似这样的问题,答案告诉我再次使用同一个用户,但使用“%”而不是“localhost”。我试过了,但还是有同样的错误。
有人有主意吗?
编辑:
我收到的错误是:
无法连接ssh隧道
Authentication error. Please check that your username and password are
correct and try again. Details(Original exception message):
Authentication failed, please check credentials.Please refer to
logs for details.
暂无答案!
目前还没有任何答案,快来回答吧!