wamp mysql配置

mysql修改密码:update mysql.user set authentication_string=password('密码') where user='root';

更新权限:flush privileges;

mysql允许远程链接:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;

更新权限:flush privileges;

原文地址:https://www.cnblogs.com/jtrend/p/6845987.html