vCenter Log Insight Static IP Address (Not Supported)

Today I wanted to install the vCenter Log Insight on my VMware Workstation

  1. Right-click on the OVA
  2. Open with VMware Workstation
  3. Specify the name and location of the virtual machine.
  4. Accept the license.
  5. Power on the virtual machine.,

Sadly as per the documentation you either require a DHCP server to obtain an IP address or you have to set it via the vApp settings by accessing the vCenter server and edit the vApp settings.

loginsight1

I did a small research on setting a static IP address for the vCenter Log Insight appliance and I have found out that it is no supported, so perform the hereunder at your own risk ;-).

  1. After powering on the virtual machine.
  2. Press Ctrl+Alt+F1
  3. Username root / password nothing (just hit enter).
  4. Change the default password and put something that is no a dictionary word =).
  5. Once at the terminal.
  6. Type ifconfig -a to get a list of the current network interfaces you should find “eth0” which is the virtual NIC and “lo” which is the loop back adapter.
  7. Type: cd /etc/sysconfig/network
  8. Type: ls where here you should see a configuration file called ifcfg-eth0
  9. Type: vi ifcfg-eth0 (If you’re not familiar with VI check this quick reference guide.
  10. Edit the network interface configuration file to match the hereunder:
    • DEVICE=eth0
    • BOOTPROTO=dhcp4
    • STARTMODE=auto
    • ONBOOT=yes
    • NETWORK=192.168.1.0
    • NETMASK=255.255.255.0
    • IPADDR=192.168.1.2
    • GATEWAY=192.168.1.254
  11. Hit the ESC key and then type :wq!
  12. Now reboot the virtual machine and you’re done.

 

10473 Total Views 2 Views Today

Abdullah

Knowledge is limitless.

2 Responses

  1. Hi there,

    you could also simply use yast2 from the CLI and let the wizard guide you through so that you don’t have to mess around with the files.

    any vmware appliance will have yast2 :-)

Leave a Reply to doOdzZZ Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.