1825793 Members
2257 Online
109687 Solutions
New Discussion

Re: IGNITE-UX

 
Kwahae_1
Regular Advisor

IGNITE-UX

I am tryibg to recover an HP-UX 11i V1 box on a similar box but with different disk types and sizes. I have managed to restore vg00 from the ignite tape. How do I create the rest of the user application file systems so I can restore them using frecover?
5 REPLIES 5
James R. Ferguson
Acclaimed Contributor

Re: IGNITE-UX

Hi:

> How do I create the rest of the user application file systems so I can restore them using frecover?

From scratch. That is, 'pvcreate', 'vgcreate', 'lvcreate', and 'newfs' to build what you need where you need it.

Regards!

...JRF...
Kwahae_1
Regular Advisor

Re: IGNITE-UX

Can I use SAM for this?
Johnson Punniyalingam
Honored Contributor

Re: IGNITE-UX

Yes, You can,

but, its upto you my opion better follow has below, if you are not ok with commands you can use SAM

# pvcreate /dev/rdsk/cxtxdx
# vgcreate /dev/vgxx /dev/dsk/cxtxdx
# lvcreate -L /dev/vgxx/lvolxx
# mount /dev/vgxx /mount_point
# frecover

can you post the output of "/etc/fstab" so that we can suggest better for your application file_system mount point,


Thanks,
Johnson
Problems are common to all, but attitude makes the difference
Kwahae_1
Regular Advisor

Re: IGNITE-UX

# cat /etc/fstab
# System /etc/fstab file. Static information about the file systems
# See fstab(4) and sam(1M) for further details on configuring devices.
/dev/vg00/lvol3 / vxfs delaylog 0 1
/dev/vg00/lvol1 /stand hfs defaults 0 1
#/dev/vg00/lvol4 /tmp vxfs delaylog 0 2
/dev/vg00/lvol5 /home vxfs delaylog 0 2
/dev/vg00/lvol6 /opt vxfs delaylog 0 2
/dev/vg00/lvol7 /usr vxfs delaylog 0 2
/dev/vg00/lvol8 /var vxfs delaylog 0 2
#/dev/vgora2/oralv5 /oratmp vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgora/oralv1 /u0 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgora/oralv2 /u1 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgora/oralv3 /u2 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgora/oralv4 /u3 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgora/oratmp /tmp vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vgora/oralvtmp /oratmp vxfs defaults 0 2
/dev/vg00/lvol9 ... swap pri=0 0 0
Johnson Punniyalingam
Honored Contributor

Re: IGNITE-UX

# ioscan -fnC disk --> to check all the disk CLAIMED

# strings /etc/lvmtab --> output will show you what are the disk assciated to /dev/vgora

# vgdisplay -v /dev/vgora |more --need output, using this out put we can find what are associatred "Pshyical_volume"

Than start pvcreate,vgcreate,lvcreate,frecover,

Thanks,
Johnson
Problems are common to all, but attitude makes the difference