[쇼핑몰] 아놔.. 업데이트 할때마다 문제가..
- 꼬반
- 2016. 2. 5. 10:56
우분투가 15.10 으로 올라가고 mariadb 가 다시 문제가 발생했다.
ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded
아놔...
그래서 백엔드에서 db 접속하면 에러가 뿜뿜! 하면서 백엔드가 죽음.. 쉣!
10.0.23 버전이던 maria를 겸사겸사 10.1.11 로 올리고
참조 : https://zhxq.io/how-to-solve-mariadb-plugin-unix_socket-is-not-loaded-problem-after-upgrade-to-ubuntu-15-04/
참고하여 해결하였다.
1. /etc/init.d/mysql stop and killall -9 mysqld 2. mysqld_safe –skip-grant-tables & 3. mysql -u root [mysql] use mysql; [mysql] update user set plugin=” where User=’root’; [mysql] flush privileges; [mysql] \q or exit /etc/init.d/mysql stop (or service mysql stop) and killall mysqld and start the mysql thru service mysql start or /etc/init.d/mysql restart