如何在XAMPP中创建新的MySQL用户?另外,我可以删除现有的“root”用户吗?
答案 0 :(得分:3)
MySQL文档非常好: http://dev.mysql.com/doc/refman/5.1/en/create-user.html
确保新安装的安全: http://dev.mysql.com/doc/refman/5.0/en/default-privileges.html
答案 1 :(得分:1)
为时已晚,但是我敢肯定,我的回答会对社区有所帮助。
mysql -u root -p
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password';
\q
此命令授予用户所有权限。有关设置MySQL数据库权限的更多信息,请访问https://dev.mysql.com/doc/refman/5.5/en/grant.html。
DELETE FROM mysql.user
WHERE user = 'root'
AND host = 'localhost';
希望它会有所帮助。
答案 2 :(得分:0)
对我来说,以下配置有效。对于LAMPP:
-从http://localhost/phpmyadmin/index.php创建一个名为“ dvwa”的新数据库。
-然后在DWVA nano config.inc.php文件中。将“ db_password字段”设置为空。 (例如“”)。
-从xampp重新启动apache和mysql