lunes, junio 17, 2013

HP-UX, algunos problemas al montar un filesystem

Me encuentro con que el servidor no tiene montado un filesystem. Reviso el fichero /etc/fstab y la entrada para montarlo está correctamente.

Intento que monte otra vez los que no están montados con:
mount -a

UX:vxfs mount: ERROR: V-3-20003: Cannot open /dev/vgeva8100/lveva8100: No such s
UX:vxfs mount: ERROR: V-3-24996: Unable to get disk layout version

Voy a echar un vistazo a ver qué pasa con el VG:
vgdisplay -v /dev/vgeva8100

vgdisplay: Volume group not activated.
vgdisplay: Cannot display volume group "/dev/vgeva8100".

Si no está activado, vamos a activarlo a ver que pasa:
vgchange -a y /dev/vgeva8100

Activated volume group.
Volume group "/dev/vgeva8100" has been successfully changed.

Por lo menos ahora está activo, vamos a intentar montarlo otra vez:

mount -a
UX:vxf
mount: ERROR: V-3-21268: /dev/vgeva8100/lveva8100 is corrupted. needs checking

Vamos a pasar el fsck (asegurarse de que el filesystem no esté montado):
umount /oradata

fsck -F vxfs -y -o full,nolog /dev/vgeva8100/rlveva8100

pass0 - checking structural files
pass1 - checking inode sanity and blocks
pass2 - checking directory linkage
fileset 999 directory 534 block devid/blknum 0/1034503114 offset 868 references free inode
...
...
...
au 54268 emap incorrect - fix? (ynq)y
au 54268 state file incorrect - fix? (ynq)y
au 54271 emap incorrect - fix? (ynq)y
au 54271 state file incorrect - fix? (ynq)y
fileset 999 iau 0 summary incorrect - fix? (ynq)y
fileset 999 iau 2 summary incorrect - fix? (ynq)y
fileset 999 iau 6 summary incorrect - fix? (ynq)y
free block count incorrect 752990 expected 752992 fix? (ynq)y
free extent vector incorrect fix? (ynq)y
OK to clear log? (ynq)y
flush fileset headers? (ynq)y
set state to CLEAN? (ynq)y

Después de esto ya me ha dejado montar y sin problemas.
Saludos,

No hay comentarios: