1.mysql登录之sock:
1 |
mysql -S /var/run/mysqld/mysqld.sock -p123456 |
2.免密码登录
方式一 my.cnf
增加[client]
标签
1 2 3 |
[client] user="root" password="你的密码" |
1 |
单对定义不同的客户端 |
1 2 3 4 5 6 7 |
[mysql] # 这个是给/usr/loca/mysql/bin/mysql 使用的 user=root password="你的密码" [mysqladmin] # 这个是给/usr/local/mysql/bin/mysqladmin使用的 user=root password="你的密码" |
方式二 login-path
1 2 3 4 5 6 7 8 9 10 11 12 |
shell> mysql_config_editor set -G vm1 -S /tmp/mysql.sock -u root -p Enter password [输入root的密码] shell> mysql_config_editor print --all [vm1] user=root password=***** socket=/tmp/mysql.sock #login shell> mysql --login-path=vm1 # 这样登录就不需要密码,且文件二进制存储 ,位置是 ~/.mylogin.cnf |
- 本文固定链接: https://www.yoyoask.com/?p=139
- 转载请注明: shooter 于 SHOOTER 发表