ansible启动jar包

本文介绍了如何在CentOS7上通过清华或阿里云yum源安装Ansible,并演示了如何配置hosts、进行ssh免密及启动jar包。此外,还展示了使用Ansible进行ping测试和scp文件传输的操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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"

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值