VMWare Prerequisites
Last updated
If you are using VMWare, download the ExaVault image and use your hypervisor system to import the ExaVault image and launch the VM.
Add a secondary drive for data storage and attach it to the VM. Make it as large as your environment can support. All data on the appliance is saved to this drive. The minimum size is 500GB.
Once the new VM is created, open Edit Settings for it.
Change the CPU and Memory settings to match the required resources. Normally this is 4 vCPU and 16 GB of memory.
The Guest OS Family must be set to Linux, and the Guest OS Version to Debian GNU/Linux 6 (64bit).
The root disk for the new VM must have at least 100GB of available space.
Power on the virtual machine and login via the console as admin with the password DefaultPassChangeMe1!.
Change the hostname to your desired hostname using the command:
hostnamectl set-hostname <existing_hostname>Use the passwd command to change the password for the admin user.
Create and apply the appropriate netplan configuration in /etc/netplan/.
Use the example template below to create a network configuration for your environment.
network:
version: 2
ethernets:
ens192:
dhcp4: no
addresses:
- 192.168.0.5/24
nameservers:
addresses: [8.8.8.8, 4.2.2.2]
routes:
- to: 0.0.0.0/0
via: 192.168.0.1
routing-policy:
- from: 192.168.0.1/24After the network configuration has been set, apply the changes:
Last updated
netplan apply