Pages

2014-11-21

[Ubuntu12.04]Build iTop Enviroment for Inventory Management

iTOP is a CMDB tool that we use it for inventory management.

[Requirements]

Download iTOP
http://sourceforge.net/projects/itop/files/itop/

MySQL version 5.0 or newer
PHP version 5.2.0 or newer
Web Server supporting PHP 5

[My Enviroment]

System: Ubuntu12.04
Web Server: Apache 2.2
Database: MySQL 5.5
PHP: PHP 5.3
iTOP: iTop-2.0.3-1916.zip

[Installation]

$ sudo apt-get install apache2
$ sudo apt-get install mysql-server
$ sudo apt-get install php5 php5-mysql php5-ldap php5-mcrypt php5-common

[Setup]

# decompress zip file 
$ sudo unzip iTop-2.0.3-1916.zip

# make required directory
$ sudo mkdir /var/www/itop

$ sudo mkdir /var/www/itop/conf
$ sudo mkdir /var/www/itop/log
$ sudo mkdir /var/www/itop/env-production
$ sudo mkdir /var/www/itop/data

# copy required file to web root 
$ cp -r web/* /var/www/itop

#change access write for specified directory
$ sudo chmod -R 777 /var/www/itop/conf
$ sudo chmod -R 777 /var/www/itop/log
$ sudo chmod -R 777 /var/www/itop/env-production
$ sudo chmod -R 777 /var/www/itop/data
$ sudo chmod -R +x /var/www/itop/setup

# type URL http://localhost/itop, then the intall wizard will guide you to install iTop.



No comments:

Post a Comment