ansible之service和server模块

service模块介绍
例:启动指定节点上的httpd 服务,并让其开机自启动

[root@master tmp]# ansible client02 -m service -a 'name=httpd state=restarted enabled=yes'
client02 | SUCCESS => {
    "changed": true, 
    "enabled": true, 
    "name": "httpd", 
    "state": "started"
}
[root@client01 tmp]# ps -ef|grep httpd|wc -l                                
1

[root@client02 tmp]# ps -ef|grep httpd|wc -l
9
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.

server模块介绍

可以提供的status:running,started,stopped,restarted,reloaded

[root@master tmp]# cat /etc/ansible/hosts
[localhost]
master.test.com
[slave]
client02
client01


此处参数  -s 意思是
run operations with sudo (nopasswd) (deprecated, use
                        become)
结尾参数-k 意思是要让输入ssh 密码

例:检查某节点的httpd 服务
[root@master ~]# ansible slave -m service -a "name=httpd state=running" –s

[root@master tmp]# ansible client02 -m service -a "name=httpd state=running" -s
client02 | SUCCESS => {
    "changed": false, 
    "name": "httpd", 
    "state": "started"
}

[root@master tmp]# ansible slave -m service -a "name=httpd state=stopped" -k
SSH password: 111111
client01 | SUCCESS => {
    "changed": false, 
    "name": "httpd", 
    "state": "stopped"
}
client02 | SUCCESS => {
    "changed": false, 
    "name": "httpd", 
    "state": "stopped"
}


[root@master tmp]# ansible client02 -m service -a "name=httpd state=status" -s
client02 | FAILED! => {
    "changed": false, 
    "failed": true, 
    "msg": "value of state must be one of: running,started,stopped,restarted,reloaded, got: status"
}

[root@master tmp]# ansible client02 -m service -a "name=httpd state=stopped" -s
client02 | SUCCESS => {
    "changed": true, 
    "name": "httpd", 
    "state": "stopped"
}

[root@master tmp]# ansible client01 -m service -a "name=httpd state=running" -s

paramiko: The authenticity of host 'client01' can't be established.
The ssh-rsa key fingerprint is 3d906ef1d450e4cc7031aef5e8c296f6.
Are you sure you want to continue connecting (yes/no)?
yes
client01 | SUCCESS => {
    "changed": true, 
    "name": "httpd", 
    "state": "started"
}

[root@master tmp]# ansible slave -m service -a "name=httpd state=started" -s

client02 | SUCCESS => {
    "changed": true, 
    "name": "httpd", 
    "state": "started"
}
client01 | SUCCESS => {
    "changed": true, 
    "name": "httpd", 
    "state": "started"
}
[root@client01 tmp]# ps -ef|grep httpd|wc -l
10
[root@client02 tmp]# ps -ef|grep httpd|wc -l
10

[root@master tmp]# ansible slave -m service -a "name=httpd state=stopped" -s
client02 | SUCCESS => {
    "changed": true, 
    "name": "httpd", 
    "state": "stopped"
}
client01 | SUCCESS => {
    "changed": true, 
    "name": "httpd", 
    "state": "stopped"
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.

[root@client01 tmp]# ps -ef|grep httpd|wc -l
1
[root@client02 tmp]# ps -ef|grep httpd|wc -l
1

posted @   勤奋的蓝猫  阅读(4)  评论(0编辑  收藏  举报  
相关博文:
阅读排行:
· DeepSeek “源神”启动!「GitHub 热点速览」
· 微软正式发布.NET 10 Preview 1:开启下一代开发框架新篇章
· 我与微信审核的“相爱相杀”看个人小程序副业
· C# 集成 DeepSeek 模型实现 AI 私有化(本地部署与 API 调用教程)
· DeepSeek R1 简明指南:架构、训练、本地部署及硬件要求
点击右上角即可分享
微信分享提示