Имейте два тома в хранилище данных на ESXi 5.1. В графическом интерфейсе один отображается серым цветом и отображается слово «(неактивно)». Другой вообще не отображается в графическом интерфейсе.
Однако в командной строке:
~ # 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
Есть ли способ обнаружить это в командной строке? Что еще более важно, есть ли способ «повторно активировать» их?
РЕДАКТИРОВАТЬ: я не могу комментировать или ответить на свой вопрос. :-(
В любом случае, я сделал что-то вроде этого (для каждого тома):
#!/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
Ты можешь использовать:
esxcfg-nas -r
перемонтировать файловые системы NAS на ESXi. См. Синтаксис команды:
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.