ansible-service模块使用方法
Posted wanwz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible-service模块使用方法相关的知识,希望对你有一定的参考价值。
应用
管理远程主机上的服务
参数
- name:指定操作服务的名称
- state=started|stopped|restarted|reloaded:指定服务的状态
- enabled=yes|no:指定服务是否为开机启动项
示例
- 启动nginx服务
]# ansible all -m service -a ‘name=nginx state=started‘
- 停止nginx服务
]# ansible all -m service -a ‘name=nginx state=stopped‘
- 将nginx服务设置为开机启动项
]# ansible all -m service -a ‘name=nginx enabled=yes‘
以上是关于ansible-service模块使用方法的主要内容,如果未能解决你的问题,请参考以下文章
CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段