- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Need a refresher
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-19-2002 03:30 PM
03-19-2002 03:30 PM
Halt the package.
Halt the node.
Perform a vgchange -c n vgname
Perform a vgchange -a y vgname
remount file sys on logical vol
After the work is done:
umount filesys
vgchange -a n vgname
vgchange -c y vgname (since the cluster will still be running)
restart the node
Any tips or things I might have missed?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2002 03:46 PM
03-19-2002 03:46 PM
Re: Need a refresher
I would simply halt the package then do a vgchange -a e. The vgchange -c n is not needed
as long as you have not halted the node.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2002 03:50 PM
03-19-2002 03:50 PM
Re: Need a refresher
I do understand when I halt the package, it would deactivate the vg, I just wanted to be sure...
Mike-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2002 03:56 PM
03-19-2002 03:56 PM
SolutionI am saying, leave the node as part of a running cluster. Don't do the cmhaltnode. Your box can then act as an adoptive node for other failed packages. If for some reason, you actually need to shutdown that node then your first method is correct but if all you are going to do is upgrade Oracle then then is no need to halt the node but simply halt the package. By the way, don't forget to re-enable package switching when you are finished.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 10:39 AM
03-25-2002 10:39 AM
Re: Need a refresher
I used the same way that you describe, but we wrote 2 scripts to help us to mount and umount the filesystem. First you need to halt you package:
- cmhaltpkg
- to mount your filesystems you can use the script below:
vgchange -c n /dev/
vgchange -a y /dev/
# Check the filesystem that you will mount
fsck -F vxfs /dev/
# Mount the filesystem
mount /dev/
# Configure Cluster's IP Address if you need
ifconfig lan0:1 151.87.20.10 up
- To umount your filesystems that you mount with the script below:
# Unconfigure Cluster's IP Address that you
# configured before
ifconfig lan0:1 151.87.20.10 down
# Umount the Filesystem
umount /home
# Activate Cluster in VG
vgchange -a n /dev/
vgchange -c y /dev/
- Start the package:
cmrunpkg
In the case above, I consider that MC Service Guard daemons are running.
Bye,
T??nia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 12:26 PM
03-25-2002 12:26 PM
Re: Need a refresher
We wound up not having to mount any of the filesystems that were activated in the packages, since the only fs's being mounted were the actual database files and not the files in ORAHOME (which I found out was in vg00).. Only had to nfs mount some filesystems from remote box that contained the files that the dba required.. So actually, just halting and restarting the packages was all I needed to do..
Thanx for your input..
Mike-