- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Fibre channel new server
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-26-2002 01:08 PM
09-26-2002 01:08 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2002 01:15 PM
09-26-2002 01:15 PM
Re: Fibre channel new server
Yes. Except to make sure that the interfaces of the cables are compatible as you mentioned.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2002 01:20 PM
09-26-2002 01:20 PM
SolutionIt's likely that your device files will change. Hence, you should plan to 'vgexport' and 'vgimport'. For a task like this, you might want to use the '-f' option to capture your physical paths during export. Edit the file after the export and change the old paths to their new counterpars. Then apply it with the -f' option during the import. See the man pages for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2002 01:28 PM
09-26-2002 01:28 PM
Re: Fibre channel new server
Collect this information, especially the vgexport information, in *preview* mode only.
# vgdisplay -v >/tmp/vgdisplay.out
# vgexport -m myvg.mapfile -p -v /dev/myvg (for each volume)
Use the vgimport command to import the volume groups on your new machine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2002 02:22 PM
09-26-2002 02:22 PM
Re: Fibre channel new server
It's a matter of choice but I prefer to use the following when I KNOW the device files will change
vgexport -m /etc/lvmconf/vg_name.map -s -p -v /dev/vg_name
Then move the map file to the new system
This will NOT export (remove) the VGs but imbeds the VGid in the file so that when you import the VG it will search & find it on the array.
NOTE: You have to create the /dev/vg_name directory & the group file, via mknod, BEFORE you can run vgimport on the new system - EX:
mkdir /dev/vg_name
cd /dev/vg_name
mknod group c 64 0x030000
vgimport -m /etc/lvmconf/vg_name.map -s -v /dev/vg_name
This way you don't have to edit nor remember anything (except xfer the map file to new system ;^)
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 07:48 AM
09-27-2002 07:48 AM
Re: Fibre channel new server
Have not used EMC under Fibre Channel, but I imagine there may be some LUN Security set on the Array (similar to XP512). Check if it uses the WWN of the Fibre Card for identification and security; if so, you may need to update the security before the new Fibre Cards with new WWNs can see the disks.
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 07:59 AM
09-27-2002 07:59 AM
Re: Fibre channel new server
with the mapping changes and a clean vgexport / vgimport using the provided examples, you should be able to cleanly move the LUNs. For us the Mapping updates was provided as maintenance support by the Vendor... you do not want to mess up the LUN mapping.
Ted