AnsibleWorks AWX is a paid version of Ansible, which can be used for free, but can only manage up to 10 hosts. AWX provides Web-based interfaces, including REST APIs, role access control, and Job templates.
AWX can only be installed on RHEL/CentOS 6 or later versions of Ubuntu 12.04 by default. Because AWX is also deployed by Playbook, we only need to modify it to install it on Debian.
After downloading the AWX installation package, unpackage the package first:
tar zxvf awx-setup-latest.tar.gz
Then, obtain the following modified files:
- Https://gist.github.com/xuxiaodong/7923544:corresponding to the roles/packages_ubuntu/tasks/main. yml File
- Https://gist.github.com/xuxiaodong/7923564:the corresponding roles/postgres/tasks/main. yml File
- Https://gist.github.com/xuxiaodong/7923574:the corresponding roles/misc/tasks/main. yml File
- Https://gist.github.com/xuxiaodong/7923608:corresponding to the site. yml File
At the same time, modify as neededgroup_vars/all
And set the password.
Then, execute:
./setup.sh
The Installation Process of AWX is started.
Enter/etc/apache2/sites-enabled
, Create two symbolic links:
ln -s ../conf.d/awx.conf .ln -s ../conf.d/awx-plain.conf .
In addition/etc/apache2/apache2.conf
InRequire all denied
Comment out.
That is, set:
<Directory /> Options FollowSymLinks AllowOverride None Require all denied</Directory>
Changed:
<Directory /> Options FollowSymLinks AllowOverride None #Require all denied</Directory>
Restart the Apache service to access the service through https: // localhost. The Default User of AWX is admin and the password isgroup_vars/all
.
Recommended reading:
Change Debian's default desktop to Xfce
Debian 7.0 Wheezy test experience
Debian 7.0 Wheezy released!
Install Debian 7.0 Wheezy on a USB flash drive