- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- relocate vxfs filesystem
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
09-24-2007 06:20 PM
09-24-2007 06:20 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 06:34 PM
09-24-2007 06:34 PM
Re: relocate vxfs filesystem
I believe you can present the same luns to rx2660 too,but you may need to enable VGs manually .
Export LVM configuration on rx6600.
-------
#vgexport -v -s -p -m /etc/lvmconf/vg_name.map vg_name
#vgchange â a n vgname
--------------
On rx2660 :-
# cd /etc/lvmconf
# rcp node1:/etc/lvmconf/vg_name .
# mkdir /dev/vg_name
# mknod /dev/vg_name/group c 64 0x020000
# vgimport â v â s â m /etc/lvmconf/vg_name vg_name
# vgchange -a r vg_rating
# vgcfgbackup /dev/vg_rating
# vgchange -a n vg_rating
Modify /etc/lvmrc
AUTO_VG_ACTIVATE=0
---------------
Reenable vg_name on rx6600
#vgchange â a y vgname
If you want to shift the vg`s then deactivate from one node and activate on other node.
Aneesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 06:52 PM
09-24-2007 06:52 PM
Re: relocate vxfs filesystem
Thnx for your reply.Pls see by query in brackets:
Export LVM configuration on rx6600.
-------
#vgexport -v -s -p -m /etc/lvmconf/vg_name.map vg_name ( what is vg_name.map ?)
#vgchange â  a n vgname ( I see some junk characters between vgchange & n. Pls can you resend this line)
--------------
On rx2660 :-
# cd /etc/lvmconf
# rcp node1:/etc/lvmconf/vg_name ( what does this do?)
# mkdir /dev/vg_name
# mknod /dev/vg_name/group c 64 0x020000
# vgimport â  v â  s â  m /etc/lvmconf/vg_name vg_name ( I see some junk characters between vgimport and /etc/lvm.... Pls can you resend this line)
# vgchange -a r vg_rating ( what does thi do?)
# vgcfgbackup /dev/vg_rating ( what does thi do?)
# vgchange -a n vg_rating( what does thi do?)
Modify /etc/lvmrc
AUTO_VG_ACTIVATE=0
---------------
Reenable vg_name on rx6600
#vgchange â  a y vgname( what does thi do?)
If you want to shift the vg`s then deactivate from one node and activate on other node.( what do you mean by this?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 06:58 PM
09-24-2007 06:58 PM
Re: relocate vxfs filesystem
I mean dont activate Volume groups on both node at a time in read/write mode ,it may cause filesystem corruption .
Aneesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 07:13 PM
09-24-2007 07:13 PM
Re: relocate vxfs filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 07:41 PM
09-24-2007 07:41 PM
Solution>#vgexport -v -s -p -m /etc/lvmconf/vg_name.map vg_name ( what is vg_name.map ?)
On rx6600, copy the mapping of the volume group group to a file vg_name.map , This file contains a description of the volume group and its associated logical volume(s) (if any).
>#vgchange -a n vgname ( I see some junk characters between vgchange & n. Pls can you resend this line)
vgchange -a n vg_name --Deactivating the volume group
># rcp rx2660:/etc/lvmconf/vg_name ( what does this do?)
Coping the map file to rx2660
># vgimport -v -s -m /etc/lvmconf/vg_name vg_name ( I see some junk characters between vgimport and /etc/lvm.... Pls can you resend this line)
#vgimport -v -s -m /etc/lvmconf/vg_name.map vgname
># vgchange -a r vg_name ( what does thi do?)
Activate the volumegroup in read only mode
># vgcfgbackup /dev/vg_rating ( what does thi do?)
vgcfgbackup - create or update LVM volume group configuration backup file
> # vgchange -a n vg_rating( what does thi do?)
Deactivate the volume group on rx2660
> #vgchange -a y vg_name( what does thi do?)
Activate the volume group on rx6600
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 08:43 PM
09-24-2007 08:43 PM
Re: relocate vxfs filesystem
If I have clarified your queries ,please take care to assign points ... :|)
/Aneesh