상세 컨텐츠

본문 제목

ERROR (28000) Access denied for user 'root'@'localhost'

메모 - 프로그래밍/이슈

by wjjun 2019. 6. 30. 10:09

본문


루트 계정 접근 거부


DBeaver 클라이언트에서 root@localhost:3306 접속하면 에러 표시
ERROR (28000) Access denied for user 'root'@'localhost'


접근 권한변경


mysql 데이터베이스 접속
use mysql

권한 부여

grant all on *.* to ‘root’@‘localhost’ identified by ‘root’ with grant option;

변경사항 적용
flush privilieges;

종료
exit;



관련글 더보기

댓글 영역