我正在尝试从命令行关闭 mysql 服务器。
MySQL root 密码是“”(空白)
C:\Users\Jigar>"C:\mysql\bin\mysqladmin.exe" -u root -p shutdown
Enter password:
当我按下回车键时,它会停止服务器。
但是当我不指定时-p
,我无法停止服务器:
C:\Users\Jigar>"C:\mysql\bin\mysqladmin.exe" -u root shutdown
C:\mysql\bin\mysqladmin.exe: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
我实际上正在编写一个程序来停止服务器。-p
在 mac 中,我无需在命令中指定即可使用空白 root 密码停止服务器。但我不能在 Windows 中做同样的事情。