Skip to main content

Posts

Steps to create nested ESXI server on a physical ESXI

  Follow steps: 1.Create a New Virtual Machine selecting:    Guest OS Family: Others    Guest OS version: VMware ESXi 6.5 and later 2.On the Hardware "enable hardware assisted virtualization "for CPU: 3.Provide Memory(12GB) and Hard disk (10GB) and complete it. 4.Power On the Virtual machine and from CD/DVD attach "VMvisor installation ISO" file 5.Then do "alt+ctrl+delete"  and continue installation with selecting language/disks/root password.

vCenter server list all OPEN ports

Login to vCenter using ssh root access go to Shell promt run below command: # iptables -L port_filter -n --line-numbers Example: root@ABC [ ~ ]# iptables -L port_filter -n --line-numbers Chain port_filter (1 references) num  target     prot opt source               destination 1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:22 2    ACCEPT     udp  --  0.0.0.0/0            0.0.0.0/0            udp dpt:902 3    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:902 4    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0      ...

vCenter server download agent plugin bundle manually

Login to vCenter server using ssh root access go to Shell prompt use below command:   wget https://<Agent IP>:<port>/deployment_bundle --no-check-certificate example: root@abc [ ~ ]# wget https://<IP>:<port>/deployment_bundle --no-check-certificate --2022-02-10 23:43:08--  _deployment_bundle Connecting to <>:<port>.. connected. WARNING: cannot verify 's certificate, issued by ‘CN=sT=India,C=IN’:   Self-signed certificate encountered.     WARNING: certificate common name ‘’ doesn't match requested host name ‘<>’. HTTP request sent, awaiting response... 200 OK Length: 73 (7.0M) [application/zip] Saving to: ‘deployment_bundle’ scvm_webclient_depl 100%[===================>]   6.96M  --.-KB/s    in 0.1s 2022-02-10 23:43:08 (52.9 MB/s) - ‘deployment_bundle’ saved [/73] root@abc [ ~ ]#

How to connect Azure VMware solution vCenter server

 Azure VMware Solution(AVS) provides a vCenter server with minimum 3 node ESXi hosts while provision.  But the issue is that AVS will be created with only private cloud networks. For accessing we need to create a windows jump host .For this follow below step 1.Create AVS. 2.Create a resource "virtual network" on the same region of AVS. 3.Create a resource "virtual network gateway" with "express route" as type. 3.create a express route key  request on AVS.       AVS->Connectivity:       Now copy express ID and key. 4.Go to VPN gateway ->Connections->Add connection      check "redeem authentication" and provide "express key/ID" 5.Now create a windows jump host server on the above create vNet.

Debain root account locked

 If Debian linux console root account locked follow below: Reboot the debain VM and in console Press  e  to reach the GRUB menu. Change the   boot options Delete  console=tty2 quiet loglevel=2  and replace with the boot option   init=/bin/bash  as  4. Press  Ctrl+X  or  F10  to enter  root@(none):/#  prompt. Run  fsck -f -y -v  /dev/sdc1  repeatedly until there are no more errors. Enter the command  reboot -f   to reboot the VM.