Hello all,
I've created a shutdown script and startup scritp for Portal. This script is executed at midnight for a backup tool.
This is stop script.
@ECHO ON
date /t >> log.txt
net stop SAPJ2P_00 >>log.txt
net stop SAPJ2P_01 >>log.txt
net stop SAPOsCol >> log.txt
This is startup script.
@ECHO ON
date /t >> log.txt
net start SAPOsCol >> log.txt
net start SAPJ2P_00 >> log.txt
net start SAPJ2P_01 >> log.txt
When I arrive at morning, the Portal is partially up (green) and partially down(yellow)
Is this shutdown and startup order corrects?
Thanks,
Andre