- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- device file name after putting SAN switch in betwe...
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
04-11-2006 09:33 PM
04-11-2006 09:33 PM
device file name after putting SAN switch in between server and storage
I need to confirm whether device file naming will change or not in following case with some logic.
existing configuration:
one L3000 and one rp4440 server connected directly to CX500 EMC storage ( fiber cable directly connected from storage to server)
- 8 LUNs are created in CX500 storage and 4 volume groups are configured on it.
New configuraiton:
- Two nos of brocade switches will be installed in between servers and CX500 storage
- please confirm the same asap.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 09:48 PM
04-11-2006 09:48 PM
Re: device file name after putting SAN switch in between server and storage
Be prepared to vgexport and later vgimport your VGs.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 09:59 PM
04-11-2006 09:59 PM
Re: device file name after putting SAN switch in between server and storage
Can you please let me know some procedure.
what exact command need to use for vgexport and vgimport
- do i need to keep copy of some of the files which will help in case of any problem while vgimport
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 10:04 PM
04-11-2006 10:04 PM
Re: device file name after putting SAN switch in between server and storage
vgexport -p -s -m /tmp/vg01map /dev/vg01
Then, after connecting through the switch, run vgimport like this:
vgimport -s -m /tmp/vg01map /dev/vg01
The -s option will scan the devices and determine which ones make up vg01 (or whatever vg you are working with).
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 10:20 PM
04-11-2006 10:20 PM
Re: device file name after putting SAN switch in between server and storage
I need to confirm - do I need to run #vgexport
- please confirm this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 11:44 PM
04-11-2006 11:44 PM
Re: device file name after putting SAN switch in between server and storage
yes you have to do vgexport otherwise system will not allow to import same VG again.
after creating map file,
1.umount all volumes in that vg
2.vgchange -a n vgxx
2.vgexport /dev/vgxx
After connecting the switches,
1.find the new path using
ioscan -fnCdisk
insf -e
2.mkdir /dev/vgxx
mknod /dev/vgxx/group c 64 0x0xxxxx
vgimport -m mapfile /dev/vgxx /dev/dsk/cxtxdx (one of the new path to LUN)
3.vgchange -a y vgxx
4.mount -a (if the new vg name is different,u have to modify /etc/fstab accordingly)
-sysadm-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 12:09 AM
04-12-2006 12:09 AM
Re: device file name after putting SAN switch in between server and storage
can I use map file created earlier with option -m
- also does #vgexport
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 05:00 PM
04-12-2006 05:00 PM
Re: device file name after putting SAN switch in between server and storage
New Disk names ar edifferent.Then how can you use the same old disk names for importing VG.
vgexport will not remove anything from disk.It removes VG entry from /etc/lvmtab and removes folder /dev/vgXX and update the lvm configuration.
Before doing vgexport,i suggest you to save a copy of
/etc/lvmtab
/etc/fstab
Outputs of following commands
bdf
ioscan -fnCdisk
ls -l /dev/vgXX
-sysadm-