Answers:
最简单的方法是使用〜/ .my.cnf文件的client部分,然后在其中添加凭据。
[client]
user=root
password=somepassword
...
最好也使该文件只能由root读取。
/etc/my.cnf
在mysql服务器用来启动的地方进行编辑。如果您将mysql根用户放在/etc/my.cnf
ANYONE中,则可以在每个数据库上使用具有所有特权的mysql服务器,而无需输入密码。Iain指向.my.cnf
根用户家中的shell用户自己,这是正确的。
对于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/
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '';
... BY "";
。谢谢!
从MySQL 5.6.6开始,您可以使用mysql_config_editor创建一个加密文件,该文件将自动登录:
mysql_config_editor set --login-path=client --host=localhost --user=root --password
然后在出现提示时输入密码。
注意:如果您的密码中包含“#”以及其他字符,请在输入密码时使用单引号。
制作一个仅包含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;
...
ps
(1)读取的命令行上