- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- adding a new disk to cluster.
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-21-2006 03:28 PM
03-21-2006 03:28 PM
I have two clustered servers with SG, SGE RAC, Oracle 9iR2. Is it possible to add another SLVM to cluster for the purpose of additional space for storing oracle data?how?
Please advice.
Hasan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2006 04:32 PM
03-21-2006 04:32 PM
Solutionmkdir /dev/vgxx
mknod /dev/vgxx/group c 64 0x0y000
Use the correct minor number
vgimport -sv -m /tmp/vgxx.map /dev/vgxx
Check it and you should be done with it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2006 05:13 PM
03-21-2006 05:13 PM
Re: adding a new disk to cluster.
Certainly you can.
To be available to the cluster, the disk needs to be connected to shared storage.
This can be fiber or scsi connected disk.
Depending on what type of storage you have, you may have to reboot to get the storage recognized.
If you wish you can extend an existing volume group to include the space.
vgextend /dev/vg02 /dev/dsk/c5t7d0
Your vg name and disk may vary.
You will want to save vg configuration after making this change.
Report any errors you get along the way. ITRC will help you fix them.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2006 05:29 PM
03-21-2006 05:29 PM
Re: adding a new disk to cluster.
Yes you can do that. But you will have to plan in either of the two ways.
1. Extending etsinting VGs and file systems to the new disks.
2. Add new file systems to the VGs.
Adding more file systems will require to change cluster config as well whereever doing it using first method will not require that.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2006 09:23 PM
03-21-2006 09:23 PM
Re: adding a new disk to cluster.
Thank you for answers.
In Oracle RAC, we shared a LVM between two nodes.
If I want to add another disk (LUN,Vsid) to VG, what should I do? (The VG is in shared mode, Should I extend VG with new disk on both the servers?)
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2006 09:33 PM
03-21-2006 09:33 PM
Re: adding a new disk to cluster.
1st node
Extend VG.
vgextend /dev/vgxx /dev/dsk/cxtxdx
lvextend -L "new_size_in_MB" /dev/vgxx/lvolx
fsadm /mount_point -> (you need to have onlinejfs, else unmount and extendfs)
vgexport -pvm /tmp/vgxx.map /dev/vgxx
rcp/ftp/scp /tmp/vgxx.map to another node
2nd Node
mkdir /dev/vgxx
mknod /dev/vgxx/group c 64 0x0y0000
vgimport -vs -m /tmp/vgxx.map /dev/vgxx
In fact, even if you do not import it, it is OK. SG takes care of it, when it fails over. but better to do it.