在Ansible播放器中,运行启动服务模块时出现错误,因为我想在远程主机上启动数据库。我是Ansible的新手。
我想到了这个
finally
我收到此错误:
致命:[10.138.12.67]:失败! => {“更改”:false,“ msg”:“找不到所请求的服务mysql:主机”}
答案 0 :(得分:0)
@Zeitounator是正确的,只是添加了可以使用的正确剧本:
- name: This starts the MySQL Database in the host
hosts: dbserver
become: yes
become_user: root
tasks:
- name: Start the DB in host
service:
name: mysqld
state: started
enable: yes
这里是您可以检查语法的链接:https://docs.ansible.com/ansible/latest/modules/service_module.html