【Linux离线安装Awx】不飞则已,一飞冲天;不鸣则已,一鸣惊人。这篇文章主要讲述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 需要python3tar -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 postgresdocker 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 dockerpip 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.0pip3 install requests
pip3 install docker
pip3 install docker-composedocker 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: datecat uploadfile.yml
- name: file upload
hosts: all
connection: paramiko
tasks:
- name: 创建目录
shell: mkdir -p /data/iot
- name: upload file.
copy: src=https://www.songbingjia.com/android/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=abcd123tower-manage inventory_import --source=/data/hosts --group-filter=iotdb-host --inventory-name=iotdb --keep-vars
推荐阅读
- 利用Flow每天获取Flow的状态及运行记录
- MySQL高级(进阶) SQL 语句一
- AD活动目录FSMO五大角色
- Docker学习笔记01
- 企业微信报警提示, /usr/bin/python: bad interpreter: No such file or directory
- MySQL高级(进阶) SQL 语句二
- Docker 数据管理(数据卷容器/镜像创建)
- Docker 搭建本地私有仓库
- docker——docker数据管理