允许 Linux root 用户无需密码即可访问 mysql root

允许 Linux root 用户无需密码即可访问 mysql root

在 cPanel 上,当我以 root 身份登录并输入“mysql”而不输入主机名和密码时,它允许我直接访问 mysql root 用户。

我想在我的一个非 cpanel 服务器上执行此操作,其中 linux root 用户以与在 cPanel 上相同的方式无需密码即可登录到 mysql root 用户。

这可能吗 ?

答案1

最简单的方法是使用 ~/.my.cnf 文件的客户端部分,并在那里添加凭据。

[client]
user=root
password=somepassword
...

最好也让该文件只有 root 可以读取。

答案2

对于 mysql 5.7+,如果您在初始设置时设置了空密码,mysql 将自动将其用作auth_socket策略。尝试在不更改策略的情况下更新密码将不会有任何结果。如果您的用户是 ,您始终可以不使用密码登录root

解决方案 运行以下命令更改认证策略并设置密码

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ''

参考:https://www.percona.com/blog/2016/03/16/change-user-password-in-mysql-5-7-with-plugin-auth_socket/

答案3

从 MySQL 5.6.6 开始,您可以使用 mysql_config_editor 创建一个加密文件,该文件将自动帮助您登录:

mysql_config_editor set --login-path=client --host=localhost --user=root --password

然后在提示时输入密码。

注意:如果您的密码中包含“#”或可能包含其他字符,请在输入密码时使用单引号。

答案4

创建一个仅包含 mysql root 密码的文件,并且只有 root 可以读取。

# ls -l /root/.mysqlpw 
-rw------- 1 root root 7 2013-08-19 13:24 /root/.mysqlpw

您可以使用以下方式导入数据库

# mysql -u root -p`cat /root/.mysqlpw ` yourdatabase < databasedump.sql

或者连接到你的数据库并发出 mysql 命令

# mysql -u root -p`cat /root/.mysqlpw ` yourdatabase
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 20460
Server version: 5.1.63-0ubuntu0.10.04.1 (Ubuntu)

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| yourdatabase       |
+--------------------+
3 rows in set (0.00 sec)

mysql> show tables;
...

相关内容