Debian how to install AWX

  

Because AWX does not support Debian system, Debian users feel very headache, in fact, as long as a slight change, AWX can also be installed on Debian, the specific with the small series to learn it.

AWX after downloading the installation package, unpack spare:

tar zxvf awx-setup-latest.tar.gz

Next, the following modifications obtain File:

https://gist.github.com/xuxiaodong/7923544: Corresponding to roles/packages_ubuntu/tasks/main.yml file

https://gist.github.com/xuxiaodong /7923564: Corresponds to the roles/postgres/tasks/main.yml file

https://gist.github.com/xuxiaodong/7923574: Corresponds to the roles/misc/tasks/main.yml file

https://gist.github.com/xuxiaodong/7923608: Corresponding to the site.yml file

Also, modify group_vars/all as needed and set the password.

Then, execute:

. /setup.sh

The AWX installation process begins.

After the installation is complete, go to /etc/apache2/sites-enabled and create two symbolic links:

ln -s . . /conf.d/awx.conf .

ln -s . . /conf.d/awx-plain.conf.

In addition, you need to comment out Require all denied in /etc/apache2/apache2.conf.

That is,

Directory /<<

Options FollowSymLinks

AllowOverride None

Require all denied

/Directory

Change to:

Directory /<<

Options FollowSymLinks

AllowOverride None

#Require all denied

/Directory

Restart the Apache service and you can access it via https://localhost. The default user for AWX is admin and the password is the password set in group_vars/all.

The above is the introduction of Debian AWX installation method, if you are still worried about the failure to install AWX for Debian, try the method described in this article to easily solve your problem.

Copyright © Windows knowledge All Rights Reserved