Home > ntop configure > ntop configure error unable to find rrd

Ntop Configure Error Unable To Find Rrd

Post #1 of 3 (13574 views) Permalink Unable to compile NTOP in FC5 I downloaded the latest NTOP via CVS. I am trying to compile the NTOP in a Fedora Core 5 OS. I used the autogen.sh to compile the NTOP. I am getting an error which I have no idea how-to fix it. Does anyone encounter this erro in FC5 and know how-to fix it? Thanks. ./autogen.sh configure: error: Unable to find RRD in the specified rrd 1.2.x directory paul at expsys Aug2,2006,12:54PM Post #2 of 3 (13448 views) Permalink Re: Unable to compile NTOP in FC5 [In reply to] Bryan, You first need to... Install latest version of rrdtool http://oss.oetiker.ch/rrdtool/ You then need to run ntop "./configure --with-rrd-home=DIR" Usually /usr/local/rrdtool-1.2.x. OR cd /usr/local ln -s rrdtool-1.2.15 rrdtool This worked for me under FC5. Paul Paul Woroshow Expert Systems Resources inc.; web http://www.expsys.com 56 Shorting Road, Toronto, Ontario, M1S 3S3, Canada phone (416) 299-7017 x222; fax (416) 291-2059 "Bryan Fung" Sent by: ntop-bounces [at] unipi 08/02/2006 03:28 PM Please respond to ntop [at] unipi To ntop [at] unipi cc Subject [Ntop] Unable to compile NTOP in FC5 I downloaded the latest NTOP via CVS. I am trying to compile the NTOP in a Fedora Core 5 OS. I used the autogen.sh to compile the NTOP. I am getting an error which I have no idea how-to fix it. Does anyone encounter this erro in FC5 and know how-to fix it? Thanks. ./autogen.sh configure: error: Unable to find RRD in the specified rrd 1.2.x directory _______________________________________________ Ntop mailing list Ntop [at] unipi http://listgateway.unipi.it/mailman/listinfo/ntop Burton at ntopSupport Aug5,2006,5:50AM Post #3 of 3 (13434 views) Permalink RE: Unable to compile NTOP in FC5 [In reply to] You should be able to do that as part of ./autoGen.sh

Storage SAN NAS Projects About Home > IT Architecture, Networking Security > ntop installation and usage howto ntop installation and usage howto March 7th, 2012 ###ntop installation PS:if you encountered errors like the following during nagios installation using ./autogen.sh, then you may be interested in this article: 1.configure: error: Unable to find RRD at http://www.gossamer-threads.com/lists/ntop/users/18930 /usr/local: please use --with-rrd-home=DIR 2.checking for GeoIP_record_by_ipnum in -lGeoIP... no checking for GeoIP_name_by_ipnum_v6 in -lGeoIP... no Please install GeoIP (http://www.maxmind.com/) 3.checking for pcap_lookupdev in -lpcap... no *** FATAL ERROR *** It looks that you don't have the libpcap distribution installed. Download, compile and, optionally, http://www.doxer.org/ntop-installation-and-usage-howto/ install it. When finished please re-run this program. You can download the latest source tarball at http://www.tcpdump.org/ configure: error: The LBL Packet Capture Library, libpcap, was not found! Now let's go to the topic of this article: #1.install rrdtool #PS: if you encounter error "Pango-WARNING **: failed to choose a font, expect ugly output", then you'll need install xorg-x11-font* as stated below yum -y install cairo-devel libxml2-devel pango-devel pango libpng-devel freetype freetype-devel libart_lgpl-devel gdbm-devel xorg-x11-font* wget 'http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz' -O ../rrdtool-1.4.7.tar.gz cd ../ tar zxvf rrdtool-1.4.7.tar.gz echo $PKG_CONFIG_PATH export PKG_CONFIG_PATH=/usr/lib/pkgconfig/ cd rrdtool-1.4.7 ./configure make make install cd /opt ln -s rrdtool-1.4.7 rrdtool cd rrdtool cd share/rrdtool/examples/ ./stripes.pl cp stripes.png /var/www/html/crystal #then visit the picture to see whether it's loading or not #2.install libpcap from source wget 'http://www.tcpdump.org/release/libpcap-1.2.1.tar.gz' configure/make/make install #3.install geoip wget 'http://geolite.maxmind.com/download/geoip/api/c/GeoIP.tar.gz' configure/make/make install #4.ins

We think that someone is sniffing!.. So, we wanted to monitor network activity, and see what really happens.. While googling about it, I saw a tool called "ntop".. That was good, because you can http://agacho.blogspot.com/2010/08/how-to-install-ntop-401-on-debian.html use a web interface to monitor things instead of using a linux terminal.. We are http://felipeferreira.net/index.php/2011/03/how-to-install-ntop-on-centos-5-5-64bits/ currently using a debian system, so first thing we tried was to install it with: $ sudo apt-get install ntopOnce it was installed(it took some time because of dependencies), I realized that the version was an old one(3.3..). So of course, I wanted to install the new version 4.0.1.. Our debian system was an old version.. Maybe this is why ntop configure we suffered very much, I'm not sure..First, I tried to install it by using the tarball archive provided by the site.. I have to say that ntop's installation script is not very user friendly.. You never know what you need as dependencies before running the command "./autogen.sh".. Each time that we tried to run the script, we needed more and more dependencies.. because I'm very stubborn, I didnt give up!.. and tried to install all dependencies.. ntop configure error even the version of python was a problem :)ntop installation script will give an error because it cannot find RRD tool installed.., you need to have RRD tool installed.. And then, run the script again with rrd home parameter which is:$ ./autogen.sh --with-rrd-home:/opt/rrdtool-1.4.xthis part is important.. by default, ntop tries to find RRD tool in /usr/local/rrdtool folder.. but if you try to install RRD tool using a tarball, after the configure, make, make install process, RRD tool is installed under /opt directory.. so do not try to give the /usr/local/rrdtool as a parameter :)and other dependencies, that we came up with were libraries like "pixman, cairo, pangocairo, fontconfig, freefont and so on".. and these are only "few" ones.. And another missing dependency was "GeoIP".. that you need to install it from here.. Well, we were working on a virtual machine.. I untar the file.. Tried to configure.. but was never able to "make" it.. and the weird thing is that "the host machine" was turned off!.. yes.. we tried 2-3 times, and every time, because of the "make" command, the host machine was turned off.. so I was obliged to give up at this point..After spending too many hours, I really wanted to run this new version.. So I wanted to try again :) This time, when I checked the ntop site, I rea

on CentOS 5.5 64bits March 24th, 2011 Leave a comment Go to comments Quick and easisest way: wget http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS//rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm rpm -Uvh rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm yum install ntop # Get yum ready yum clean all yum update # Install Development Tools yum groupinstall "Development Tools" # Install more ntop Dependencies yum install libpcap-devel libpcap # Install RDD tools dependencies yum install cairo-devel libxml2-devel pango-devel pango libpng-devel freetype freetype-devel libart_lgpl-devel # Download, compile and install RDDTools wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.5.tar.gz tar xvzf rrdtool-1.4.5.tar.gz cd rrdtool-1.4.5 ./configure make make install # Download, compile and Install GeopIP wget http://geolite.maxmind.com/download/geoip/api/c/GeoIP.tar.gz tar xvzf GeoIP.tar.gz cd GeoIP-1.4.6/ ./configure ./make ./make install NOTE: config at: /usr/local/etc/GeoIP.conf #Download, compile and install nTop 4.0.1 wget http://cdnetworks-us-1.dl.sourceforge.net/project/ntop/ntop/ntop-4.0.1/ntop-4.0.1.tar.gz tar xvzf ntop4.0.1.tar.gz cd ntop-4.0.1/ autoconf ./configure -with-rrd-home=/opt/rrdtool-1.4.4/ make make install # Add ntop user and directory permissions. useradd -M -s /sbin/nologin -r ntop chown -R ntop:root /usr/local/var/ntop/ chown -R ntop:ntop /usr/local/share/ntop/ # Set ntop password ntop -A # To start ntop on boot nano /etc/rc.local # and add: /usr/local/bin/ntop -i "eth0,eth1" -d -L -u ntop -P /usr/local/ you have multiple interface (eth0, eth1 and so on), start ntop as follows: # To start ntop /usr/bin/ntop -i "eth0" -d -L -u ntop -P /var/ntop -skip-version-check -use-syslog=daemon htpasswd -c /etc/httpd/.htpasswd segredes Where, * -i "eth0,eth1" : Specifies the network interface or interfaces to be used by ntop for network monitoring. Here you are monitoring eth0 and eth1. * -d : Run ntop as a daemon. * -L : Send all log messages to the system log (/var/log/messages) instead of screen. * -u ntop : Start ntop as ntop user * -P /usr/local/var/ntop : Specify where ntop stores database files. You may need to backup database as part of your disaster

 

Related content

ntop configure error unable to find rrd at /usr/local

Ntop Configure Error Unable To Find Rrd At usr local p Post of views Permalink Unable relatedl to compile NTOP in FC I downloaded the latest NTOP via CVS I am trying to compile the NTOP in a Fedora Core OS I used the autogen sh to compile the NTOP I am getting an error which I have no idea how-to fix it Does anyone encounter this erro in FC and know how-to fix it Thanks autogen sh configure error Unable to find RRD in the specified rrd x directory Aug PM Post of views Permalink Re Unable to compile

ntop configure error unable to find rrd at

Ntop Configure Error Unable To Find Rrd At p Post of views Permalink Unable to compile NTOP relatedl in FC I downloaded the latest NTOP via CVS I am trying to compile the NTOP in a Fedora Core OS I used the autogen sh to compile the NTOP I am getting an error which I have no idea how-to fix it Does anyone encounter this erro in FC and know how-to fix it Thanks autogen sh configure error Unable to find RRD in the specified rrd x directory Aug PM Post of views Permalink Re Unable to compile NTOP in