- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SAP APO Livecache Multiple instance and MC-Service...
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
12-01-2003 04:38 AM
12-01-2003 04:38 AM
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 05:52 AM
12-01-2003 05:52 AM
SolutionWhat we do is check for QA in our Prod control script:
function customer_defined_halt_qa
{
print "Checking if qapkg is running"
STATE=`cmviewcl | grep iqa | awk '{ print $2 }'`
if [[ $STATE = "down" ]]
then
echo "QA is down...starting up IPR"
else
if [[ $STATE = "up" ]]
then
QA=`cmviewcl | grep qa | awk '{ print $5 }'`
print "QA is running...on the current host: \c"
print ${QA}
if [[ ${QA} = $(/usr/bin/hostname) ]]
then
print "halting qapkg on ${QA}"
/usr/sbin/cmhaltpkg qapkg
fi
fi
fi
}
Then in the main program area:
# Test to see if we are being called to run the package, or halt the package.
if [[ $1 = "start" ]]
then
print "\n\t########### Node \"$(hostname)\": Starting package at $(date) ###########"
verify_physical_data_replication # add hook for MetroCluster
customer_defined_halt_qa
activate_volume_group
activate_disk_group
customer_defined_fsck_mount
check_and_mount
verify_ha_nfs $1 # add hook for NFS
add_ip_address
get_ownership_dtc
customer_defined_run_cmds
start_services
start_resources
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 05:57 AM
12-01-2003 05:57 AM
Re: SAP APO Livecache Multiple instance and MC-ServiceGuard
The critical point I missed in the initial question was that the QA Livecache is not going to be shut down during the fail over hence the problem.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 06:19 AM
12-01-2003 06:19 AM
Re: SAP APO Livecache Multiple instance and MC-ServiceGuard
1) ensure the environments are completly seperate - IE: both don't use /oracle....
If they both need their own /usr/sap/trans or /APPL - then you may be in trouble...
2) add a third node to the cluster and run QA on that one - and never failover Prod to it....
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2003 07:44 AM
12-01-2003 07:44 AM
Re: SAP APO Livecache Multiple instance and MC-ServiceGuard
Regards,
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 04:54 AM
12-02-2003 04:54 AM
Re: SAP APO Livecache Multiple instance and MC-ServiceGuard
never had APO in my hands, but a few standard-SAPs with SAPDB. Don't they have
seperate Mountpoints for each SID in APO ??
/sapdb/QAS
/sapdb/PRD
So you should be able to use two filesystems with diffrent owners and versions. Just make sure that the numeric ID of the Users are diffrent !
You might need some tricks for the TCP-IP-Server (vserver/x_server) of the database. Not sure, how the port is changed, or if you can run it anyway, even if the PRD DB is not failed over.
As far as SAP is concerned, you need diffrent SAP Instancenumbers between Q and P, so that the SAP dispatcher-port is not blocked when you switch.
Hope this helps
Volker