启动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...有人能帮我解决这个问题吗?
发布于 2014-04-26 05:23:38
这是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/
发布于 2013-09-06 11:23:27
这意味着你错过了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/https://askubuntu.com/questions/342144
复制相似问题