zoukankan      html  css  js  c++  java
  • 安装AWX

    1.安装最新版python

    2.安装最新版docker

       设置国内docker镜像源

       curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361db2.m.daocloud.io

       重启docker (ubuntu)

       sudo systemctl restart docker.service

    3.git clone https://github.com/ansible/awx.git

    4.进入到项目目录,创建虚拟环境

    5.pip install docker 

    6.pip install docker-compose

    7.安装node  npm

    8.进入到项目目录,执行安装程序

    cd installer

    ansible-playbook -i inventory install.yml
    # Tail the the awx_task log
    $ docker logs -f awx_task
    当看到以下类似内容后,部署完成
    Using /etc/ansible/ansible.cfg as config file
    127.0.0.1 | SUCCESS => {
        "changed": false,
        "db": "awx"
    }
    Operations to perform:
      Synchronize unmigrated apps: solo, api, staticfiles, messages, channels, django_extensions, ui, rest_framework, polymorphic
      Apply all migrations: sso, taggit, sessions, sites, kombu_transport_django, social_auth, contenttypes, auth, conf, main
    Synchronizing apps without migrations:
      Creating tables...
        Running deferred SQL...
      Installing custom SQL...
    Running migrations:
      Rendering model states... DONE
      Applying contenttypes.0001_initial... OK
      Applying contenttypes.0002_remove_content_type_name... OK
      Applying auth.0001_initial... OK
      Applying auth.0002_alter_permission_name_max_length... OK
      Applying auth.0003_alter_user_email_max_length... OK
      Applying auth.0004_alter_user_username_opts... OK
      Applying auth.0005_alter_user_last_login_null... OK
      Applying auth.0006_require_contenttypes_0002... OK
      Applying taggit.0001_initial... OK
      Applying taggit.0002_auto_20150616_2121... OK
      Applying main.0001_initial... OK

    9.访问127.0.0.1
    10.通过docker-compose管理
    进入到~/.awx/awxcompose
    docker-compose stop 关闭
    docker-compose start 启动
  • 相关阅读:
    如何描述一个前端开发程序员
    解决电脑性能一般,打开webstorm后,电脑比较卡的问题
    HTML5的5个的新特性
    js 数组的拼接
    移动端性能
    如何学习前端
    实战:上亿数据如何秒查
    读懂Java中的Socket编程
    远程管理软件
    dedecms 安装后 管理后台ie假死 无响应的解决方法
  • 原文地址:https://www.cnblogs.com/wt11/p/11662899.html
Copyright © 2011-2022 走看看