Hello World
So recently I was working on a automation project and, as a part of a scheduled work I needed to stop the commvault client Simpana, reboot a server and then safely restart the client, I wanted to make sure that the service was only started when I told it to, if you use one of the following
– Simpana stop
– Galaxy stop
when the service is restarted the simpana services are started back up ( as expected), the way to achieve this is simple :
Disable the services at boot
chkconfig Galaxy off
reboot , do what you need to do and then
chkconfig Galaxy on
service Galaxy start
That is all 🙂