Operating System - HP-UX
1831131 Members
2724 Online
110020 Solutions
New Discussion

Problems to create disk EMC.

 
Eberno
Regular Advisor

Problems to create disk EMC.

My friends,

I have problems, for create new disk EMC , in my server.
I try this pv create -f /dev/vgxx/c2t3d4
but the mknod is wrong.
Please anybody help me.
4 REPLIES 4
Jeff_Traigle
Honored Contributor

Re: Problems to create disk EMC.

Your device file isn't under a VG directory. It should be:

pvcreate /dev/rdsk/c2t3d4
--
Jeff Traigle
Eberno
Regular Advisor

Re: Problems to create disk EMC.

I have one disk EMC , and I need put the same data in other disk EMC, but i have that create the disc.
How to do?
sathish kannan
Valued Contributor

Re: Problems to create disk EMC.

Hello Eberno,
as already mentioned you are using wrong device file. you should create disks using
pvcreate /dev/rdsk/CxtXdX and not /dev/vgXX/cXtXdX.

your second problem, Do you want to mirror the disk? If yes, use the following steps.

1. pvcreate /dev/rdsk/CxtXdX (with your new disk)
2. vgextend /dev/vgxx /dev/dsk/CxtXdX (With your new disk)
3. use lvextend command to copy the logical volumes
#lvextend -m 1 /dev/vgxx/LVNAME /dev/dsk/CxtXdX.

If you are note sure with the steps, use SAM.

regards
Sathish
Don't Think too much
Eberno
Regular Advisor

Re: Problems to create disk EMC.

My friend,

Thank you, for your help.

by by