Setelah import hasil mysqldump --all-databases dari MariaDB 10.1.23 Debian 7 ke MariaDB 10.1.26 CentOS 7 muncul error

ERROR 1524 (HY000): Plugin ‘unix_socket’ is not loaded

Solusi

Solusinya adalah dengan mengaktifkan plugin mysql_native_password di MariaDB dan mengupdate password root MariaDB

Matikan service mariadb

systemctl stop mysql

Jalankan MariaDB dalam safe mode

mysqld_safe --skip-grant-tables &

Login sebagai root, aktifkan plugin mysql_native_password

mysql -u root
update user set plugin="mysql_native_password";

Update password root MariaDB

update user set password=PASSWORD("J4RAN9UDA2000") where User='root';
quit;

ganti J4RAN9UDA2000 dengan password aman pilihan anda.

Restart MariaDB

systemctl stop mysql
kill -9 $(pgrep mysql)
systemctl start mysql

Leave a comment

Your email address will not be published. Required fields are marked *