1. 程式人生 > >Linux - ansible 安裝

Linux - ansible 安裝

sts one 解決方法 現象 sta not git clone etc uil

# 安裝依賴

yum install rpm-build python2-devel sshpass PyYAML python-jinja2 python-paramiko python-six python2-cryptography

git clone git://github.com/ansible/ansible.git
cd ansible/
make rpm
cd rpm-build/
sudo rpm -Uvh ansible-*.noarch.rpm

# 添加host
vi /etc/ansible/hosts


# 查看服務器是否連通
ansible all -m ping

技術分享

# 遠程執行本地腳本
$ ansible 172.16.10.15 -m script -a ‘~/shell/getSysInfo‘ -u huateng

技術分享

問題匯總:

1、遠程服務器執行本地腳本時提示:command not found

具體現象如下

技術分享

解決方法:

在執行腳本的時候,加載當前的環境變量即可。

Linux - ansible 安裝