環境:CentOS 7.2
更新源:
yum -y install yum-plugin-priorities epel-release centos-release-scl-rh centos-release-sclyum update -y
官方網站:http://www.opennms.org/en
官方wiki:http://wiki.opennms.org/wiki/Installation:Yum
卸載opennms源:https://yum.opennms.org/repofiles/opennms-repo-RELEASE-DISTRIBUTION.noarch.rpm
root@linuxprobe[11:09:27]:/usr/local/src$wget http://yum.opennms.org/repofiles/opennms-repo-stable-rhel7.noarch.rpmroot@linuxprobe[11:09:27]:/usr/local/src$rpm -ivh opennms-repo-stable-rhel7.noarch.rpmroot@linuxprobe[12:51:26]:~$rpm --import http://yum.opennms.org/repofiles/OPENNMS-GPG-KEY2、 為OpenNMS安裝數據庫
#安裝 PostgreSQL
yum -y install postgresql-server
#初始化PostgreSQL
postgresql-setup initdb
#修改postgrasql.conf
root@linuxprobe[08:56:17]:~$vim /var/lib/pgsql/data/postgresql.conf
# line 59: 設置允許所有地址訪問psotgresql
listen_addresses = '*'
# line 395: 設置日志格式
log_line_prefix = '%t %u %d '
#psotgresql啟動並設置開機自啟
root@linuxprobe[08:56:37]:~$systemctl start postgresql && systemctl enable postgresql3、 PostgreSQL設置
#允許用戶訪問數據庫
root@linuxprobe[09:15:44]:~$sed -i 's/all 127\.0\.0\.1\/32 ident/all 127.0.0.1\/32 trust/g' /var/lib/pgsql/data/pg_hba.confroot@linuxprobe[09:28:45]:~$sed -i 's/all ::1\/128 ident/all ::1\/128 trust/g' /var/lib/pgsql/data/pg_hba.conf
#重啟PostgreSQL
root@linuxprobe[09:29:06]:~$systemctl restart postgresql4、 安裝JDK
#OpenNMS 16需要安裝java 8
#jdk下載地址:http://www.oracle.com/technetwork/java/javase/downloads
#上傳到服務器/usr/local/src下
root@linuxprobe[10:23:45]:/usr/local/src$rpm -ivh jdk-8u101-linux-x64.rpm5、 安裝OpenNMS
root@linuxprobe[12:51:26]:~$yum install opennms –y
#配置java
root@linuxprobe[14:02:33]:~$/opt/opennms/bin/runjava -S /usr/java/latest/bin/javarunjava: checking specified JRE: "/usr/java/latest/bin/java"...runjava: specified JRE is good.runjava: value of "/usr/java/latest/bin/java" stored in configuration file6、 創建或更新opennms數據庫
root@linuxprobe[14:06:07]:~$/opt/opennms/bin/install -dis
#-d 更新數據庫
#-i 導入數據
#-s 為OpenNMS創建存儲過程
#OpenNMS使用PostgreSQL被稱為”iplike“的存儲過程來提供一個API,輕松地執行復雜的IP地址查詢。默認情況下,安裝一個版本的iplike,兼容所有版本的OpenNMS,為了性能方面考慮,建議使用yum安裝。
yum -y install iplike
#查看iplike幫助
/usr/sbin/install_iplike.sh –h8、 防火牆設置
#開啟端口
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 8980 -j ACCEPT
#禁用防火牆
/sbin/service iptables stopsystemctl disable iptables
#重啟iptables
/sbin/service iptables restart9、 啟動OpenNMS並在浏覽器中訪問
systemctl opennms restart
http://YOUR-OPENNMS-IP:8980/opennms/
本文轉載地址:http://www.linuxprobe.com/opennms-manager-network-linux.html
http://xxxxxx/Linuxjc/1155978.html TechArticle