Saturday 14 September 2013

Open source network monitoring system

Open source network monitoring system

cd /opt/
wget http://www.netxms.org/download/netxms-1.2.6.tar.gz
tar zxvf netxms-1.2.6.tar.gz 
cd netxms-1.2.6
sh ./configure --with-server --with-mysql --with-agent
yum install gcc gcc-c++ autoconf automake
yum install mysql mysql-devel mysql-lib
sh ./configure --with-server --with-mysql --with-agent
make


mysql -u root -p 

CREATE DATABASE netxms;
GRANT ALL ON netxms.* TO netxms IDENTIFIED BY 'netxms';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'netxms'@'localhost'
-> IDENTIFIED BY 'some_pass' WITH GRANT OPTION;



Apache Setting :-

# vi /etc/httpd/conf/httpd.conf

& Add Following Line at End of File.

<VirtualHost *:80>
    ServerAdmin admin@linukstricks.com
    DocumentRoot "/opt/netxms-1.2.6"
    ServerName linukstricks.com
    ServerAlias www.linukstricks.com
    </VirtualHost>


Then Continue with your Installation.

No comments:

Post a Comment