mysql_config_editor

加入账号:

[[email protected] bin]# ./mysql_config_editor set  --login-path=client --user=root --password --socket=/tmp/mysql.sock5
Enter password:
[[email protected] bin]# ./mysql_config_editor set  --login-path=client1 --user=root --host=127.0.0.1 --password --port=3310
Enter password: 

打印所有已经写入的账号

[[email protected] bin]# ./mysql_config_editor print --all
[client]
user = root
password = *****
socket = /tmp/mysql.sock5
[client1]
user = root
password = *****
host = 127.0.0.1
port = 3310

登陆:

[[email protected] bin]# ./mysql --login-path=client

账号写入位置:该文件已经加密, 不能被偷看

[[email protected] ~]# find / |grep  .mylogin.cnf
/root/.mylogin.cnf
时间: 2024-10-14 01:23:48

mysql_config_editor的相关文章

登陆MySQL 5.6.32,不用每次输入密码 mysql_config_editor

1.使用mysql_config_editor工具创建.mylogin.cnf # mysql_config_editor set --login-path=client --host=localhost --user=www --password 回车后输入密码 2.此时在/root/目录下生成一个隐藏文件,查看是乱码 3.然后就可以使用 mysql --login-path=client 登陆了 # mysql --login-path=client 4.加入系统别名里面 # vim /ro

MySQL 通过mysql_config_editor更安全的登录数据库

在5.6版本中,MySQL可以通过mysql_config_editor登录数据库,变得更加安全. [[email protected] ~]# mysql_config_editor set --login-path=yoon --user=root --password 登录数据库:[[email protected] ~]# mysql --login-path=yoonWelcome to the MySQL monitor.  Commands end with ; or \g.You

mysql_config_editor程序的用法

1.mysql_config_editor程序的作用: 它只是用来在用户的家目录下生成一个.mylogin.cnf 里面保存有用于登录mysql-server端的password,host,user信息,由于mysql这个程序每次启动时 都会自己去读取这个文件,所以在我们登录时就可以不用自己手工的指定user,password,host这些东西了.好处是方便,不好的地方在于它不安全,因为 这个文件是可以被解密的,这样就可能我们的密码会被别人破解. 2.mysql_config_editor程序的

mysql之mysql_config_editor

本文来自我的github pages博客http://galengao.github.io/ 即www.gaohuirong.cn mysql_config_editor允许你把登录的身份验证信息存储在一个名为.mylogin.cnf的文件里,该文件的位置在windows下是在%APPDATA%\MySQL目录下,linux下是在用户的家目录下.该文件可在以后通过MySQL客户端程序可以读取,以获得身份验证凭据用于连接到MySQL服务器.mysql_config_editor允许你把登录的身份验

mysql_config_editor usage

# mysql_config_eidtor is a tool to create a profile file $HOME/.mylogin.cnf, in which you can store login information (username, password, machine), so that you don't need to type password # everytime you login mysql through command line /usr/local/m

mysql_config_editor设置

[[email protected] etc]# mysql_config_editor set -G mysql3307 -S /tmp/mysql3307.sock -uroot -pEnter password: [[email protected] etc]# mysqlmysql mysqld_multi mysql_secure_installationmysqladmin mysqld_safe mysqlshowmysqlbinlog mysqldump mysqlslapmys

mysql_config_editor 安全登录方式

mysql_config_editor 安全登录方式 # 管理员用户 [[email protected] bak]# /usr/local/mysql/bin/mysql_config_editor set --login-path=instance_3306_root --host=localhost --user=root --port=3306 --password --socket='/data/mysql/mysql_3306/tmp/mysql_3306.sock' Enter p

Warning: Using a password on the command line interface can be insecure.解决办法

转自 http://www.cnblogs.com/sunss/p/6256706.html 被一个小朋友问到,直接公布答案: If your MySQL client/server version is a 5.6.x a way to avoid the WARNING message are using the mysql_config_editor tools: mysql_config_editor set --login-path=local --host=localhost --u

CentOS下zabbix监控mysql5.6版本主从

上次Zabbix添加了监控MySQL性能,因此此次在其基础上添加主从监控.文章过程中不在介绍MySQL5.6版本相关细节处理,具体可以参考上次文章: http://blog.csdn.net/ygqygq2/article/details/53264955 1. Zabbix添加自定义监控流程 Zabbix agentd添加自定义key: 自定义key调用的是获取监控数据源脚本等: 添加Zabbix主机数据源模板,主机链接模板; 2. 具体步骤 1. 编写监控mysql主从脚本 vim /usr