ERROR 1133 (42000): Can't find any matching row in the user table

565 단어 linuxmysql
1. 오류 설명
mysql> set password for ‘root’@‘localhost’ = password('root');
ERROR 1133 (42000): Can't find any matching row in the user table
mysql> set password for ‘root’@‘localhost’ = password('root');
ERROR 1133 (42000): Can't find any matching row in the user table

2. 오류 원인
Linux 시스템에 MySQL을 설치한 후 비밀번호를 설정하면 오류가 발생합니다.알림은 "사용자 테이블에서 일치하는 줄을 찾을 수 없습니다."입니다.
오류 원인은 사용자 테이블을 수정했지만 권한이 없습니다
3. 해결 방법
사용자 테이블의 사용 권한 수정
FLUSH PRIVILEGES;

좋은 웹페이지 즐겨찾기