Archive for the tag 'starts'

freshclam process starts despite clamav disabled

freshclam process started by /etc/cron.daily/freshclam script which doesn’t check if clamd is disabled, to resolve this we have to modify the /etc/cron.daily/freshclam script adding the check whether the clamd is disabled.

Log into your Ensim as root
Open the /etc/cron.daily/freshclam
Replace the following lines

/usr/bin/freshclam \
–quiet \
–datadir=”/var/clamav” \
–log=”$LOG_FILE” \
–log-verbose \
–daemon-notify=”/etc/clamd.conf”

with the lines

if [ "x" != "x`chkconfig --list clamd | grep on`" ]; then
/usr/bin/freshclam \
–quiet \
–datadir=”/var/clamav” \
–log=”$LOG_FILE” \
–log-verbose \
–daemon-notify=”/etc/clamd.conf”
fi

Stopped Parallels Plesk Panel service starts automatically

Resolution: Make sure you did not remove the Parallels Plesk Panel event handlers that are required for the proper work of the module:

Service started lowest (0) psaadm /usr/local/psa/admin/bin/php /usr/local/psa/admin/bin/modules/watchdog/wd –monit-service= –plesk-name

Service stopped lowest (0) psaadm /usr/local/psa/admin/bin/php /usr/local/psa/admin/bin/modules/watchdog/wd –unmonit-service=

Note: If you use Debian Linux or Ubuntu Linux, the path to Watchdog’s system files is /opt/psa/admin/modules/watchdog/

Source : http://parallels.com/Plesk/