- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Bootable disks failed, moving the data to other se...
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
11-22-2008 02:33 AM
11-22-2008 02:33 AM
Leaving bootable disks we want to destroy data on server2 and restore the data(server 1) from Tape. We have full backup for both the servers Can you please send me the proceedure.
We have to recreate 2 volume groups and logical volumes on server 2.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 03:53 AM
11-22-2008 03:53 AM
Re: Bootable disks failed, moving the data to other server
Following thing which are important before starting installation;
1) Ignite backup for server 1
2) vg configuration backups of both VG's.
if you dont have this you need to frshly install OS. And recreate both VG's with own specification of size for respective LV's in vG's.
if you have ignite just restore the ignite bckup to server 2. Aftwer this restore vg configuration backup to disks you to restore (dreate vG's) using vgcfgrestore ( assuminbg that both VG's which you want to restore are non root VG's)
feel free to post problem if any..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 06:11 AM
11-22-2008 06:11 AM
Re: Bootable disks failed, moving the data to other server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 06:25 AM
11-22-2008 06:25 AM
Solutiondata means--> are you refering to "vg01" apart from root file system..?
can you post-output for bdf,vgdisplay -v
if its from apart from root file system, steps are simple
Server2,
========
# umount /filesystem under vg01
# lvremove /logical_volume under vg01
# lvcreate -L logical Volume under vg01
# mount /file_systems under vg01 --> as per the file_system (same as the Server1)
Than start to restore the data from tape, on the new-created logical volumes under server2.
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 07:19 AM
11-22-2008 07:19 AM
Re: Bootable disks failed, moving the data to other server
As i can understand from your last post; you want to earse all the data on VG other than root VG.
Considering this scenario;
We will assume following things for non root VG;
OLD VG details:
VG Name: vg01
Lvname in VG01: /dev/vg01/lvol1 monted on /gan and /dev/vg01/lvol2 mounted on /shree
Disk included in VG01: /dev/dsk/c0t1d0 (assuming 18 GB disk)
NEW VG Details:
VG Name: vgnew
LV Name: lvnew1
2nd LV Name: lvnew2
disk: /dev/dsk/c0t1d0 (same as above)
Now The STEPS:
-# umount /gan
-# umount /shree
-# vgchange -a n vg01
-# pvcreate -f /dev/rdsk/c0t1d0 (ALL DATA WILL BE LOST)
-# vgcreate newvg /dev/dsk/c0t1d0
-# lvcreate -L 9000 -n lvnew1 vgnew
-# lvcreate -L 9000 -n lvnew2 vgnew
-# newfs -F vxfs /dev/vgnew/lvnew1
-# newfs -F vxfs /dev/vgnew/lvnew2
After this you can proceed for data restore from tape.
Reply back if you face any problem
cheers..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 04:25 PM
11-22-2008 04:25 PM
Re: Bootable disks failed, moving the data to other server
vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
frecover(1048): I/O error in write of file /dev/vg01/data_0
-rw-r--r-- sybase sybase /dev/vg01/data_0
frecover(1073): frecover of data_0 failed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 06:17 PM
11-22-2008 06:17 PM
Re: Bootable disks failed, moving the data to other server
frecover(1048): I/O error in write of file /dev/vg01/data_0
-rw-r--r-- sybase sybase /dev/vg01/data_0
frecover(1073): frecover of data_0 failed
it appears that you "recovered" the data to a non-existent device file, so it went into the /dev directory and filled the root drive.
either you missed something creating the filesystems (can't tell since you didn't provide any details), or you goofed something up creating the backup (again no details).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 07:56 PM
11-22-2008 07:56 PM
Re: Bootable disks failed, moving the data to other server
>>>vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
frecover(1048): I/O error in write of file /dev/vg01/data_0
-rw-r--r-- sybase sybase /dev/vg01/data_0
frecover(1073): frecover of data_0 failed<<
Check step1 :- bdf --> look for any file system full reached 100%
Check step2 :- frecover command you need point the
Thx,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2008 10:00 PM
11-22-2008 10:00 PM
Re: Bootable disks failed, moving the data to other server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2008 07:54 AM
11-23-2008 07:54 AM
Re: Bootable disks failed, moving the data to other server
frecover(1048): I/O error in write of file /dev/vg01/data_0"
"Check step1 :- bdf --> look for any file system full reached 100%"
well, it told you "/dev/root" was full....that's another name for "/". IIRC, tt's usually created when you when you drop back to single user mode from the normal run level, or if you transition from single user mode to the std run-level without a re-boot...I don't recall which exactly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2008 03:43 AM
11-24-2008 03:43 AM
Re: Bootable disks failed, moving the data to other server
LV Name /dev/vg01/lv22
LV Status available/syncd
LV Size (Mbytes) 200
LV Name /dev/vg01/lv23
LV Status available/syncd
LV Size (Mbytes) 200
vxfs: mesg 001: vx_nospace
- /dev/root file system full (1 block extent)
frecover(1048): I/O error in write of file /dev/vg01/data_0
-rw-r--r-- sybase sybase /dev/vg01/data_0
frecover(1073): frecover of data_0 failed
our root file system is not full(58%).
I have used the below command for restore, can you please send me the right command to restore data for the above lvs.
And we have created vg01 on /dev/, as per the server 1, is it correct?
#frecover -xvf /dev/rmt/0m -i /dev/vg01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2008 04:04 AM
11-24-2008 04:04 AM
Re: Bootable disks failed, moving the data to other server
Please follow has below
>>vxfs: mesg 001: vx_nospace
- /dev/root file system full (1 block extent)
frecover(1048): I/O error in write of file /dev/vg01/data_0
-rw-r--r-- sybase sybase /dev/vg01/data_0
frecover(1073): frecover of data_0 failed<<
step1 :-
=====
# mv /etc/mnttab /etc/mnttab.old
# mount -a
step2 :-
>>>>frecover(1048): I/O error in write of file /dev/vg01/data_0<<
<<
above error is due to point to logical volume ,
>>frecover(1048): I/O error in write of file /dev/vg01/data_0<<
# frecover -xvf /dev/rmt/0m -i /new_created_mount_piont
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2008 07:23 AM
11-24-2008 07:23 AM
Re: Bootable disks failed, moving the data to other server
#frecover -xvf /dev/rmt/0m -i /dev/vg01/lv90
Data was not copied inot the corresponding logical volume.
/dev/vg01> frecover -xvf /dev/rmt/0m -i /dev/vg01/lv90
/dev/vg01> bdf lv90
Filesystem kbytes used avail %used Mounted on
lv90 409600 1205 382871 0%
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2008 08:29 AM
11-24-2008 08:29 AM
Re: Bootable disks failed, moving the data to other server
I think you have made some mistake while taking backup of that LV. where it was mounted on old server?? If your LV name is /dev/vg01/lvol1 and if it is mounted on /shree
your command to take the backup of this LV whould be;
-# fbackup -0v -f /dev/rmt/0m -i /shree
not like follwoing command;
-# fbackup -0v -f /dev/rmt/0m -i /dev/vg01/lvol1