1833870 Members
1637 Online
110063 Solutions
New Discussion

Re: adding new disks

 
SOLVED
Go to solution
Ravinder Singh Gill
Regular Advisor

adding new disks

We have added new disks to a server. I have already performed insf -e on them. Is the pvcreate supposed to be performed after insf -e? (not before?)
7 REPLIES 7
RAC_1
Honored Contributor
Solution

Re: adding new disks

Put in a disk
insf -ev
ioscan -fnCdisk
Is disk in claimed state??
then pvcreate
then vgextend/vgcreate
There is no substitute to HARDWORK
Muthukumar_5
Honored Contributor

Re: adding new disks

refer this:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=617303

hth.
Easy to suggest when don't know about the problem!
Arunvijai_4
Honored Contributor

Re: adding new disks

Have you done #ioscan -fnC disk ?

pvcreate is after insf -e

-e Reinstall the special files for pseudo-drivers and existing devices. This is useful for restoring special files if one or more have been removed.


-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Joseph Loo
Honored Contributor

Re: adding new disks

hi,

yes, use insf to install the device file before using "pvcreate -f" to force create the physical volume (which delete content of any file system). u need the device file for pvcreate command.

regards.
what you do not see does not mean you should not believe
Adisuria Wangsadinata_1
Honored Contributor

Re: adding new disks

Hi,

Actually HP-UX will automatic create a device file for your new disks; but if this not happened, you can run :

# insf -e -H

And after that, you can run pvcreate to create physical volume foruse in LVM volume group.

Check this url below for your reference :

http://www.docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf

Hope this information can help you.

Cheers,
AW

PS : dont forget to assign points to the people who help you, this is just a symbol that you know that people take their time to help you and will make others happy :

http://forums1.itrc.hp.com/service/forums/pageList.do?userId=BR838027&listType=unassigned&forumId=1

now working, next not working ... that's unix
Muthukumar_5
Honored Contributor

Re: adding new disks

Ravinder,

Check your profile as,

I have assigned points to 60 of 138 responses to my questions.

Assing points to unassigned responses. Don;t make this thread to unassigned thread with the adisuriya's link to unassigned responses :-)

P.S: Assing 0 points.

Best Wishes.
Easy to suggest when don't know about the problem!
Ravinder Singh Gill
Regular Advisor

Re: adding new disks

~Thanks