有没有办法,如何为mysql / mariadb客户端打印默认配置变量或配置部分?
我有一个配置文件,例如:
[client] user = abc passw = bcd !include /another/my.cnf !includedir /another/configurations/
在/another/my.cnf我有
[clientA] user = abc passw = bcd host = example.com
我想知道配置部分[clientA]是否存在。
现在,当我连接到mysql --defaults-group-suffix=B
时,它仍然根据[client]部分连接我而没有任何警告,后缀B不存在。
是否有任何命令可以将组合的my.cnf文件打印到其中?