Linux离线安装Awx

Posted beyond阿亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux离线安装Awx相关的知识,希望对你有一定的参考价值。

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

以上是关于Linux离线安装Awx的主要内容,如果未能解决你的问题,请参考以下文章

Ansible Tower(AWX)容器化部署

Ansible之AWX安装部署

ansible-awx

ansible-awx

使用docker方式安装ansible-awx

Ansible自动化运维实战在docker环境部署ansible管理平台awx