ansible-tower安装

这篇具有很好参考价值的文章主要介绍了ansible-tower安装。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

特别注意:不需要提前安装ansible,因为ansible tower中的setup.sh脚本会下载对应的ansible版本
ansible tower不支持Ubuntu系统,对cenos系统版本也有一定的限制,建议使用centos7.9。
准备一台全新的机器安装,因为ansible tower需要装许多其他的东西,如nginx、rabbitmq、supervisor等,容易发生冲突
安装过程

setenforce 0
systemctl stop firewalld
wget https://releases.ansible.com/ansible-tower/setup-bundle/ansible-tower-setup-bundle-3.6.2-1.el7.tar.gz
tar -xvf ansible-tower-setup-bundle-3.6.2-1.el7.tar.gz
mkdir /var/log/tower
yum install rsync -y
cd  ansible-tower-setup-bundle-3.6.2-1/
cat inventory
[tower]
localhost ansible_connection=local

[database]

[all:vars]
admin_password='123456'

pg_host=''
pg_port=''

pg_database='awx'
pg_username='awx'
pg_password='123456'
pg_sslmode='prefer'  # set to 'verify-full' for client-side enforced SSL

rabbitmq_username=tower
rabbitmq_password='123456'
rabbitmq_cookie=cookiemonster

./setup.sh  #开始安装

接下来的操作:不需要停止ansible-tower

[root@rabbitredis-2 ansible-tower-setup-bundle-3.6.2-1]# cd /var/lib/awx/venv/awx/lib/python3.6/site-packages/tower_license
[root@rabbitredis-2 tower_license]# ls
__init__.pyc  __pycache__
[root@rabbitredis-2 tower_license]# ll
总用量 8
-rw-r--r--. 1 root root 7764 1214 2019 __init__.pyc
drwxr-xr-x. 2 root root   37 41 16:55 __pycache__

[root@rabbitredis-2 tower_license]# wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
--2024-04-01 17:38:11--  https://bootstrap.pypa.io/pip/2.7/get-pip.py
正在解析主机 bootstrap.pypa.io (bootstrap.pypa.io)... 151.101.88.175, 2a04:4e42:15::175
正在连接 bootstrap.pypa.io (bootstrap.pypa.io)|151.101.88.175|:443... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:1908226 (1.8M) [text/x-python]
正在保存至: “get-pip.py.2”

100%[=============================================================================================================================================================================>] 1,908,226   2.08MB/s 用时 0.9s   

2024-04-01 17:38:15 (2.08 MB/s) - 已保存 “get-pip.py.2” [1908226/1908226])


[root@rabbitredis-2 tower_license]# ls
get-pip.py  __init__.pyc  __pycache__
[root@rabbitredis-2 tower_license]# python get-pip.py 
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Collecting pip<21.0
  Downloading pip-20.3.4-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 703 kB/s 
Collecting wheel
  Downloading wheel-0.37.1-py2.py3-none-any.whl (35 kB)
Installing collected packages: pip, wheel
Successfully installed pip-20.3.4 wheel-0.37.1


[root@rabbitredis-2 tower_license]# pip -V
pip 20.3.4 from /usr/lib/python2.7/site-packages/pip (python 2.7)

[root@rabbitredis-2 tower_license]# pip install uncompyle6
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Collecting uncompyle6
  Downloading uncompyle6-3.9.1-py2-none-any.whl (363 kB)
     |████████████████████████████████| 363 kB 844 kB/s 
Collecting xdis<6.2.0,>=6.0.8
  Downloading xdis-6.1.0-py2-none-any.whl (182 kB)
     |████████████████████████████████| 182 kB 12.1 MB/s 
Collecting spark-parser<1.9.0,>=1.8.9
  Downloading spark_parser-1.8.9-py2-none-any.whl (17 kB)
Collecting click
  Downloading click-7.1.2-py2.py3-none-any.whl (82 kB)
     |████████████████████████████████| 82 kB 1.3 MB/s 
Installing collected packages: xdis, click, spark-parser, uncompyle6
Successfully installed click-7.1.2 spark-parser-1.8.9 uncompyle6-3.9.1 xdis-6.1.0
[root@rabbitredis-2 tower_license]# uncompyle6 __init__.pyc >__init__.py
[root@rabbitredis-2 tower_license]# ls
get-pip.py  __init__.py  __init__.pyc  __pycache__
[root@rabbitredis-2 tower_license]# vim __init__.py

# 修改部分
#修改__init__.py文件
    def _check_cloudforms_subscription(self):
        return True    #添加这一行
        if os.path.exists('/var/lib/awx/i18n.db'):
            return True
        else:
            if os.path.isdir('/opt/rh/cfme-appliance'):
                if os.path.isdir('/opt/rh/cfme-gemset'):
                    pass
            try:
                has_rpms = subprocess.call(['rpm', '--quiet', '-q', 'cfme', 'cfme-appliance', 'cfme-gemset'])
                if has_rpms == 0:
                    return True
            except OSError:
                pass
 
            return False
....
 
#修改"license_date=253370764800L" 为 "license_date=253370764800"
    def _generate_cloudforms_subscription(self):
        self._attrs.update(dict(company_name='Red Hat CloudForms License', instance_count=MAX_INSTANCES,
          license_date=253370764800,  #修改
          license_key='xxxx',
          license_type='enterprise',
          subscription_name='Red Hat CloudForms License'))




[root@rabbitredis-2 tower_license]# python -m py_compile __init__.py
[root@rabbitredis-2 tower_license]# python -O -m py_compile __init__.py
[root@rabbitredis-2 tower_license]# ansible-tower-service restart
Restarting Tower
Redirecting to /bin/systemctl stop rh-postgresql10-postgresql.service
Redirecting to /bin/systemctl stop rabbitmq-server.service
Redirecting to /bin/systemctl stop nginx.service
Redirecting to /bin/systemctl stop supervisord.service
Redirecting to /bin/systemctl start rh-postgresql10-postgresql.service
Redirecting to /bin/systemctl start rabbitmq-server.service
Redirecting to /bin/systemctl start nginx.service
Redirecting to /bin/systemctl start supervisord.service
[root@rabbitredis-2 tower_license]# 

ansible tower安装,ansible

相当不错的参考文章:
https://www.cnblogs.com/joshua317/p/6899057.html
https://zhuanlan.zhihu.com/p/669971119文章来源地址https://www.toymoban.com/news/detail-852913.html

到了这里,关于ansible-tower安装的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Anisble-tower搭建(亲测成功)

    作者:zl 准备 本篇内容由我呕心沥血,排错排到人都麻了,才写出来的 希望能帮助的各位 公司中实现运维自动化的架构中主要用到ansible,ansible脚本在部署服务器指令行中显得不太直观。 Ansible-Tower(之前叫做awx)是将ansible的指令界面化,简明直观,简单易用。 Ansibke-towe

    2024年01月24日
    浏览(23)
  • Ansible安装部署与应用

    Ansible是一个基于Python开发的配置管理和应用部署工具,现在也在自动化管理领域大放异彩。它融合了众多老牌运维工具的优点,Pubbet和Saltstack能实现的功能,Ansible基本上都可以实现。 Ansible能批量配置、部署、管理上千台主机。比如以前需要切换到每个主机上执行的一或多个

    2024年02月14日
    浏览(31)
  • Ansible的安装和部署

    目录 1.Ansible的安装 2.构建Ansible清单  直接书写受管主机名或ip 设定受管主机的组[组名称] 主机规格的范围化操作 指定其他清单文件 ansible命令指定清单的正则表达式 3.Ansible配置文件参数详解 配置文件的分类与优先级 常用配置参数 4.构建用户级Ansible操作环境 环境配置 主控

    2024年02月08日
    浏览(35)
  • Ansible的安装和配置

    安装和配置 Ansible 安装所需的软件包 创建名为 /home/greg/ansible/inventory 的静态清单文件,以满足以下要求: 172.25.250.9 是 dev 主机组的成员 172.25.250.10 是 test 主机组的成员 172.25.250.11 和 172.25.250.12 是 prod 主机组的成员 172.25.250.13 是 balancers 主机组的成员 prod 组是 webservers 主机组的

    2024年02月13日
    浏览(36)
  • 三、05-ansible安装

    anseble 是用python 开发的 集合了多种运维自动化工具(pupet、cfengine、chef、func、fabric) 实现了批量系统配置、批量程序部署、批量运行命令等功能 无客户端 playbook 剧本文件 主要是 是yaml 的语言 (意思是 我不仅仅是一个标记语言) 1、部署简单,只需要在主控端部署Ansible环境

    2024年01月23日
    浏览(66)
  • 安装和配置 Ansible

        按照下方所述,在控制节点 control.area12.example.com 上安装和配置 Ansible:         安装所需的软件包         创建名为 /home/curtis/ansible/inventory 的静态清单文件,以满足以下要求:             node1 是 dev 主机组的成员             node2 是 test 主机组的成员            

    2024年02月12日
    浏览(29)
  • ansible - 安装 -【kodcloud教程】

    目录 目录结构、主机清单 【1】安装基础环境 【2】webserver - 安装nginx 【3】安装php环境 【4】lb-server 【5】redis安装 【6】 kodcloud 【7】wordpress-proxy    ansible 10.0.0.10 lb-server 10.0.0.11 web01 10.0.0.15 web02 10.0.0.16 redis 10.0.0.20 目录结构、主机清单 【1】安装基础环境

    2024年02月11日
    浏览(34)
  • Ansible离线安装

    Ansible rpm离线安装 离线安装包下载

    2024年04月22日
    浏览(74)
  • ubuntu ansible 安装使用

    /etc/ansible/hosts 是主机清单配置文件,由 ansible.cfg文件中的 inventory 变量配置,默认值为/etc/ansible/hosts 在使用ansible命令前,需要对hosts文件进行相关主机清单配置 1.可以不对主机进行分组,如果不指定分组,需要配置在所有的分组前 2.可以对主机进行分组,中括号里包含的名字

    2024年02月13日
    浏览(25)
  • 01_什么是ansible、基本架构、ansible工作机制、Ansible安装、配置主机清单、设置SSH无密码登录等

    1.什么是ansible 1.1.基本介绍 1.2.基本架构 1.3.基本特征 1.4.优点 1.5.ansible工作机制 2.Ansible安装 2.1.机器准备 2.2.安装ansible 2.2.1.安装epel源 2.2.2.安装ansible 2.2.3.查看ansible版本 2.2.4.树状结构展示文件夹 2.2.4.1.其中ansible.cfg的内容如下 2.2.4.2.host的默认内容是 2.3.配置主机清单 2.4.设置

    2024年02月14日
    浏览(42)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包