Sun Java System Web Server 6.1 SP12/SP13 Release Notes

Incorrect Instructions for Stopping schedulerd Control Daemon

The section Using Schedulerd Control-based Log Rotation (UNIX/Linux) in Sun Java System Web Server 6.1 SP12 Administrator’s Guide contains incorrect information about stopping the schedulerd control daemon

Incorrect:

export PID_FILE=/opt/SUNWwbsvr/https-admserv/logs/scheduler.pid
kill -9 -`cat $PID_FILE`
    - rm $PID_FILE
Correct:

export PID_FILE=/opt/SUNWwbsvr/https-admserv/logs/scheduler.pid
kill -9 `cat $PID_FILE`
     rm $PID_FILE