- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- package switching enablement
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
02-26-2002 02:00 PM
02-26-2002 02:00 PM
Thanks in advnace.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:06 PM
02-26-2002 02:06 PM
Re: package switching enablement
Default settings is always disabled.
To make a package autostart on its primary server when it joins a cluster,
the following must set.
1. /etc/rc.config.d/cmcluster AUTOSTART_CMCLD=1
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:06 PM
02-26-2002 02:06 PM
Re: package switching enablement
You already have your answer; cmmodpkg -e my_package.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:08 PM
02-26-2002 02:08 PM
Re: package switching enablement
Hi again,
Aslo note that
The FAILBACK_POLICY parameter of the package configuration file should be set to AUTOMATIC
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:16 PM
02-26-2002 02:16 PM
Re: package switching enablement
I get this from cmviewcl -v -p oracleNNMP
PACKAGE STATUS STATE AUTO_RUN NODE
oracleNNMP up running enabled xora000
Policy_Parameters:
POLICY_NAME CONFIGURED_VALUE
Failover configured_node
Failback manual
Script_Parameters:
ITEM STATUS MAX_RESTARTS RESTARTS NAME
Service up 3 0 oracle_NNMP
Subnet up 10.85.239.0
Node_Switching_Parameters:
NODE_TYPE STATUS SWITCHING NAME
Primary up disabled xora001
Alternate up enabled xora000 (current)
what i want to change from the command line is switching from disabled to enabled. cmmodpkg -e didn't do it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:30 PM
02-26-2002 02:30 PM
Re: package switching enablement
to enable the package switching once it has failed from the primary to the secondary, you can execute this at command line,
# cmmodpkg -e package_name
this will enable the package switching for the package.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:31 PM
02-26-2002 02:31 PM
SolutionOne time I had the same issue and resolved...try the following
1. The major thing is Check ORACLE is mounted and up and running.. (if the database is down the package will not UP).
2. Check the control log file in /etc/cmcluster/oracleNNMP/oracleNNMP_cntl_log (in your system replae oracleNNMP with package name)
3. Try with node name to force the package to switch like this..
#cmmodpakg -n
hope this will help U out.. In my case the oracle was down and once it is mounted the application package(autosys) was up and running so. check the database...
regards,
Sudalaimani.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:33 PM
02-26-2002 02:33 PM
Re: package switching enablement
e.g.
cmmodpkg -n nodea -n nodeb -e my_package
Man cmmodpkg. It gives a pretty good description of this command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:36 PM
02-26-2002 02:36 PM
Re: package switching enablement
After the problem has been corrected on the failed server you have to run the cmmodpkg -e PKGNAME on it - as well as the current server.
Also it never hurts to use the -n NODENAME on the command line - it can save you time in not having to login to the other server.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 02:40 PM
02-26-2002 02:40 PM
Re: package switching enablement
# cmmodpkg -e -n xora001 oracleNNMP
cmmodpkg : Completed successfully on all packages specified.
# cmviewcl -v -p oracleNNMP
PACKAGE STATUS STATE AUTO_RUN NODE
oracleNNMP up running enabled xora000
Policy_Parameters:
POLICY_NAME CONFIGURED_VALUE
Failover configured_node
Failback manual
Script_Parameters:
ITEM STATUS MAX_RESTARTS RESTARTS NAME
Service up 3 0 oracle_NNMP
Subnet up 10.85.239.0
Node_Switching_Parameters:
NODE_TYPE STATUS SWITCHING NAME
Primary up enabled xora001
Alternate up enabled xora000 (current)
That's what I needed! Thanks guys!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 03:02 PM
02-26-2002 03:02 PM
Re: package switching enablement
Thanks,
regards,
Sudalaimani.S