我是靠谱客的博主 舒适蜻蜓,这篇文章主要介绍批量重启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内容请搜索靠谱客的其他文章。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部