- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Logical Volume need to recover
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
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
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-30-2010 09:06 PM
тАО04-30-2010 09:06 PM
We have one HP R-9000, D390 server with HPUX B11.00,
its having 2 internal HDD & one external stotage having 2 HDD ( 2*36GB).
file system crashed due to power problem.
So, we need to reload the system.
But, the thing we have the data in the external storage. I don't have lvmtab file.
Before File system crash, 2 HDD created as a PV and thats were in vg02 having one logical volume lvol0.
mounted as /oradb.
I need the data which is in the /oradb.
I've reloaded the OS.
How to recover? pleaes help me shortly...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-30-2010 10:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-30-2010 11:17 PM
тАО04-30-2010 11:17 PM
Re: Logical Volume need to recover
where u can find the vg02.mafile and trying doing vgimport to re-create the lv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2010 09:22 AM
тАО05-01-2010 09:22 AM
Re: Logical Volume need to recover
But I got the solution.
1. mkdir /dev/vg02 ; cd /dev/vg02
2. mknod group c 64 0x010000
3. vgscan -v
4. vgimport -v vg02 /dev/dsk/c0t0d0 /dev/dsk/c0t1d0
5. vgchange -a y vg02
6. mkdir /oradb
7. mount /dev/vg02/lvol1 /oradb
8. edit the /etc/fstab ( take backup also )
No data lose. i got full data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2010 09:25 AM
тАО05-01-2010 09:25 AM
Re: Logical Volume need to recover
Try this:
1. Backup /etc/lvmtab as: mv /etc/lvmtab /etc/lvmtab.good
vgscan
2.If this procedure does not find vg on the external disks, do the following:
ioscan -kfnCdisk and find your external disks
mkdir /dev/vg02
mknod /dev/vg02/group c 64 0x020000
vgimport /dev/vg02 /dev/dsk/xxx /dev/dsk/yyy
where yyy and xxx are actual disk names.
vgchange -a y vg02
mount /dev/vg02/lvol1 /oradb
HTH