MariaDB:执行GRANT ALL时出现错误1045

时间:2014-11-12 21:24:08

标签: mariadb mysql-error-1045 centos7

我希望有人能在这里帮助我。使用Centos 7,我发现所有安装文档都说使用MariaDB而不是mysql,这很好,但我似乎无法启用远程访问。我已经使用了“全部使用给用户@'address'通过'your-root-password'识别;“并刷新权限并重新启动该服务。我仍然无法通过远程终端连接我得到ERROR 1045(28000):访问被拒绝用户名。

所以我发现另一篇文章说我应该去my.cnf文件并确保我的绑定设置设置正确等等。

https://mariadb.com/kb/en/mariadb/documentation/getting-started/configuring-mariadb-for-remote-client-access/

根据本文的内容,我的my.cnf文件与应有的完全不同。不包含绑定地址或跳过网络或端口或任何东西。它看起来如下所示。

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd

[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid

#
# include all files from the config directory
#
!includedir /etc/my.cnf.d

我想知道是否有其他人可能知道这是怎么回事。感谢。

1 个答案:

答案 0 :(得分:0)

您可能需要调查此链接: http://www.versatilewebsolutions.com/blog/2015/05/dealing-with-mariadb-plugin-unixsocket-is-not-loaded.html

基本上,MariaDB将unix_socket身份验证切换为默认身份验证插件。要绕过它,请连接到MariaDB服务器并执行以下查询:

USE mysql;
UPDATE user SET plugin='' WHERE User = 'root';
FLUSH PRIVILEGES;
exit

这将禁用套接字身份验证并切换回标准身份验证。我不认为这是推荐用于生产。