MariaDB Tipps und Tricks: Difference between revisions
From Lolly's Wiki
Jump to navigationJump to search
m (Text replacement - "[[Kategorie:" to "[[Category:") |
m (Text replacement - "</source" to "</syntaxhighlight") |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
==ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded== | ==ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded== | ||
===Problem=== | ===Problem=== | ||
< | <syntaxhighlight lang=bash> | ||
# mysql | # mysql | ||
ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded | ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded | ||
</ | </syntaxhighlight> | ||
===Solution=== | ===Solution=== | ||
< | <syntaxhighlight lang=bash> | ||
# service mysql stop | # service mysql stop | ||
# mysqld_safe --skip-grant-tables | # mysqld_safe --skip-grant-tables | ||
Line 28: | Line 28: | ||
MariaDB [(none)]> shutdown | MariaDB [(none)]> shutdown | ||
# service mysql start | # service mysql start | ||
</ | </syntaxhighlight> |
Latest revision as of 02:55, 26 November 2021
ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded
Problem
# mysql
ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded
Solution
# service mysql stop
# 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
# 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
# service mysql start