我是靠谱客的博主 舒适蜻蜓,最近开发中收集的这篇文章主要介绍批量重启linux服务器,ansible 批量重启服务,ansible批量重启,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ansible 批量重启服务,ansible批量重启

ansible 10.1.1.113 -m service -a 'name=puppet state=restarted enabled=yes'

- name: Start MySQL

service: name=mysqld state=started enabled=yes

handlers:

- name: restart mysql

service: name=mysqld state=restarted

开启ftp

[root@node01 ansible]# ansible 192.168.137.3 -m service -a'name=vsftpd state=started enabled=yes'

[DEPRECATION WARNING]: DEFAULT_SUDO_USER option, In favor of become which is a generic framework . This feature will be

removed in version 2.8. Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg.

192.168.137.3 | SUCCESS => {

"changed": true,

"enabled": true,

"failed": false,

"name": "vsftpd",

"state": "started"

}

关闭ftp:

[root@node01 ansible]# ansible 192.168.137.3 -m service -a'name=vsftpd state=stopped enabled=yes'

[DEPRECATION WARNING]: DEFAULT_SUDO_USER option, In favor of become which is a generic framework . This feature will be removed in version 2.8. Deprecation warnings can be disabled by

setting deprecation_warnings=False in ansible.cfg.

192.168.137.3 | SUCCESS => {

"changed": true,

"enabled": true,

"failed": false,

"name": "vsftpd",

"state": "stopped"

}

重启服务:

[root@node01 ansible]# ansible 192.168.137.3 -m service -a'name=vsftpd state=restarted enabled=yes'

[DEPRECATION WARNING]: DEFAULT_SUDO_USER option, In favor of become which is a generic framework . This feature will be removed in version 2.8. Deprecation warnings can be disabled by

setting deprecation_warnings=False in ansible.cfg.

192.168.137.3 | SUCCESS => {

"changed": true,

"enabled": true,

"failed": false,

"name": "vsftpd",

"state": "started"

}

最后

以上就是舒适蜻蜓为你收集整理的批量重启linux服务器,ansible 批量重启服务,ansible批量重启的全部内容,希望文章能够帮你解决批量重启linux服务器,ansible 批量重启服务,ansible批量重启所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部