Ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Daniel Berteaud 459f705678 Update to 2020-12-23 12:00 3 years ago
..
defaults Update to 2020-12-22 20:00 3 years ago
meta Update to 2020-12-16 20:00 3 years ago
tasks Update to 2020-12-22 20:00 3 years ago
templates Update to 2020-12-22 20:00 3 years ago
README.md Update to 2020-12-23 12:00 3 years ago

README.md

iTop CMDB

iTop is a Configuration Management Database written in PHP, developped by combodo

Installation

The installation is not fully automatic. This ansible role will take care of creating the DB, install the app, configure PHP, httpd etc. But you'll have to finish the setup manually by going to the /setup path. Note : if you run iTop beind a reverse proxy, you'll have to temporarily edit web/application/utils.inc.php. In this file, the GetDefaultUrlAppRoot will return port 80 instead of 443 (because the httpd instance is running on port 80, but the client uses port 443 to contact the reverse proxy). Just change the line :

$iPort = isset($_SERVER['SERVER_PORT']) ? $_SERVER['SERVER_PORT'] : 80;

to

//$iPort = isset($_SERVER['SERVER_PORT']) ? $_SERVER['SERVER_PORT'] : 80;
$iPort = 443;

You can revert this change once the installation is done. For the installation, you need to use a MySQL account with the SUPER privilege (which is not the case of the default user created).

Upgrade

For upgrades, there are several manual steps to be done. First, you need to grant write access to the config file

chmod 660 /opt/itop_1/web/conf/production/itop-config.php

Then go to /setup and follow the steps. Note : the upgrade needs a user with the SUPER privilege on MySQL. This is not the case of the default user created by this role for security reason. So you should use your SQL admin for the upgrade process. Once the upgrade is done, you can restrict again permissions. note during the upgrade, you'll have to fixe the URL if you're running behind a rev proxy, because iTop will force the port to be 80 !

chmod 660 /opt/itop_1/web/conf/production/itop-config.php

And edit /opt/itop_1/web/conf/env-production/itop-config.php to set back the itop_1 user and password (as it'll have the sqladmin user here)