Help

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
Chencho
Posts: 1
Joined: Fri May 19, 2017 2:28 pm

Help

Post by Chencho »

I need help with that, so i install the nagios XI but in the terminal show me these

[root@localhost tmp]# wget http://assets.nagios.com/downloads/nagi ... est.tar.gz
--2017-05-19 13:13:27-- http://assets.nagios.com/downloads/nagi ... est.tar.gz
Resolviendo assets.nagios.com (assets.nagios.com)... 72.14.181.71, 2600:3c00::f03c:91ff:fedf:b821
Conectando con assets.nagios.com (assets.nagios.com)[72.14.181.71]:80... conectado.
Petición HTTP enviada, esperando respuesta... 301 Moved Permanently
Localización: https://assets.nagios.com/downloads/nag ... est.tar.gz [siguiendo]
--2017-05-19 13:13:27-- https://assets.nagios.com/downloads/nag ... est.tar.gz
Conectando con assets.nagios.com (assets.nagios.com)[72.14.181.71]:443... conectado.
Petición HTTP enviada, esperando respuesta... 301 Moved Permanently
Localización: https://assets.nagios.com/redirects/red ... est.tar.gz [siguiendo]
--2017-05-19 13:13:28-- https://assets.nagios.com/redirects/red ... est.tar.gz
Reutilizando la conexión con assets.nagios.com:443.
Petición HTTP enviada, esperando respuesta... 404 Not Found
2017-05-19 13:13:28 ERROR 404: Not Found.


help me i cant install this... thank you!
455157
Posts: 51
Joined: Mon Sep 10, 2012 7:35 pm

Re: Help

Post by 455157 »

Ahoy Chencho, welcome to the forum

I think I see the problem, in your initial wget command.

You have:

Code: Select all

http://assets.nagios.com/downloads/nagiosxi-latest.tar.gz
but what you actually need is a " / " between nagiosxi and -latest, and xi before the dash like so:

Code: Select all

http://assets.nagios.com/downloads/nagiosxi/xi-latest.tar.gz
So, whole command is:

Code: Select all

wget http://assets.nagios.com/downloads/nagiosxi/xi-latest.tar.gz
Now, your (server, VM?) will be abled to download the tarball, and you can proceed?

https://support.nagios.com/kb/article/n ... tions.html

...
dwhitfield
Former Nagios Staff
Posts: 4583
Joined: Wed Sep 21, 2016 10:29 am
Location: NoLo, Minneapolis, MN
Contact:

Re: Help

Post by dwhitfield »

Thanks @455157!

Additionally, if you want a specific version, you can find them at https://assets.nagios.com/downloads/nag ... rsions.php
Locked