Archive for the tag 'service'

SBDavid

chkservd service monitor

chkservd service monitor

chkservd is a service running on Cpanel servers. chkservd service monitors other service, if any of the service that is monitored by chkservd is found down, chkservd will restart the service and notify server admin

You can start, stop chkservd with following commands

service chkservd start
service chkservd stop
/etc/rc.d/init.d/chkservd start
/etc/rc.d/init.d/chkservd stop

cPanel offers ‘chkservd’, a monitoring daemon that monitors the services on the server and restart them if found offline.

cPanel/WHM Update and Service Status Logs

/var/cpanel/updatelogs/update-[TIMESTAMP].log

Contains all output from each upcp. Named with the timestamp from which the upcp process was executed.

Service Status Logs

/var/log/chkservd.log

The service monitoring daemon (chkservd) logs all service checks here. Failed services are represented with a [-], and active are represented with [+].

What can I do if I am unable to start the qmail service in Plesk?

First of all, make sure that qmail is not running.

ps ax | grep qmail-send

If so, try to start it from the command line.

/etc/init.d/qmail start

If that does not work take a look at the /usr/local/psa/var/log/maillog logfile for helpful error messages.

Reference: http://kb.parallels.com/en/

When the cron file /etc/cron.daily/1hup_apache_logs is executed the httpd service is not able to reload properly and it get stuck. The service is dead and it needs to be restarted manually. Even the server load goes high. And in some cases the server even crashes.

To Resolve this issue.

Change “reload” to “restart” in /etc/cron.daily/1hup_apache_logs

Content of /etc/cron.daily/1hup_apache_logs are as follows:

#!/bin/bash
#/etc/rc.d/init.d/httpd_app_init reload-grc
# XXX Fix of the “lost child came home” issue
! /sbin/chkconfig httpd || /etc/rc.d/init.d/httpd_app_init reload

And then change to

#!/bin/bash
#/etc/rc.d/init.d/httpd_app_init reload-grc
# XXX Fix of the “lost child came home” issue
! /sbin/chkconfig httpd || /etc/rc.d/init.d/httpd_app_init restart

Reference: http://parallels.com

Proftpd service may not start after fresh install from a Virtuozzo template

Resolution

Change the /etc/xinetd.d/xproftpd file and restart services

Log as root to your box

Open the /etc/xinetd.d/xproftpd file using a text editor

vi /etc/xinetd.d/xproftpd

Change value of “disable =” to “yes”.

Restart xinetd service

/etc/init.d/xinetd restart

Start proftpd service

/etc/init.d/proftpd start

Reference: http://parallels.com/

« Prev - Next »