#1 (permalink)  
Old 10-15-2004, 06:10 PM
cPanelBilly
Guest
 
Posts: n/a
cpanellogd spawning thousands of processes (fix)

For any having the issues where cpanellogd spawns thousands of processes it is caused by rrdtool not being fully installed. The fix is to:
/scripts/updatenow
/scripts/rrdtoolinstall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-16-2004, 05:27 PM
Registered User
 
Join Date: Sep 2003
Posts: 142
Rubas is on a distinguished road
Thank you!

It did the trick ..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-20-2004, 12:35 PM
Registered User
 
Join Date: Jan 2004
Posts: 79
minotauro
Quote:
Originally Posted by cPanelBilly
For any having the issues where cpanellogd spawns thousands of processes it is caused by rrdtool not being fully installed. The fix is to:
/scripts/updatenow
/scripts/rrdtoolinstall
Hello,

Why this command no run to me?

root@servidor1 [~]# /scripts/updatenow
Updating /scripts...Done
root@servidor1 [~]# /scripts/rrdtoolinstall
root@servidor1 [~]#

Regards,
Minotauro.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-20-2004, 12:37 PM
Advanced cPanel/WHM User
Advanced cPanel/WHM User
 
Join Date: Jun 2003
Posts: 647
nickn is on a distinguished road
It's running fine, just doesn't output anything to your screen.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 10-20-2004, 12:44 PM
Registered User
 
Join Date: Jan 2004
Posts: 79
minotauro
Quote:
Originally Posted by cPanelBilly
For any having the issues where cpanellogd spawns thousands of processes it is caused by rrdtool not being fully installed. The fix is to:
/scripts/updatenow
/scripts/rrdtoolinstall
Hello,

In another server, show this error:

cd . && \
/bin/sh /usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/config/missing --run automake-1.7 --foreign Makefile
/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/config/missing: line 46: automake-1.7: command not found
WARNING: `automake-1.7' is missing on your system. You should only need it if
you modified `Makefile.am', `acinclude.m4' or `configure.ac'.
You might want to install the `Automake' and `Perl' packages.
Grab them from any GNU archive site.
cd . && true
cd . && /bin/sh ./config.status Makefile
config.status: creating Makefile
cd . && /bin/sh /usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/config/missing --run autoconf
configure.ac:37: error: Autoconf version 2.58 or higher is required
configure.ac:37: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
make: *** [configure] Error 1
cd . && /bin/sh /usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/config/missing --run autoconf
configure.ac:37: error: Autoconf version 2.58 or higher is required
configure.ac:37: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
make: *** [configure] Error 1

This server use Red Hat ES 3 (Linux xxxxx 2.4.21-20.ELsmp #1 SMP Wed Aug 18 20:46:40 EDT 2004 i686 i686 i386 GNU/Linux).

Regards,
Minotauro.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 10-20-2004, 12:45 PM
Registered User
 
Join Date: Jan 2004
Posts: 79
minotauro
Quote:
Originally Posted by nickn
It's running fine, just doesn't output anything to your screen.
Hello nickn,

Well, i have 15 servers and in only this server no show nothing (and in another server show error).

Regards,
Minotauro.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 10-20-2004, 12:46 PM
Registered User
 
Join Date: Mar 2003
Posts: 18
we_are_borg
So when i get this:

Code:
root@cylindrical [~]# /scripts/updatenow
Updating /scripts...Done
root@cylindrical [~]# /scripts/rrdtoolinstall
root@cylindrical [~]#
The update was oke.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 10-20-2004, 01:07 PM
Advanced cPanel/WHM User
Advanced cPanel/WHM User
 
Join Date: Jun 2003
Posts: 647
nickn is on a distinguished road
I don't know what your others print, the server itself doesn't output anything to screen..

Code:
root@barracuda [~]# more /scripts/rrdtoolinstall
#!/usr/bin/perl
# rrdinstall script
my $version = '1.0.48';

$rrdversion = `/usr/local/cpanel/3rdparty/bin/rrdtool -v`;
$rrdversion =~ /^RRDtool[\s\t]+([\d\.]+)/i;
$rrdv = $1;

if ($rrdv eq $version) { exit(); }

chdir("/usr/local/cpanel/src/3rdparty/gpl/rrdtool-${version}");


$machine=`uname -m`;
chomp($machine);


if ($machine eq "x86_64" || $machine eq "amd64") {
           system("CFLAGS=\"-fPIC\" ./configure --prefix=/usr/local/cpanel/3rdpa
rty --enable-shared");
} else {
           system("./configure --prefix=/usr/local/cpanel/3rdparty --enable-shar
ed");
}
system("/usr/local/cpanel/bin/killautoconfheader /usr/local/cpanel/src/3rdparty/gpl/
rrdtool-${version}");
system("/usr/local/cpanel/bin/killautoconfheader /usr/local/cpanel/src/3rdparty/gpl/
rrdtool-${version}/tcl");

system("make");
system("make","install");
root@barracuda [~]#
Nothing above ever trys to print to screen...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 10-20-2004, 11:31 PM
Registered User
 
Join Date: Oct 2003
Posts: 16
GetWiredNet
/scripts/rrdtoolinstall does not work on our server and all cgi scripts fail with Resource temporarily unavailable error.

Making install in zlib-1.1.4
make[1]: Entering directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/zlib-1.1.4'
make[2]: Entering directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/zlib-1.1.4'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/zlib-1.1.4'
make[1]: Leaving directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/zlib-1.1.4'
Making install in libpng-1.0.9
make[1]: Entering directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/libpng-1.0.9'
cd .. && /bin/sh ./config.status libpng-1.0.9/Makefile depfiles
config.status: creating libpng-1.0.9/Makefile
config.status: executing depfiles commands
make[1]: Leaving directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/libpng-1.0.9'
make[1]: Entering directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/libpng-1.0.9'
Makefile:129: png.Plo: No such file or directory
Makefile:130: pngerror.Plo: No such file or directory
Makefile:131: pngget.Plo: No such file or directory
Makefile:132: pngmem.Plo: No such file or directory
Makefile:133: pngpread.Plo: No such file or directory
Makefile:134: pngread.Plo: No such file or directory
Makefile:135: pngrio.Plo: No such file or directory
Makefile:136: pngrtran.Plo: No such file or directory
Makefile:137: pngrutil.Plo: No such file or directory
Makefile:138: pngset.Plo: No such file or directory
Makefile:139: pngtrans.Plo: No such file or directory
Makefile:140: pngwio.Plo: No such file or directory
Makefile:141: pngwrite.Plo: No such file or directory
Makefile:142: pngwtran.Plo: No such file or directory
Makefile:143: pngwutil.Plo: No such file or directory
make[1]: *** No rule to make target `pngwutil.Plo'. Stop.
make[1]: Leaving directory `/usr/local/cpanel/src/3rdparty/gpl/rrdtool-1.0.48/libpng-1.0.9'
make: *** [install-recursive] Error 1
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 10-20-2004, 11:49 PM
Registered User
 
Join Date: Nov 2003
Posts: 127
procam is on a distinguished road
Cgi Scripts failing

Actually - This problem happend as a direct result of the last apache update and I do not know why - we have used phpsuexec for quite some time now with NO problems -
That last apache update - Boom suddenly frontpage extensions stopped working server wide all accounts on every machine that was updated - and ALL cgi scripts ceased to work!!
I reset all the perms for frontpage on every account -
And to fix the cgi problem - disabled phpsuexec and the cgis started working right away!!


ICQ 22409301
AJD
Global

Last edited by procam; 10-21-2004 at 01:14 AM. Reason: Problem Fixed
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 03:15 AM.


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
© cPanel Inc