mysql config editor_mysql_config_editor

mysql_config_editor是MySQL5.6.6中引入的,在5.6.10中正式GA。

借助mysql_config_editor工具将登陆MySQL服务的认证信息加密保存在.mylogin.cnf文件(默认位于用户主目录) 。之后,MySQL客户端工具可通过读取该加密文件连接MySQL,避免重复输入登录信息,避免敏感信息暴露。

.mylogin.cnf和默认的my.cnf文件不同,是不能像my.cnf直接查看其中的加密内容的。

1.mysql_config_editor的语法

mysql_config_editor [program_options] command [command_options]

2.查看帮助

# ./mysql_config_editor --help

./mysql_config_editor Ver 1.0 Distrib 5.6.37, for linux-glibc2.12 on x86_64

Copyright (c) 2012, 2017, 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.

MySQL Configuration Utility.

Usage: ./mysql_config_editor [program options] [command [command options]]

-?, --help Display this help and exit.

-v, --verbose Write more information.

-V, --version Output version information and exit.

Variables (--variable-name=value)

and boolean options {FALSE|TRUE} Value (after reading options)

--------------------------------- ----------------------------------------

verbose FALSE

Where command can be any one of the following :

set [command options] Sets user name/password/host name/socket/port

for a given login path (section).

remove [command options] Remove a login path from the login file.

print [command options] Print all the options for a specified

login path.

reset [command options] Deletes the contents of the login file.

help Display this usage/help information.

3.创建一个login-path/profile

# mysql_config_editor set --login-path=abce --user=root -p

其中--login-path表示指定通过mysql客户端登录时的标识

创建结束就可以在用户主目录下看到该profile文件了:

# ls -a ~ |grep cnf

.mylogin.cnf

可以根据需要创建多个登陆profile

# mysql_config_editor set --login-path=abce1 --user=root -p

# mysql_config_editor set --login-path=abce2 --user=root -p

4.使用profile登陆

# mysql --login-path=abce

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 14

Server version: 5.6.37 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, 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>

5.查看所有的login-path/profiles

# mysql_config_editor print --all

[abce]

user = root

password = *****

[abce1]

user = root

password = *****

[abce2]

user = root

password = *****

6.移除一个login-path/profile

# mysql_config_editor remove --login-path=abce2

# mysql_config_editor print --all

[abce]

user = root

password = *****

[abce1]

user = root

password = *****

也可以某个login-path中的部分信息,比如:

# mysql_config_editor set --login-path=abce3 --host=localhost

# mysql_config_editor print --all

[abce]

user = root

password = *****

[abce1]

user = root

password = *****

[abce3]

host = localhost

# mysql_config_editor remove --login-path=abce3 --host

# mysql_config_editor print --all

[abce]

user = root

password = *****

[abce1]

user = root

password = *****

[abce3]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值