Como eu ativo meu datastore inativo na linha de comando?

2

Tenha dois volumes em um datastore no ESXi 5.1. Na GUI, aparece um em cinza e a palavra "(inativo)". O outro não aparece na GUI.

No entanto, na linha de comando:

~ # esxcli storage nfs list
Volume Name  Host            Share                      Accessible  Mounted  Read-Only  Hardware Acceleration
-----------  --------------  -------------------------  ----------  -------  ---------  ---------------------
volume1      10.200.201.140  /export1                   true        true     false      Supported            
volume2      10.200.201.140  /export1/somedir           true        true     false      Supported            

Existe uma maneira de detectar isso na linha de comando? Mais importante, existe uma maneira de "reativá-los"?

EDITAR: Não posso fazer um comentário nem responder à minha própria pergunta. :-(

De qualquer forma, acabei fazendo algo assim (para cada volume):

#!/bin/sh
while [[ 1 ]]; do
    echo "$(df -h)" | grep -q "/vmfs/volumes/volume1$"
    volume1_mounted=$?
    if [[ $volume1_mounted -ne 0 ]]; then
       esxcli storage nfs add -H 10.200.201.140 -s /share1 -v volume1
    fi
done
    
por John Schmitt 23.04.2013 / 06:23

1 resposta

3

Você pode usar:

esxcfg-nas -r

para remontar sistemas de arquivos NAS no ESXi. Veja a sintaxe do comando:

esxcfg-nas <options> [<label>]
-a|--add                Add a new NAS filesystem to /vmfs volumes.  
                        Requires --host and --share options.
                        Use --readonly option only for readonly access.
-o|--host <host>        Set the host name or ip address for a NAS mount.
-s|--share <share>      Set the name of the NAS share on the remote system.
-y|--readonly           Add the new NAS filesystem with readonly access.
-d|--delete             Unmount and delete a filesystem.
-l|--list               List the currently mounted NAS file systems.
-r|--restore            Restore all NAS mounts from the configuration file. 
                        (FOR INTERNAL USE ONLY).
-h|--help               Show this message.
    
por 23.04.2013 / 06:32