Ubuntu 12.04 LTS ntop 中的错误

Ubuntu 12.04 LTS ntop 中的错误

ntop我在启动时(即当我输入时)遇到以下错误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...

有人可以帮忙解决这个问题吗?

答案1

这是 top 用来填充远程网络流量的地理位置信息的方法。

要纠正此问题:

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/

您可能希望每月更新 GeoIP 以保持数据为最新。

来源:http://www.mikereamy.com/2013/11/ntop-geoip-error/

答案2

这意味着您缺少 GeoIP。这将下载、设置目录(如果不存在)并“安装”它:

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/

相关内容