Eventide NexLog Monitoring Appliance

Installation

Import the OVA package into the virtualization platform of your choice. Eventide develops and supports the use of the VMware vSphere hypervisor.

Logging in

Once the appliance has been powered on, open the virtual machine's console to log in to the command line environment.

The default username is monitor and the password is m0nitor.

The password for the monitor user should be changed immediately.

Changing the default password

After logging in to the console, type passwd Enter the current password m0nitor and press enter. Enter your new password when prompted.

Setting the hostname

The default hostname of the virtual machine is nma. This should be changed to the DNS hostname that will be used externally. To set the hostname execute the command below from the console, changed the values as necessary. sudo hostnamectl set-hostname eventidenma.dealer.com Verify that the hostname was updated by executing the command hostname -f

Setting a static IP address

The virtual machine is configured to use DHCP by default. We recommend that your set a static IP address to prevent any future IP address issues. By default you will find the following configuration within the /etc/network/interfaces network config file: source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug ens32
iface ens32 inet dhcp

Update the iface ens32 inet dhcp to iface ens32 inet static. Append the following lines to the end of the file.

address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 8.8.8.8 8.8.4.4

The resulting content of /etc/network/interfaces network config file should look similar to the one below:

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug ens32
iface ens32 inet static
    address 192.168.1.101
    netmask 255.255.255.0
    gateway 192.168.1.1
    dns-nameservers 192.168.1.1 8.8.8.8 8.8.4.4

Save the changes to the file and restart the networking service with the command sudo systemctl restart networking

Verify that the new IP address is set with the command ip addr show dev ens32.

You should now be able to SSH into the virtual machine with the new IP address and the password.