关于ansible:Linux离线安装Awx

49次阅读

共计 2018 个字符,预计需要花费 6 分钟才能阅读完成。

Linux 离线装置 Awx

可自行去下载相干包, 也能够给我评论留言, 我发给大家

wget https://github.com/ansible/awx/archive/1.0.7.tar.gz 失败

https://github.com/ansible/awx/archive/11.0.0.tar.gz 在虚拟机上胜利启动

wget https://github.com/ansible/awx/archive/13.0.0.tar.gz 须要 python3

tar -zxvf 11.0.0.tar.gz  
cd awx-11.0.0/installer/ 
ansible-playbook -i inventory install.yml

留神: 有可能端口占用了
docker stop awx_task awx_web awx_postgres awx_redis awx_memcached 
docker stop memcached rabbitmq postgres

docker rm awx_task awx_web awx_postgres awx_redis awx_memcached 
docker rm memcached rabbitmq postgres

离线装置
下载
pip download docker -d /data/docker
装置
pip install --ignore-installed requests --no-index --find-links=file:/data/docker docker

pip download docker-compose -d /data/docker_compose 
pip install --no-index --find-links=file:/data/docker_compose docker_compose

在线装置
pip install docker
pip install docker-compose
pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com docker-compose==1.16.0


pip3 install requests
pip3 install docker
pip3 install docker-compose

docker exec -it awx_task /bin/bash
cd /var/lib/awx/projects/ansible-for-devops/
cat main.yml 
---
- name: test date cmd
  hosts: all
  connection: local
  tasks:
  - name: Check the ping on the server.
    command: date



cat uploadfile.yml
- name: file upload
  hosts: all
  connection: paramiko
  tasks:
   - name: 创立目录
     shell: mkdir -p /data/iot
   - name: upload file.
     copy: src={{path}} dest=/data/iot
    
导入清单
docker exec -it awx_task /bin/bash
awx-manage inventory_import --source=/etc/ansible/hosts --group-filter=iot-test --inventory-name=iot --keep-vars

--source            指定 inventory 文件
--group-filter      从文件中通过组名过滤
--host-filter       通过 host name 过滤
--inventory-name    导入到指定名称资产清单
--inventory-id      导入到指定 ID 的资产清单
# name 和 id 选一个
--overwrite         笼罩主机和组,默认不笼罩
--overwrite-vars    笼罩主机变量
--keep-vars         放弃主机变量
--enabled-value     导入的主机状态是否激活默认激活

cat hosts 
[iotdb-host]
# 在 [] 中的,为一组,iot-test 为组名,前面会用到
#139.9.130.81 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass=abcd_2020
114.116.194.17 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass=abcd_2019
192.168.140.102 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass=abcd123

tower-manage inventory_import --source=/data/hosts --group-filter=iotdb-host --inventory-name=iotdb --keep-vars

正文完
 0