- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Packages
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 02:03 AM
03-02-2006 02:03 AM
package configuration
and package contol script ( run/start script)
Now in the configuration template u just specify the packages different policies and all that and in control script u specify how to start a process and how to halt it.
So, when i am making a package for any application i just have to specify only these 2 ?. I mean if i am working with oracle package, i know there are different toolkits that make up the package. But the bottom line is that a package is only monitoring the processes of a particular application, nothing else. Because the data is in the shared volume...
I just want to make sure my understanding is right. Kindly comment on oracle pacakages or any package which needs a special toolkit. Also on my understanding.
Thanks alot.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 02:06 AM
03-02-2006 02:06 AM
SolutionThis is what this thread talks about.,
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=388526
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 02:11 AM
03-02-2006 02:11 AM
Re: Packages
This link maybe useful
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=559721
Rgds
HGN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 02:12 AM
03-02-2006 02:12 AM
Re: Packages
The toolkits just provide "canned" control scripts - so you don't have to re-invent the wheel so to speak.
You can also have a third file - a monitoring script - to monitor processess...
For example, I created a LP Spool package.
I have:
iprprt.cfg
iprprt.cntl
lp-script
My customer defined commands:
function customer_defined_run_cmds
{
# ADD customer defined run commands.
: # do nothing instruction, because a function must contain some command.
/etc/cmcluster/IPRPRT/lp-script start
test_return 51
}
function customer_defined_halt_cmds
{
# ADD customer defined halt commands.
: # do nothing instruction, because a function must contain some command.
/etc/cmcluster/IPRPRT/lp-script shut
test_return 52
}
In the cfg file:
SERVICE_NAME iprprtpkg_mon
SERVICE_FAIL_FAST_ENABLED NO
SERVICE_HALT_TIMEOUT 300
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 02:21 AM
03-02-2006 02:21 AM
Re: Packages
And if any one could send me all the package files concerning oracle or any other package which has a toolkit that would automatically earn him a 10 :).
U guys are the best, thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 02:31 AM
03-02-2006 02:31 AM
Re: Packages
However, if all you want to do is start oracle, just modify the line:
/etc/cmcluster/IPRDBCI/sapdbci.cntl startDBCI IPR
to whatever you need to start oracle - something like:
su - oracle -c "start_all.sh"
Rgds...Geoff