Tag Archives: vmware

VMware View Certificate Stuff

VMware View does work with self-signed certificates, but it will always nag you with a warning on the admin interface. to replace it with another certificate, the following reqiurements must apply: -the appropriate root cert must be installed -the private … Continue reading

Posted in VMware | Tagged , | Comments Off on VMware View Certificate Stuff

VMware: NFS datastore handling on commandline

list nfs datastores esxcfg-nas -l restore nfs datastores esxcfg-nas -r delete nfs datastores: esxcfg-nas -d myDatastore or esxcli storage nfs remove -v myDatastore add nfs datastores: esxcfg-nas -a myDatastore -o nas-ip -s /vol/volume VMware KBs: KB1005057 KB1029301

Posted in VMware | Tagged | Comments Off on VMware: NFS datastore handling on commandline

VMware: restarting management agents

on ESXi: /sbin/services.sh restart on ESX: service mgmt-vmware stop service vmware-vpxa stop service vmware-vpxa start service mgmt-vmware start

Posted in VMware | Tagged | Comments Off on VMware: restarting management agents

Brocade SAN Switch Commands

some usefull Brocade SAN Switch commands: Settings tsclockserver <ip>: set NTP server for time synchronization. theoretically only needed on one switch… (Bug in Firmware 6.2 !) tsclockserver LOCL: disable NTP server tstimezone: to set the timezone. for Switzerland use Zurich: … Continue reading

Posted in NetApp, VMware | Tagged , , , | Comments Off on Brocade SAN Switch Commands

Netapp NFS export example for VMware ESXi

VMware ESXi always connects with root. /etc/exports /vol/esx_iso    -sec=sys,rw=192.168.1.31:192.168.1.32,root=192.168.1.31:192.168.1.32 /vol/esx_swap    -sec=sys,rw=192.168.1.31:192.168.1.32,root=192.168.1.31:192.168.1.32 /vol/esx_data    -sec=sys,rw=192.168.1.31:192.168.1.32,root=192.168.1.31:192.168.1.32 /vol/esx_os    -sec=sys,rw=192.168.1.31:192.168.1.32,root=192.168.1.31:192.168.1.32

Posted in NetApp | Tagged , , | Comments Off on Netapp NFS export example for VMware ESXi