当我尝试通过“-p”提示登录 mysql 时会发生错误,但如果我在同一行(没有提示)输入密码则不会发生错误——这是一种不好的做法。
我在 Amazon Linux 2 上有 mysql 版本 15.1:
这会引发错误(提示):
$mysql -u root -p
Enter Password:<Password>
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
这有效(没有提示):
$mysql -u root -p<Password>
Welcome to the MariaDB monitor. Commands end with ; or \g.
记住“-p”和“密码”之间“没有空格”
知道为什么会这样吗?