ansible-mysql

Posted 魅力男神

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible-mysql相关的知识,希望对你有一定的参考价值。

ansible mysql -m command -a "yum -y install https://www.percona.com/downloads/percona-monitoring-plugins/percona-monitoring-plugins-1.1.7/binary/redhat/7/x86_64/percona-zabbix-templates-1.1.7-2.noarch.rpm"     #安装mysql第三方插件

 

ansible mysql -m lineinfile -a "dest=/etc/zabbix/chk_mysql.sh regexp=‘MYSQL_PWD=123456‘ state=absent"                                 #删除MYSQL_PWD=123456的一行

 

ansible mysql -m lineinfile -a "dest=/etc/zabbix/chk_mysql.sh regexp=‘MYSQL_PWD=zabbix‘ line=‘MYSQL_PWD=‘123456‘‘"         #更改MYSQL_PWD=zabbix成MYSQL_PWD=‘123456‘

 

ansible mysql -m command -a "cp /var/lib/zabbix/percona/templates/userparameter_percona_mysql.conf /etc/zabbix/zabbix_agentd.d/"         #拷贝监控模板

 

以上是关于ansible-mysql的主要内容,如果未能解决你的问题,请参考以下文章