MariaDB Tipps und Tricks

From Lolly's Wiki
Revision as of 18:04, 25 November 2021 by Lollypop (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")
Jump to navigationJump to search


ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded

Problem

<syntaxhighlight lang=bash>

  1. mysql

ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded </source>

Solution

<syntaxhighlight lang=bash>

  1. service mysql stop
  2. mysqld_safe --skip-grant-tables

150918 15:41:13 mysqld_safe Logging to '/var/log/mysql/error.log'. 150918 15:41:13 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

  1. mysql

Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 2 Server version: 10.0.20-MariaDB-0ubuntu0.15.04.1 (Ubuntu)

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> INSERT INTO mysql.plugin (name, dl) VALUES ('unix_socket', 'auth_socket'); Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> shutdown

  1. service mysql start

</source>