1.安装ansible
首先 准备一个ansible工具,这里以centos7为例
登陆清华yum源下载一个对应版本的ansible rpm包即可
a:直接下拉rpm
wget https://mirrors.tuna.tsinghua.edu.cn/epel/7/x86_64/Packages/a/ansible-2.9.18-1.el7.noarch.rpm
安装
rpm -ivh --force --nodeps ansible-2.9.18-1.el7.noarch.rpm
即可使用
b:使用阿里云yum源安装
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum list |grep ansible
yum install -y centos-release-ansible-29.noarch
yum install -y ansible
还可以下载离线rpm包哟
yumdownloader --downloadonly --resolve ansible
ansible-2.9.18-1.el7.noarch.rpm
2. 启动jar包
配置hosts
cat /etc/ansible/hosts
[pengge]
127.0.0.1
简单测试做一下本机免密
ssh-copy-id -i /root/.ssh/id_rsa.pub 127.0.0.1
主要记录一下启动jar包的一个调皮的小细节
Ansible 远程调用启动jar 需要在ansible命令行窗口添加 source nohup &才可以哦
ansible pengge -m shell -a "source /etc/profile;nohup sh /data/ansible/pg.sh gateway 1.0.0 &"
或者在sh脚本内添加一个睡眠 sleep 10 也可以不添加 nohup哦
ansible pengge -m shell -a "source /etc/profile;sh /data/ansible/pg.sh gateway 1.0.0"
ping服务器测试
[root@zabbix ~]# ansible 'pengge' -m ping
[WARNING]: sftp transfer mechanism failed on [192.168.108.143]. Use ANSIBLE_DEBUG=1 to see detailed information
192.168.108.143 | SUCCESS => {
"ansible_facts": {
"discovered_interpreter_python": "/usr/bin/python"
},
"changed": false,
"ping": "pong"
}
scp传输文件
ansible pengge -u root -b -m copy -a "src=pengge.sh dest=/root"