lfd wont stay running....

flumps

Verified User
Joined
Dec 29, 2003
Messages
111
I can start lfd in the service monitor and it says running but when you refresh it or re visit the page says its stopped. in the log I see:

Sep 30 17:15:12 dev lfd[2625]: Process Tracking...
Sep 30 17:15:12 dev lfd[2633]: *Suspicious Process* PID:1244 User:rpc Uptime:77 secs EXE:/sbin/portmap CMD:portmap
Sep 30 17:15:12 dev lfd[2625]: Account Tracking...
Sep 30 17:15:12 dev lfd[2625]: SSH Tracking...
Sep 30 17:15:12 dev lfd[2625]: SU Tracking...
Sep 30 17:15:12 dev lfd[2625]: Console Tracking...
Sep 30 17:15:12 dev lfd[2625]: *Error* pid mismatch or missing, at line 859
Sep 30 17:15:12 dev lfd[2625]: daemon stopped
Sep 30 17:16:01 dev lfd[2701]: daemon started on ***.co.uk - csf v5.61 (DirectAdmin)
Sep 30 17:16:01 dev lfd[2701]: CSF Tracking...
Sep 30 17:16:01 dev lfd[2701]: IPv6 Enabled...
Sep 30 17:16:01 dev lfd[2701]: LOAD Tracking...
Sep 30 17:16:01 dev lfd[2701]: Country Code Lookups...
Sep 30 17:16:01 dev lfd[2705]: CCL: Retrieving GeoLite Country database [http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz]
Sep 30 17:16:01 dev lfd[2705]: Can't locate HTTP/Config.pm in @INC (@INC contains: /etc/csf /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /us$

Sep 30 17:16:01 dev lfd[2705]: daemon stopped
Sep 30 17:16:01 dev lfd[2701]: System Integrity Tracking...
Sep 30 17:16:01 dev lfd[2701]: Exploit Tracking...
Sep 30 17:16:01 dev lfd[2701]: Directory Watching...
Sep 30 17:16:01 dev lfd[2701]: Email Relay Tracking...
Sep 30 17:16:01 dev lfd[2701]: Temp to Perm Block Tracking...
Sep 30 17:16:01 dev lfd[2701]: Port Scan Tracking...
Sep 30 17:16:01 dev lfd[2701]: Process Tracking...
Sep 30 17:16:01 dev lfd[2701]: Account Tracking...
Sep 30 17:16:01 dev lfd[2701]: SSH Tracking...
Sep 30 17:16:01 dev lfd[2701]: SU Tracking...
Sep 30 17:16:01 dev lfd[2701]: Console Tracking...
Sep 30 17:16:01 dev lfd[2701]: *Error* pid mismatch or missing, at line 859
Sep 30 17:16:01 dev lfd[2701]: daemon stopped

can anyone advice the next step to try or do?

if you need more info let me know.

sorry new to this just trying to learn. running the latest DA with csf. csf not in test mode.

also using latest custombuild option when installing da.
 
Did you install CSF manually or did you use the installer
Code:
cd /tmp
wget http://www.configserver.com/free/csf.tgz
tar zxvf csf.tgz
cd csf
./install.sh
 
Thank you for the replies so far :cool:

I used the installer from the csf website.

will try update csf now....

when I try the command csf -u I get:

csf -u
Can't locate HTTP/Config.pm in @INC (@INC contains: /etc/csf /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.8/i386-linux-thread-multi /usr/lib/perl5/5.8.8 .) at /usr/lib/perl5/site_perl/5.8.8/LWP/UserAgent.pm line 770.

Would of thought csf is the latest build considering it was only installed yesterday however updates can come out whenever I guess :p

by the looks of the above im guessing its something to do with perl?
 
Thank you for the replies so far :cool:

I used the installer from the csf website.

will try update csf now....

when I try the command csf -u I get:



Would of thought csf is the latest build considering it was only installed yesterday however updates can come out whenever I guess :p

by the looks of the above im guessing its something to do with perl?

You should read this topic > http://www.directadmin.com/forum/showthread.php?t=43353&page=1
 
Can't locate HTTP/Config.pm in @INC (@INC contains: /etc/csf /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /us$

That appears to be your problem. See if your distro has a perl module named HTTP::Config. Or you can have CPAN install it for you.

perl -MCPAN -e shell
install HTTP::Config

It may prompt you to configure CPAN, you can take the defaults for most options, the only one I would change is the question they ask about dependencies, I personally choose Follow for that question, since I would want all the dependencies to be installed without having to confirm each one. If you have ever installed a perl module, there can easily be 20 more dependencies to deal with.
 
Back
Top