centos6 安裝 ansible_ui

安裝過程其實並不複雜,只不過出現的問題,遇到的問題比較多,也主要參考網上https://github.com/alaxli/ansible_ui/issues/15 中提到的方法,只不過我遇到本身的問題,此處記錄一下

一  首先環境是centos6.9 minalpython

二  配置epel ,編輯文件 /etc/yum.repos.d/epel.repo ,內容爲mysql

[epel]
name=epel
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-$releasever&arch=$basearch
enabled=1
gpgcheck=0

三 準備CentOS環境c++

yum update && yum upgrade

四 控制服務器與被管理服務器要求git

Master:Python 2.6+
Slave:Python 2.4+,最好也是2.6+(CentOS 6.9自帶)

五 安裝ansible :github

  yum install ansible (若是提示沒有此安裝包,能夠加入EPEL擴展包:yum install epel-release)sql

六 生成公鑰和祕鑰數據庫

  使用命令ssh-keygen -t rsa 生成公鑰私鑰django

七 安裝相關庫json

yum install -y gcc gcc-c++
yum install -y git
yum install -y openldap-devel
yum install -y python-devel
yum install -y libffi-devel
yum install -y openssl-devel
yum install -y libjpeg-devel
yum install -y zlib-devel
yum install -y python-setuptools
yum install -y mysql-devel
yum install -y  sshpass

 

八 pip,setuptools, 地址: https://bootstrap.pypa.io/ 
   a. 下載get-pip.py 
   b.  python get-pip.py
   c. pip -V,顯示安裝成功  bootstrap

九 下載 2.7版本的python 

 a. 下載python2.7.x 源碼並上傳至/home/ansible/python2.7     具體小版本我用x表示了。。
 b. tar -xf Python-2.7.x.tgz
 c. cd Python-2.7.x
 d. ./configure --prefix=/usr/local
 e. make && make install
 f. cd /usr/local/bin/
 g. ./python -V,  顯示 Python 2.7.x

十  使用virtualenv建立python2.7沙盒環境
   a. pip install virtualenv
   b. cd /home/ansible
   c. mkdir env
   d. virtualenv --python=python2.7 --no-site-packages env/
   e. source ./env/bin/activate
   f. deactivate

十一 安裝ansible_ui 及數據庫配置

      1 獲取 ansible_ui   :

            a.  cd /home/ansible/

            b.  git clone https://github.com/alaxli/ansible_ui.git

      2 啓動 env環境

            a. cd /home/ansible/

            b. source ./env/bin/activate

      3 安裝ansible_ui   (--使用pip 安裝的時候不要使用sudo,不然會切換到python2.6的pip安裝, 會致使安裝過程當中出現不少問題)

      pip install setuptools_scm
      pip install -r requirements.txt  (請看下面特別說明)
      pip install Pillow

                 pip install ansible

          特別說明,安裝包提供的requirements.txt 沒有提供具體的版本,所以即便運行成功後,後面數據庫也沒法配置成功,此處貼出我可用的 requirements.txt 替換便可             

amqp==1.4.9
ansible==2.2.0.0
anyjson==0.3.3
billiard==3.3.0.23
celery==3.1.25
cffi==1.9.1
cryptography==1.7.1
Django==1.6
django-auth-ldap==1.2.8
django-celery==3.1.16
django-crispy-forms==1.4.0
django-guardian==1.3
django-jsonfield==1.0.1
django-multisite==1.3.1
django-widget-tweaks==1.4.1
enum34==1.1.6
idna==2.2
ipaddress==1.0.17
Jinja2==2.9.4
kombu==3.0.37
MarkupSafe==0.23
meld3==1.0.2
mongoengine==0.9.0
MySQL-python==1.2.5
olefile==0.44
paramiko==2.1.1
pexpect==4.2.1
Pillow==4.0.0
ptyprocess==0.5.1
pyasn1==0.1.9
pycparser==2.17
pycrypto==2.6.1
pymongo==3.4.0
python-ldap==2.4.28
python-magic==0.4.12
pytz==2016.10
PyYAML==3.12
requests==2.12.4
requests-file==1.4.1
simplejson==3.10.0
six==1.10.0
South==1.0.2
supervisor==3.3.1
threadpool==1.3.2
tldextract==2.0.2
uWSGI==2.0.14
vine==1.1.3

4 配置數數據庫及play-book路徑

     

import os.path

# LDAP settings
NT4_DOMAIN = ""
LDAP_URL = "ldap://ldapserver:port"
BIND_USER = "CN=adreader,OU=xxx,OU=xxx,DC=xxx,DC=xxxx"
BIND_PASSWORD = "*****"
SEARCH_DN = "ou=xxxx,dc=xxxx,dc=xxxx"

# Database settings
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'ansible',                      # Or path to database file if using sqlite3.
        'USER': 'ansibleuser',                      # Not used with sqlite3.
        'PASSWORD': '123456',                  # Not used with sqlite3.
        'HOST': '127.0.0.1',
        'PORT': '3306',                      # Set to empty string for default. Not used with sqlite3.
    },
}

# Mail settings
MAIL_SENDER = "sender@domain.com"
MAIL_SMTP = "mail.domain.com"

# Ansible-playbook path
ANSIBLE_PLAYBOOK = '/home/ansible/env/bin/ansible-playbook'                           #特別說明,網上版本流傳的安裝教程,此處有問題,此處指定是virtualenv環境下playbook的路徑

 

5 初始化數據庫   

     在mysql 數據庫中添加 ansible   

$ mysql -u root -p

 mysql>  create database ansible CHARACTER SET utf8; 

 

***如下命令執行過程當中,會要求你設置一個superuser和密碼,請記錄下此用戶名和密碼,此用戶名和密碼就是登陸ansible_ui的超級用戶
python manage.py schemamigration desktop.apps.account --init
python manage.py schemamigration desktop.apps.ansible --init
python manage.py syncdb
python manage.py migrate ansible
python manage.py migrate account
python manage.py migrate kombu.transport.django
python manage.py migrate djcelery
python manage.py migrate guardian

         這裏可能遇到的問題有

          a   若是你在上一步配置的數據庫不是本地的數據庫,可能出現版本不一致,致使數據庫安裝失敗

          b   你上一步的數據庫地址、用戶名、密碼不正確

          c    你上一步設置的數據庫,無法鏈接到,無法鏈接到緣由不少

                     c.1  有多是遠程的mysql 3306的端口,沒有被打開,能夠在  /etc/sysconfig/iptables 文件中添加  -A INPUT -p tcp -m tcp --dport 3306 -j ACCEPT      ,記得重啓iptables服務

                     c.2  有可能mysql沒有開啓遠程鏈接 ,在mysql命令中 指向  grant all on ansible.* to ansibleuser@'%' identified by '123456'; 

         6. 配置supervisord和ansible,在

               a.    修改     /home/ansible/ansible_ui/celery-conf/supervisord.conf  中[program:ansible_celeryd] 部分裏面的command爲

                       command = /home/ansible/env/bin/python /home/ansible/ansible_ui/manage.py celeryd -B -l info                      

                      這裏的 /home/ansible/env/bin/python 是個人虛擬環境python,/home/ansible/ansible_ui/manage.py 這個不用說,你應該懂

               b. cp ansible-conf/ansible.cfg ~/.ansible.cfg

         7. 啓動               a. supervisord -c celery-conf/supervisord.conf               b. python manage.py runserver 0.0.0.0:8000   #若是外網訪問不到,有多是端口沒有打開(在  /etc/sysconfig/iptables 文件中添加  -A INPUT -p tcp -m tcp --dport 8000 -j ACCEPT                                                                                                                                                    ,記得重啓iptables服務)

相關文章
相關標籤/搜索