我是MySQL的新手,我想在Windows桌面上运行WordPress,它需要MySQL。
我安装Web Platform Installer了Microsoft提供的所有内容。我从来没有为MySQL设置过root密码,在安装WordPress的最后一步中,它要求输入MySQL服务器密码。
Web Platform Installer
root的默认密码是多少(如果有的话)以及如何更改它?
我试过了:
mysql -u root password '123'
但是它显示了我:
Access denied for user 'root@localhost' (using password:NO)
在此之后,我尝试:
mysql -u root -p
但是,它要求输入我没有的密码。
更新 :按照博佐的建议,我做了以下工作:
mysqld --defaults-file="C:\\program files\\mysql\\mysql server 5.1\\my.ini" --init-files=C:\\root.txt
该命令运行时出现了关于字符集的警告,下面我提到了
我从Windows服务启动MySQL服务
mysql -u root -p EnterPassword: 123 // 123 was the password
EnterPassword: 123 // 123 was the password
Access denied for user 'root@localhost' (using password:**YES**)
我该如何解决?我正在等待您的来信。
您可以重设root密码。请记住,不建议使用没有密码的root用户。