Erro no ntop Ubuntu 12.04 LTS

3

Estou com os seguintes erros ao iniciar o ntop , ou seja, quando digito sudo ntop :

Error#1:
Fri Sep  6 09:01:52 2013  **ERROR** GeoIP: unable to load file GeoLiteCity.dat
Fri Sep  6 09:01:52 2013  **ERROR** GeoIP: unable to load ASN file GeoIPASNum.dat
Error#2:
Fri Sep  6 09:01:52 2013  INITWEB: Initializing TCP/IP socket connections for web server
Fri Sep  6 09:01:52 2013  **ERROR** INITWEB: binding problem - 'Address already in use'(98)
Fri Sep  6 09:01:52 2013  Check if another instance of ntop is running
Fri Sep  6 09:01:52 2013  or if the current user (-u) can bind to the specified port
Fri Sep  6 09:01:52 2013  **FATAL_ERROR** Binding problem, ntop shutting down...

Alguém por favor pode ajudar a resolver isso?

    
por user189942 06.09.2013 / 13:09

2 respostas

4

Isso é o que um top usa para preencher as informações de geolocalização do tráfego de rede remoto.

Para corrigir isso:

wget -N http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
gunzip GeoLiteCity.dat.gz
wget -N http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz
gunzip GeoIPASNum.dat.gz
sudo mkdir -p /usr/share/GeoIP/
sudo mv GeoLiteCity.dat /usr/share/GeoIP/
sudo mv GeoIPASNum.dat /usr/share/GeoIP/

Você pode atualizar o GeoIP mensalmente para manter os dados atualizados.

Fonte: link

    
por Rucent88 26.04.2014 / 07:23
0

Isso significa que você está perdendo o GeoIP. Isso deve baixar, definir o diretório, se não lá e "instalar":

wget -N http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
gunzip GeoLiteCity.dat.gz
sudo mkdir -p /usr/local/share/GeoIP/
sudo mv GeoLiteCity.dat /usr/local/share/GeoIP/
    
por Rinzwind 06.09.2013 / 13:23

Tags