我仍然是MySQL和Debian的新手,但在过去的几天里一直在阅读。
我有一个root帐户到我想用于Wordpress的虚拟机。我读到的一件事是我应该密码保护MySQL,因为默认root用户不需要密码。
我读过这样的人:
mysql> mysqladmin -u root password mypassword;
但是这给了我以下错误:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysqladmin -u root password mypassword' at line 1
答案 0 :(得分:0)
您正在mysql中运行该命令,但该命令实际上是直接从终端运行。
mysqladmin -u root password mypassword
如果您已在终端内的 mysql 中,请键入exit
,然后输入您的mysqladmin
命令。