1836617 Members
2107 Online
110102 Solutions
New Discussion

activate vg

 
zhj_1
Occasional Advisor

activate vg

ioscan -fnCdisk /dev/dsk/c1t0d3
Class I H/W Path Driver S/W State H/W Type Description
================================================================
disk 10 10/4/4.0.3 disc3 CLAIMED DEVICE DGC C2300WD
/dev/dsk/c1t0d3 /dev/rdsk/c1t0d3
/dev/floppy/c1t0d3 /dev/rfloppy/c1t0d3
ioscan -fnCdisk /dev/dsk/c2t1d3
Class I H/W Path Driver S/W State H/W Type Description
=================================================================
disk 7 10/4/12.1.3 disc3 CLAIMED DEVICE DGC C2300WD
/dev/dsk/c2t1d3 /dev/rdsk/c2t1d3
/dev/floppy/c2t1d3 /dev/rfloppy/c2t1d3


vgchange -a y vg_home1
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk
/c1t0d3":
I/O error
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk
/c2t1d3":
I/O error
vgchange: Warning: couldn't query physical volume "/dev/dsk/c1t0d3":
The specified path does not correspond to physical volume attached to
this volume group
vgchange: Warning: couldn't query physical volume "/dev/dsk/c2t1d3":
The specified path does not correspond to physical volume attached to
this volume group
vgchange: Warning: couldn't query all of the physical volumes.
vgchange: Couldn't activate volume group "vg_home1":
Quorum not present, or some physical volume(s) are missing.
16 REPLIES 16
Mark Grant
Honored Contributor

Re: activate vg

Looks to me that you might have a hardware issue here.

If you do a "diskinfo" on the disks, do you get sensible information?
Never preceed any demonstration with anything more predictive than "watch this"
Michael Tully
Honored Contributor

Re: activate vg

Your problem is that you can't activate a volume group with less than 50% of the LUN's available, this is called 'quorum'. Seems to me you have a problem with a connection, from what I've seen here to a clariion disk array. (assuming it is a clariion) Is there a connectivity problem from the management station. Perhaps a service processor port? Are there other volumes that have similar messages?
Anyone for a Mutiny ?
G. Vrijhoeven
Honored Contributor

Re: activate vg

Hi,

Could it be that the disks have bad blocks.
try a diskinfo -v /dev/rdsk/c?t?d?
And dd if=/dev/dsk/c?t?d? of=/dev/null bs=4096k

If not you can mv /etc/lvmtab /etc/lvmtab.org and # vgscan -v -p -a | more
if ok vgscan -v -a
If not you can try vgcfgrestore to the disks, before activating.

HTH,

Gideon
Karthik S S
Honored Contributor

Re: activate vg

Try doing a dd for both of the disks to see if there are some bad blocks,

dd if=/dev/dsk/cxtxdx of=/dev/zero bs=1024k

You should see equal number of blocks in and out without any error.

-Karthik S S
For a list of all the ways technology has failed to improve the quality of life, please press three. - Alice Kahn
zhj_1
Occasional Advisor

Re: activate vg

dd if=/dev/dsk/c1t0d3/ of=/dev/null bs=4096k

dd read error:I/O error
0+0 records in
0+0 records out
Michael Tully
Honored Contributor

Re: activate vg

Please provide:

diskinfo /dev/rdsk/c2t1d3
diskinfo /dev/rdsk/c1t0d3
Anyone for a Mutiny ?
zhj_1
Occasional Advisor

Re: activate vg

diskinfo:can't open /dev/rdisk/c2t1d3
Suresh Patoria
Super Advisor

Re: activate vg

Hi,

I think some hardware problem in ur Disk Arry

u try out command

diskinfo -v /dev/rdsk/cXtXdX

Thanx
Karthik S S
Honored Contributor

Re: activate vg

May be I am asking some silly stuff ... but I guess might have tried with the wrong device file ...

diskinfo:can't open /dev/rdisk/c2t1d3
-------

try with /dev/rdsk/c2t1d3

-Karthik S S
For a list of all the ways technology has failed to improve the quality of life, please press three. - Alice Kahn
Michael Tully
Honored Contributor

Re: activate vg

Just checking, did you spell it correctly:

diskinfo /dev/rdsk/c2t1d3
diskinfo /dev/rdsk/c1t0d3

Perhaps you can tell us more about your system?
When was it last rebooted?
When was it last used successfully?
Have any changes been made recently?
Anyone for a Mutiny ?
zhj_1
Occasional Advisor

Re: activate vg

diskinfo -v /dev/rdisk/c2t1d3
diskinfo: can't open /dev/rdisk/c2t1d3:NO such file or directory
Karthik S S
Honored Contributor

Re: activate vg

zhj,

pl. try,

rdsk

and not,

rdisk

-Karthik S S
For a list of all the ways technology has failed to improve the quality of life, please press three. - Alice Kahn
zhj_1
Occasional Advisor

Re: activate vg

sorry!


diskinfo /dev/rdsk/c2t1d3
SCSI describe of /dev/rdsk/c2t1d3:
vendor: DGC
product id: C2300WD
type: direct access
size: 17416350 Kbytes
bytes per sector: 512
Karthik S S
Honored Contributor

Re: activate vg

dd if=/dev/dsk/c1t0d3/ of=/dev/null bs=4096k

dd read error:I/O error
0+0 records in
0+0 records out

----

Since you got the error for other disk too, do a diskinfo again,

diskinfo -v /dev/dsk/c1t0d3

Is it a internal or external disk?? Mostly I think the disk has some bad blocks. Do you have spare disks and backup???

-Karthik S S
For a list of all the ways technology has failed to improve the quality of life, please press three. - Alice Kahn
zhj_1
Occasional Advisor

Re: activate vg

the box is k360
it is autoraid disk array
G. Vrijhoeven
Honored Contributor

Re: activate vg

Hi,

You could try an insf -e .Since you got a no such file or dir on the diskinfo command.

Gideon