Eu reiniciei meu servidor Ubuntu 15.04 e descobri que meu pool do ZFS não era importado. Estou intrigado sobre o porquê isso está acontecendo. Aqui está a saída.
root@ubuntuserver:/# zpool import
pool: store1
id: 15396841088549477814
state: ONLINE
action: The pool can be imported using its name or numeric identifier.
config:
store1 ONLINE
sdb ONLINE
sdc ONLINE
sda ONLINE
sde ONLINE
Parece ótimo! Então eu tento importar ...
root@ubuntuserver:/# zpool import store1
cannot import 'store1': one or more devices is currently unavailable
Não tenho certeza do porquê. Tente forçadamente.
root@ubuntuserver:/# zpool import -f store1
cannot import 'store1': one or more devices is currently unavailable
Então tentei mostrar o pool por diretório.
root@ubuntuserver:/# zpool import -d /dev/disk/by-id
pool: store1
id: 15396841088549477814
state: ONLINE
action: The pool can be imported using its name or numeric identifier.
config:
store1 ONLINE
ata-WDC_WD30EFRX-68AX9N0_WD-WMC1T0028936 ONLINE
ata-WDC_WD30EFRX-68AX9N0_WD-WMC1T1115383 ONLINE
ata-WDC_WD30EFRX-68EUZN0_WD-WMC4N1926000 ONLINE
ata-WDC_WD60EFRX-68MYMN1_WD-WX11DC449VTX ONLINE
Em seguida, -f store1
foi adicionado
root@ubuntuserver:/# zpool import -d /dev/disk/by-id -f store1
cannot import 'store1': one or more devices is currently unavailable
Então eu tentei por ID, apenas no caso.
root@ubuntuserver:/# zpool import -d /dev/disk/by-id -f 15396841088549477814
cannot import 'store1': one or more devices is currently unavailable
Alguma ideia? Obrigado.