Problema ao adicionar um novo disco a um servidor

1

Eu adicionei um disco LVM a um servidor Centos 6. Depois de adicionar o disco, usei o comando echo '- - -' > host0/scan para procurar o novo disco, que acabou de ser adicionado ao servidor.

Depois disso, pude ver o novo disco usando o comando fdisk -l . No entanto, eu podia ver o dispositivo LVM, que pertence ao mesmo disco, somente depois que eu reiniciei o servidor.

Isso foi o que consegui depois de adicionar o novo disco:

fdisk -l

Disk /dev/sdb: 751.6 GB, 751619276800 bytes
255 heads, 63 sectors/track, 91379 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x119722fe

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1       91379   734001786   83  Linux

E o seguinte é o que foi adicionado após a reinicialização do servidor:

Disk /dev/mapper/data-lv: 751.6 GB, 751615082496 bytes
255 heads, 63 sectors/track, 91378 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Existe uma maneira de mostrar o dispositivo LVM sem reiniciar o servidor?

    
por Omri 25.04.2017 / 15:43

1 resposta

2

vgchange -a y deve ativar todos os seus dispositivos LVM ou

vgchange -a y <vg_name> para ativar um único,

ambas as ações sem a necessidade de reinicialização.

De man vchange :

DESCRIPTION vgchange allows you to change the attributes of one or more volume groups. Its main purpose is to activate and deactivate VolumeGroupName, or all volume groups if none is specified. Only active volume groups are subject to changes and allow access to their logical volumes.

-a, --activate [a|e|l]{y|n} Controls the availability of the logical volumes in the volume group for input/output. In other words, makes the logical volumes known/unknown to the kernel. If autoactivation option is used (-aay), each logical volume in the volume group is acti‐ vated only if it matches an item in the activation/auto_activation_volume_list set in lvm.conf. If this list is not set, then all volumes are considered for activation. The -aay option should be also used during system boot so it's possible to select which volumes to activate using the activation/auto_acti‐ vation_volume_list settting.

    
por 25.04.2017 / 15:51

Tags