Previous Topic: Restart the CAM ServiceNext Topic: Using the Init Utility


How to Restart Automatically the CAM Service

If you want to automatically start the CAM Service after rebooting a machine, you can use the init or rc utilities.

To start the CAM Service automatically after rebooting a UNIX server, verify the following:

For example, a typical Start shell script appears as follows:

#!/bin/sh
# @(#)install 3.24 10:15:49 98/05/29
# Date Created: Tue Jul 20 11:57:34 WET DST 2004
.
.
.
.
 # Start CA Message Queuing Server
su $AGENT_OWNER -c /export/home/cam/cam/scripts/rc
If you add the commands above, the Start shell script appears as follows:
 #!/bin/sh
# @(#)install 3.24 10:15:49 04/05/29
# Date Created: Tue Jul 20 11:57:34 WET DST 2004
.
.
.
.
PATH=$PATH:$CAIGLBL0000/bin
export PATH
# Start CA Message Queuing Server
su $AGENT_OWNER -c /export/home/cam/cam/scripts/rc