ansible-service模块使用方法

Posted wanwz

tags:

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

应用

管理远程主机上的服务

参数

  • name:指定操作服务的名称
  • state=started|stopped|restarted|reloaded:指定服务的状态
  • enabled=yes|no:指定服务是否为开机启动项

示例

  1. 启动nginx服务
]# ansible all -m service -a ‘name=nginx state=started‘
  1. 停止nginx服务
]# ansible all -m service -a ‘name=nginx state=stopped‘
  1. 将nginx服务设置为开机启动项
]# ansible all -m service -a ‘name=nginx enabled=yes‘

以上是关于ansible-service模块使用方法的主要内容,如果未能解决你的问题,请参考以下文章

CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段

如何有条件地将 C 代码片段编译到我的 Perl 模块?

如何将字符串数据从活动发送到片段?

nodejs常用代码片段

常用python日期日志获取内容循环的代码片段

Yarn: 一个新的JavaScript模块管理器