ansible怎么远程执行windows上的.exe程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible怎么远程执行windows上的.exe程序相关的知识,希望对你有一定的参考价值。

ansible执行了远程的.exe程序,但是没有弹出程序的界面,只有在进程里面是存在的,用了psexec也不行,有大神知道怎么处理吗?

返回OK=3,failed=0,那里有错,我眼瞎看不到。 参考技术A 我也遇到了,解决了吗朋友

Ansible 远程执行脚本

1. 先在服务端创建一个 shell 脚本

[[email protected] ~]$ cat /tmp/test.sh 
#!/bin/bash
echo "hello world"

2. 把脚本分发到客户端

[[email protected] ~]$ ansible 192.168.119.134 -m copy -a "src=/tmp/test.sh dest=/tmp/test.sh mode=0755"

3. 远程执行脚本,使用 shell 模块

[[email protected] ~]$ ansible 192.168.119.134 -m shell -a "/tmp/test.sh"
192.168.119.134 | CHANGED | rc=0 >>
hello world

 

 

 

 

 

    

以上是关于ansible怎么远程执行windows上的.exe程序的主要内容,如果未能解决你的问题,请参考以下文章

ansible-script模块使用方法

ansible工具如果通过堡垒机或者跳板机管理远程服务器

ansible管理windows server怎么部署

ansible playbook在服务器怎么执行

ansible管理window

windows server使用ansible管理