Hi Alan
About the startup and shutdown script for your DE R12 Server, you might implement such a script in /etc/init.d on your different platforms.
This is just a sample you'll have to customize it for your environment and test it first by executing it from /etc/init.d
When it works for you by executing it from /etc/init.d, either create symbolic links in your different /etc/rcx.d directories to call it based on the Unix/Linux run levels, or depending on the platform implement it as a service
For example , Linux moved away from using init.d to service. You may want to consider updated scripts for upstart scripts.
And finally, simulate a shutdown/boot sequence and also don't forget the reboot sequence
...............................................................................................................
#!/bin/sh
DEHOME=/opt/CA/WorkloadAutomation_R12
PATH=$PATH:$DEHOME/bin
export PATH
rc=0
case "$1" in
start)
$DEHOME/bin/startServer
rc=$?
;;
stop)
$DEHOME/bin/stopServer
rc=$?
;;
esac
exit $rc
...............................................................................................................
Regards
Jean Paul