Home > ntop error > ntop error unable to find rrd at /usr/local

Ntop Error Unable To Find Rrd At /usr/local

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 - parameters get passed through to the generated ./configure, e.g.: ./autoGen.sh --with

Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Server Fault Questions Tags Users Badges Unanswered Ask Question _ Server Fault is a question and answer site for system and network administrators. Join them; it only takes a minute: Sign up Here's how it works: Anybody can ask a question Anybody can answer The best answers are voted up and rise to the top Problem installing ntop http://www.gossamer-threads.com/lists/ntop/users/18930 on FreeBSD 6.2 up vote 1 down vote favorite I'm following the instructions at http://www.ntop.org/download.html. At some point during the ./configure phase of the install, I get this error message: configure: error: Unable to find RRD at /usr/local/rrdtool: please use --with-rrd-home=DIR I run which rrdtool and I get: /usr/local/bin/rrdtool ...so I run: ./configure --with-rrd-home=/usr/local/bin/rrdtool The installation continues, until it fails at the same spot, same error. I've tried a bunch of varying http://serverfault.com/questions/5099/problem-installing-ntop-on-freebsd-6-2 paths, like: `./configure --with-rrd-home=/usr/local/bin/` `./configure --with-rrd-home=/usr/local/bin` `[...]` `./configure --with-rrd-home=/usr` ... as I read in a suggestion while Googling the problem. If it matters, I don't have root access on this machine. It's a dedicated server at my web host. Any suggestions? freebsd rrdtool configuration ntop share|improve this question asked May 6 '09 at 0:58 Ian 72841828 add a comment| 4 Answers 4 active oldest votes up vote 7 down vote accepted Even better than all of the previous answers, why are you trying to install this by hand? The ports tree contains ntop: http://www.freshports.org/net/ntop/ So if you have the ports tree installed (if not, check the FreeBSD Handbook on using ports) The ports tree is an amazing feature for FreeBSD in that it does the dependency tracking and compiles said dependencies for you. The version in the ports tree is outdated by 2 versions from what I can see, generally a nice email to the port maintainer can help you solve that issue! Edit: Re-read your question and it seems that you are not running as root, how are you planning on getting access to a bpf device to log packets? share|improve this answer answered May 6 '09 at 2:16 X-Istence 547718 1 Thank you for saying that. ;-) Why use FreeBSD at all

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 use a web interface to monitor http://agacho.blogspot.com/2010/08/how-to-install-ntop-401-on-debian.html things instead of using a linux terminal.. We are 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 we suffered very much, I'm not sure..First, I tried to install it ntop error 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.. even the version of python was a problem :)ntop installation script will give an error because it ntop error unable 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 realized the Ubuntu documentation on the homepage. So Ubuntu is based on a debian system, so I thought that this documentation can also be useful for us.. $ sudo apt-get install libpcap-dev libgdbm-dev libevent-dev librr

 

Related content

ntop error unable to find rrd

Ntop Error Unable To Find Rrd p Post of views Permalink configure script can't find rrdtool hello list I am attempting to install ntop v under CentOS release but I am running into an issue when I try to specify the rrdtool that I have already installed It is indeed already there and both ganglia and cacti are already using it Here's a sample of the output I see checking for zlibVersion in -lz yes checking for main in -lrrd th no configure error Unable to find RRD at usr local please use --with-rrd-home DIR I have tried the following

ntop error opening file geolitecity dat

Ntop Error Opening File Geolitecity Dat p Search HCL Search Reviews Search ISOs Go to Page LinuxQuestions org Forums Linux Forums Linux - Software SOLVED ntop service start error User Name Remember Me Password Linux relatedl - Software This forum is for Software issues Having a problem installing a new program Want to know which application is best for the job Post your question in this forum Notices Welcome to LinuxQuestions org a friendly and active Linux Community You are currently viewing LQ as a guest By joining our community you will have the ability to post topics receive our

ntop error

Ntop Error table id toc tbody tr td div id toctitle Contents div ul li a href Ntopng a li ul td tr tbody table p shelby New Member Hello -following the wonderful How to on network monitoring with ntop This is exactly what I want relatedl to do I am new to Linux - using Ubuntu feisty error opening file geolitecity dat xplico Have installed ntop but when I try to start ntop get the following in p h id Ntopng p the error log This is a brand new install and I have done nothing to install configure

ntop error 400

Ntop Error table id toc tbody tr td div id toctitle Contents div ul li a href Ntop Default Password a li li a href Ntop Network Monitoring a li li a href How To Use Ntop a li ul td tr tbody table p bug affects people Affects Status Importance Assigned relatedl to Milestone ntop Ubuntu Edit Confirmed configure ntop ubuntu Undecided Unassigned Edit You need to log in to change p h id Ntop Default Password p this bug's status Affecting ntop Ubuntu Filed here by G bor Lipt k When - - Confirmed - - ntop command

ntop error opening file ./geolitecity.dat error opening file ./geoipasnum.dat

Ntop Error Opening File geolitecity dat Error Opening File geoipasnum dat p Tags Search LQ Wiki Search Tutorials Articles Search HCL Search Reviews Search ISOs Go to Page LinuxQuestions org relatedl Forums Linux Forums Linux - Software SOLVED ntop service start error User Name Remember Me Password Linux - Software This forum is for Software issues Having a problem installing a new program Want to know which application is best for the job Post your question in this forum Notices Welcome to LinuxQuestions org a friendly and active Linux Community You are currently viewing LQ as a guest By joining

ntop error interface eth0 is down

Ntop Error Interface Eth Is Down table id toc tbody tr td div id toctitle Contents div ul li a href Ntop Ubuntu a li li a href What Is Ntop a li li a href Ntop Vs Ntopng a li ul td tr tbody table p Importance Assigned to Milestone ntop Ubuntu Edit Fix Released Undecided Unassigned Edit You need to log in to change this relatedl bug's status Affecting ntop Ubuntu Filed here by Ralph ntop windows Corderoy When - - Confirmed - - Started work - - Completed - - Target Distribution Baltix p h id Ntop

ntop error null host detected

Ntop Error Null Host Detected table id toc tbody tr td div id toctitle Contents div ul li a href Ntop Default Username Password a li li a href Ntop Web Interface a li li a href No Interface Has Been Configured Please Configure Ntop First a li ul td tr tbody table p date thread subject author Hi All I have ntop setup recently relatedl in ubuntu server After running days I ntop configuration got some logs from ntop Mon Jun ERROR NULL host p h id Ntop Default Username Password p detected Mon Jun ERROR NULL host detected

ntop error traversing database

Ntop Error Traversing Database p by date thread subject author please update to the latest svn code Luca On Sep at PM ROB POWELL wrote Wonder if anyone can help I'm getting the following error a lot with a new NTOP build error traversing Database for ipnum xxxxxxxxxxx installed versions NTOP svn LIBEVENT -stable OS Ubuntu Server Ntop-dev mailing list Ntop-dev at unipi it http listgateway unipi it mailman listinfo ntop-dev Previous message Ntop-dev error traversing Database for ipnum Next message Ntop-dev error traversing Database for ipnum Messages sorted by date thread subject author More information about the Ntop-dev mailing

ntop error 10

Ntop Error p subject author Its a strange error relatedl and i didnt get any solution to it but you never know that this is causing some problem in the data collection Date Sat Aug - From Ggatten at waddell com To ntop at unipi it Subject Re Ntop Error during sending page If its not very often and not causing any probs try to ignore it Else maybe try a different browser Also check the FAQ and man there are a couple tweaks for web server stuff that may or may not help From ntop-bounces at unipi it To

ntop error geolitecity.dat

Ntop Error Geolitecity dat p communities company blog Stack Exchange Inbox Reputation and Badges sign up log in tour help Tour Start here for a quick overview of the site Help Center Detailed relatedl answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Ask Ubuntu Questions Tags Users Badges Unanswered Ask Question Ask Ubuntu is a question and answer site for Ubuntu users and developers Join them it only takes a minute Sign

ntop error buffer too short

Ntop Error Buffer Too Short p Post of views Permalink ntop - relatedl buffer too short error I'm running ntop on Linux When I click IP - Summary - Multicast and try to sort by data sent the HTML page goes blank multicastStats html col The HTML source is also blank And the if I click something else I see blank But everything comes back after a few minutes and then if I click the Multicast page again the process repeats In var log messages I see ERROR Buffer too short report c increase to at least ERROR Buffer too

ntop error gdbm header or library routines are missing

Ntop Error Gdbm Header Or Library Routines Are Missing p Post of views Permalink gdbm header or library routines are relatedl missing error I am getting the following error while compiling ntop yes I know is old on a Cobalt Raq libgdbm so exist in usr lib and gdbm h exist in usr include I search Google with no luck I have also tried --with-gdbm-root usr lib and nothing Any ideas how to fix this Thanks -pa Testing Required libraries and headers checking for required C headers ok checking for crypt ok checking for dynamic load module ok checking for