Access denied for user 'root'@'localhost' (using password: no)
530 ワード
Access denied for user 'root'@'localhost' (using password: no)
sudo /etc/init.d/mysqld stop // mysql
mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD(' ') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
sudo /etc/init.d/mysqld start
mysql -uroot -p