이거 왜 안돼?/LAMP
MYSQL 사용자 비밀번호 바꾸기
삼전동해커
2020. 8. 4. 20:28
이번엔 사용자 비밀번호 바꾸기이다.
저번에 만든 WEBMAKER사용자의 아이디를 바꾸지도 않았는데 비밀번호가 틀리다고해서 바꿔야 된다.
root 계정으로 mysql을 접속해준다.
#mysql -u root
mysql DB를 선택한 후에
>use mysql;
user 테이블을 확인한다.
이 authentication_string에 사용자의 비밀번호가 적혀있다.
비밀번호를 확인해보자.
select user,authentication_string from user;
역시 암호화되어 있다.
그럼 어서 바꿔보자.
alter user '사용자'@'localhost' identified with mysql_native_password by '비밀번호';
완료.