Operating System - HP-UX
1838144 Members
4916 Online
110124 Solutions
New Discussion

Re: mc/sg: package control file's service name

 
SOLVED
Go to solution
singvey
Frequent Advisor

mc/sg: package control file's service name

about the package control file 。
what is the function about
#SERVICE_NAME[0]=""
#SERVICE_CMD[0]=""
#SERVICE_RESTART[0]=""
?

why should we need the service_name????


Does the service_name mean that the oracle instance ?


thank you .
3 REPLIES 3
Geoff Wild
Honored Contributor
Solution

Re: mc/sg: package control file's service name

Thats where you define a service...

I would read http://docs.hp.com/en/B3936-90079/index.html

Tells you a lot.

It means a service - like for example, the Oracle listener - if it dies - do you want to fail over - or just restart it.


Rgds...Geoff

Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Kent Ostby
Honored Contributor

Re: mc/sg: package control file's service name

Any process that you want Serviceguard to start AND monitor.

Any service you put in here needs to be something that you expect to keep running because if it quits, the package will fail.

So its not the place to put one time commands.

Those would go in the customer_defined_run commands.

I would suggest reading the manual listed as well.
"Well, actually, she is a rocket scientist" -- Steve Martin in "Roxanne"
singvey
Frequent Advisor

Re: mc/sg: package control file's service name

thank you