ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YSE)

1370 단어 mysql직장레저
엉뚱한 오류, 해결 방법은 루트 비밀번호를 수정하는 것이다.우선 모든 mysql 프로세스를 죽여.다음:
    mysql
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
mysql
# mysql -u root mysql
root
mysql
> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql
> FLUSH PRIVILEGES;
mysql
> quit

mysql
# /etc/init.d/mysql start

좋은 웹페이지 즐겨찾기