新装mysql配置

新装的mysql,使用mysql连接的时候会提示:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES),可以使用以下方法来解决

1.首先关闭mysql

$service mysql stop

2.然后再以安全模式打开mysql

$mysqld_safe --user=root --skip-grant-tables --skip-networking &

3.然后进入mysql进行管理

$mysql
mysql>flush privileges;
msyql>grant all privileges to *.* user@'%' identify by 'password';
mysql>flush privileges;

4.最后再重启mysql

你可能感兴趣的:(新装mysql配置)