-
MySQL 5.7 → MariaDB 10.3 마이그레이션 - root 비밀번호 오류취업용 Spring 프로젝트/오류 내역 2019. 7. 18. 15:05
https://wnw1005.tistory.com/57
(도움 받은 블로그)
오류 내역
Enter current password for root (enter for none):
ERROR 1524 (HY000): Plugin 'auth_socket' is not loaded오류 해결 내역
- sudo systemctl stop mariadb
- sudo mysqld_safe --skip-grant-tables &
- mysql -u root
- select Host,User,plugin from mysql.user where User='root';
- update mysql.user set plugin='mysql_native_password';
- update mysql.user set password=PASSWORD("newpassword") where User='root';
- flush privileges;
- quit;
- sudo kill -9 $(pgrep mysql)
- udo systemctl start mysql or sudo systemctl start mariadb
오류 해결
'취업용 Spring 프로젝트 > 오류 내역' 카테고리의 다른 글
GitHub 500 에러 (0) 2019.07.23 Ajax 전송 시 JSON타입 data 여러 개 넘길 때 오류 (0) 2019.07.22 이클립스 → GitHub 오류 (0) 2019.07.20