溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

LirbeNMS如何安裝

發(fā)布時間:2021-11-30 09:21:21 來源:億速云 閱讀:427 作者:小新 欄目:互聯(lián)網(wǎng)科技

這篇文章主要介紹了LirbeNMS如何安裝,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

正文

環(huán)境

  • 系統(tǒng)版本:CentOS 7.8

  • web:Nginx

  • PHP版本:7.3(最低7.3)

  • 數(shù)據(jù)庫:Mariadb

安裝前準(zhǔn)備

yum install epel-release yum-utils -y yum localinstall http://rpms.remirepo.net/enterprise/remi-release-7.rpm -y yum-config-manager --enable remi-php74  yum install composer cronie fping git ImageMagick jwhois mariadb mariadb-server mtr MySQL-python net-snmp net-snmp-utils nginx nmap php-fpm php-cli php-common php-curl php-gd php-mbstring php-process php-snmp php-xml php-zip php-memcached php-mysqlnd python-memcached rrdtool python3 python3-pip -y

創(chuàng)建LibreNMS用戶

useradd librenms -d /opt/librenms -M -r  usermod -a -G librenms nginx

下載LibreNMS文件

cd /opt  git clone https://github.com/librenms/librenms.git

LirbeNMS如何安裝

如果大家出現(xiàn)這個問題,將上文地址由https改為git,但是非常慢

設(shè)置權(quán)限

chown -R librenms:librenms /opt/librenms  chmod 770 /opt/librenms  setfacl -d -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/  setfacl -R -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/  chgrp apache /var/lib/php/session/

安裝PHP依賴組件

su - librenms ./scripts/composer_wrapper.php install --no-dev exit

安裝、配置DB

yum -y install mariadb-server systemctl start mariadb && systemctl enable mariadb mysql -uroot -p CREATE DATABASE librenms CHARACTER SET utf8 COLLATE utf8_unicode_ci; CREATE USER 'librenms'@'localhost' IDENTIFIED BY 'xiaoyu123'; GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost'; FLUSH PRIVILEGES; quit ####修改mariadb配置文件#### vi /etc/my.cnf innodb_file_per_table=1 lower_case_table_names=0 ####wr保存退出#### systemctl restart mariadb

LirbeNMS如何安裝

添加配置

PHP-FPM配置

1.修改時區(qū)

vi /etc/php.ini

LirbeNMS如何安裝

修改時區(qū)

2.修改php-fpm配置文件

vi /etc/php-fpm.d/www.conf ####改為如下#### ;user = apache user = nginx group = apache ;listen = 127.0.0.1:9000 listen = /run/php-fpm/php-fpm.sock listen.owner = nginx listen.group = nginx listen.mode = 0660

LirbeNMS如何安裝

LirbeNMS如何安裝

3.重啟php-fpm服務(wù)

systemctl enable php-fpm  systemctl restart php-fpm

配置Nginx

vi /etc/nginx/conf.d/librenms.conf ####添加如下內(nèi)容#### server {  listen      80;  server_name librenms.example.com;  root        /opt/librenms/html;  index       index.php;   charset utf-8;  gzip on;  gzip_types text/css application/javascript text/javascript application/x-javascript image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;  location / {   try_files $uri $uri/ /index.php?$query_string;  }  location /api/v0 {   try_files $uri $uri/ /api_v0.php?$query_string;  }  location ~ \.php {   include fastcgi.conf;   fastcgi_split_path_info ^(.+\.php)(/.+)$;   fastcgi_pass unix:/run/php-fpm/php-fpm.sock;  }  location ~ /\.ht {   deny all;  } }

LirbeNMS如何安裝

啟動Nginx

systemctl enable nginx systemctl restart nginx

SNMP配置

cp /opt/librenms/snmpd.conf.example /etc/snmp/snmpd.conf y curl -o /usr/bin/distro https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/distro  chmod +x /usr/bin/distro  systemctl enable snmpd &&systemctl restart snmpd

計(jì)劃任務(wù)

cp /opt/librenms/librenms.nonroot.cron /etc/cron.d/librenms

復(fù)制LibreNMS配置文件

cp /opt/librenms/misc/librenms.logrotate /etc/logrotate.d/librenms

訪問前端

此時會發(fā)現(xiàn)訪問還是Nginx的界面,這里需要調(diào)整一些參數(shù)

LirbeNMS如何安裝

vi /etc/nginx/nginx.conf  systemctl restart nginx

將端口改為8080

LirbeNMS如何安裝

前端配置

點(diǎn)擊圖標(biāo)進(jìn)行下一步

LirbeNMS如何安裝

檢查通過

LirbeNMS如何安裝

填寫數(shù)據(jù)庫信息

LirbeNMS如何安裝

通過之后點(diǎn)擊build

LirbeNMS如何安裝

點(diǎn)擊紅框才能下一步

LirbeNMS如何安裝

正常是空的dashboard

設(shè)置中文

LirbeNMS如何安裝

簡單使用

LirbeNMS如何安裝

新增設(shè)備

最終效果

LirbeNMS如何安裝

LirbeNMS如何安裝

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“LirbeNMS如何安裝”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI