tested on ESXi 5.5 connect a console to your ESXi host (eg. SSH or ESXi Shell) To get a list of all VMs running on the host use this command: esxcli vm process list To kill / power off the virtual machine use the following command: esxcli vm process kill –type=xxxx –world-id=nnnn for -type=xxxx use: soft, […]
Author: wp_hr
Rename VM Folder and Files in ESXI Shell
I had to do this when there is no vmotion available – Tested in ESXi 6.5 enable SSH on your ESXi host Use Putty or something similar to connect to the ESXi host Run the following commands (in italics) cd /vmfs/volumes/<datastore name> ie if the datastore containing the VM is named datastore1 then you would […]
Centos 7/RHEL 7 LVS HAPROXY KEEPALIVED
Credit: CertDepot: Presentation For this tutorial, you need 2 virtual/physical servers for the load-balancers and 2 virtual/physical servers to load-balance. In addition to the 4 IP addresses needed by the servers themselves, a fifth virtual IP address (VIP) is necessary. The two load-balancers and the VIP need to be in the same network segment. Piranha […]
WEBLOGIC install
Installation of Weblogic Application Server Copy the install files to the Linux machine, using Winscp or the mv command as mentioned in the basic commands section Grant all permissions to the file : chmod a+x wls1033_linux32.bin Run the bin file to start the installation ./wls1033_linux32.bin Until the Choose the Home Directory option comes, Choose the […]
How to remove ghost LUN in Solaris
sometimes we have leftover phantom or ghost luns: Removing a ghost LUN in Solaris – First make sure it’s not in use First thing I do is make sure that the disk isn’t under control of STMS or Veritas. The two most likely disk management packages. # stmsboot -L or # vxdisk list whatever_disk If the disks are […]
Linux Multiple Gateways
example use: one gateway to send outgoing traffic. Other traffic use the other gateway. Two Gateways below for example: gw1 : 172.26.2.100 gw2 : 172.26.3.100 Create a virtual interface which will be used by processes that need to send traffic to gateway gw2: $ ifconfig eth0:1 172.26.3.209 Create a definition and give a name to […]