为 MariaDB 根用户启用密码和 unix_socket 身份验证?

Enable password and unix_socket authentication for MariaDB root user?(为 MariaDB 根用户启用密码和 unix_socket 身份验证?)
本文介绍了为 MariaDB 根用户启用密码和 unix_socket 身份验证?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Ubuntu 16.04 上的 MariaDB 上有一个 root 用户.

I've a root User on the MariaDB on Ubuntu 16.04.

默认情况下,root 用户由 unix_socket 身份验证插件进行身份验证.

As default the root user is authenticated by the unix_socket authentication plugin.

我可以通过设置将认证方式切换为密码方式

I can switch the authentication method to password method by setting

update mysql.user set plugin='' where user='root';

这很好用.但是……

是否有可能通过 unix_socket(通过 root shell)或密码(当它通过 localhost:3306 连接时)验证 root 用户?

Is there a possibility to authenticate the root user by unix_socket (by root shell) or by password (when it is connected by localhost:3306)?

推荐答案

一种可靠且直接的方法是创建另一个超级用户并在您想通过密码连接时使用它.

A reliable and straightforward way would be to create another super-user and use it when you want to connect by password.

CREATE USER admin@localhost IDENTIFIED BY 'password';
GRANT ALL ON *.* TO admin@localhost WITH GRANT OPTION;
-- etc

这篇关于为 MariaDB 根用户启用密码和 unix_socket 身份验证?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)