iT邦幫忙

0

安裝librenms監控軟體,在web輸入ip位址,出現file not found

  • 分享至 

  • xImage

使用ubuntu 18.04 nginx安裝librenms,照著官方文檔安裝,在進行web install時,
輸入 http://ip/install.php時,出現 file not found訊息,請問各位有遇過這種狀況嗎?

已把防火牆跟selinux關閉

loke0204 iT邦新手 2 級 ‧ 2021-04-14 14:34:32 檢舉
sudo nano /etc/nginx/sites-available/librenms

Then copy and paste the content below into the file and save…

server {
listen 80;
listen [::]:80;
root /opt/librenms/html;
index index.php;
server_name example.com www.example.com;

client_max_body_size 100M;

location / {
try_files $uri $uri/ /index.php?$query_string;
}

location /api/v0 {
try_files $uri $uri/ /api_v0.php?$query_string;
}

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
做了嗎? server_name "example.com www.example.com"; 改成你的ip 試看看
Kailis iT邦研究生 1 級 ‧ 2021-04-14 15:46:04 檢舉
你要用fqdn 去連, 不要用ip 試試 , 這是一個好用的工具, 可以用telegram 收alert
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友回答

立即登入回答