- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to mount a NetApp Volume currently being used ...
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
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
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
05-25-2012 07:40 AM
05-25-2012 07:40 AM
How to mount a NetApp Volume currently being used on another host
Hi All
I have a 11.23 server with the following file system from a NetApp:
/dev/vg05/lvol1 1551695872 1240285583 291947159 81% /xyz
I need to unmount this file system , and mount this on another server running 11.31.
The unmounting bit is easy, them I might have to lvreduce/lvremove that lvol, them the NetApp admin will unmap this and map it onto another server.
But because this LUN has already data on it and I want to be able to see this data on another server, HOW do I set it up?
regards
FR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2012 08:17 AM - edited 05-25-2012 08:19 AM
05-25-2012 08:17 AM - edited 05-25-2012 08:19 AM
Re: How to mount a NetApp Volume currently being used on another host
Do NOT lvreduce or lvremove on the current server. That WILL wipe out any data that is there.
On the current server do the following:
# vgexport -p -v -s -m /tmp/vg05.map /dev/vg05
# umount /xyz
# vgchange -a n vg05
Now have your Netapp admin present that storage / LUN to your other server.
On the 2nd server:
# ioscan -fnC disk
to see if you see the storage.
# insf -e
to create the disk device files.
Now create the /dev/vg05 (or whatever you want to name it) directory and then use mknod to create the group file.
# mkdir /dev/vg05
# mknod /dev/vg05/group c 64 0x050000
Use whatever minor number is available and appropriate.
Copy the /tmp/vg05.map from you other server to this server.
Now vgimport the vg.
# vgimport -s -v -m /tmp/vg05.map /dev/vg05
# mount /dev/vg05/lvol1 /xyz
Now your data should be available.
Don't forget to update /etc/fstab on this server so it mounts automatically.
- Tags:
- vgexport
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 04:54 AM
08-01-2012 04:54 AM
Re: How to mount a NetApp Volume currently being used on another host
What if the luns were previuosly mounted on a solaris system, How can I mount on an HP-UX server 11.31?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 10:11 AM - edited 08-01-2012 12:54 PM
08-01-2012 10:11 AM - edited 08-01-2012 12:54 PM
Re: How to mount a NetApp Volume currently being used on another host
>What if the luns were previously mounted on a solaris system?
What type of filesystem? I doubt they are compatible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 12:34 PM
08-01-2012 12:34 PM
Re: How to mount a NetApp Volume currently being used on another host
Hi
Thanks for your reply, I guess is not going to work, because in solaris there were a UFS file system but on HP-UX, they will be vxfs....
So its not going to work right?
FR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 12:54 PM
08-01-2012 12:54 PM
Re: How to mount a NetApp Volume currently being used on another host
I suppose you could mount it as read only HFS and see?
Consult the tag cloud:
http://h30499.www3.hp.com/t5/tag/ufs/tg-p/category-id/itrc-117
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 01:10 PM
08-01-2012 01:10 PM
Re: How to mount a NetApp Volume currently being used on another host
Hi
From one the links you provide, it says that HFS its only being used on a PA-RISC systems, so I am using an itanium rx4640 system, so nothing I ca do right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 01:23 PM
08-01-2012 01:23 PM
Re: How to mount a NetApp Volume currently being used on another host
How does the NetApp filer see the volume? Is this presented via Fibre Channel? iSCSI? I'm wondering if the NetApp filer could present the volume to the HP-UX via NFS and have the HP-UX box make sense of the data.
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 01:49 PM
08-01-2012 01:49 PM
Re: How to mount a NetApp Volume currently being used on another host
Its presented via fiber
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2012 08:31 PM
08-01-2012 08:31 PM
Re: How to mount a NetApp Volume currently being used on another host
>it says that HFS its only being used on a PA-RISC systems, so I am using an integrity rx4640 system
I think that was for /stand. You still may be able to choose when you create them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2012 12:37 AM
08-03-2012 12:37 AM
Re: How to mount a NetApp Volume currently being used on another host
These new LUNS from NetApp will have to be LVM initialized, so pvcreate will destroy the data on it. So
Is there any other way to present that in order to view it as a HFS file systems?