Hi,
I’ve been trying to install Nutanix CE 2.1 (from this post) on a bare metal server bought from OVH (RISE-1-11) with the following specifications:
- CPU: Intel Xeon-E 2136 - 6c/12t - 3.3 GHz/4.5 GHz
- RAM: 64 Go ECC 2666 MHz
- Disks:
- 2×512 Go SSD NVMe
- 2×4 To HDD SATA
After multiple tries (OVH’s IPMI/KVM feature is pretty bad so I had a very hard time completing the installation process), I finally succeeded to install the ISO on this machine.
However, once I boot in AHV, I try to ping
the CVM but get a Destination Host Unreachable
error. After checking with virsh list --all
I found out that the CVM was in a shut off state. I tried to start it with virsh start <CVM_NAME>
but got the following errors from qemu:
error: Failed to start domain ‘NTNX-b05f675e-A-CVM’
error: internal error: qemu unexpectedly closed the monitor: 2024-08-28T14:42:04.640171Z qemu-kvm: warning: Large machine and max_ram_below_4g (536870912) not a multiple of 1G; possible bad performance.
2024-08-28T14:42:04.653150Z qemu-kvm: -device cirrus-vga,id=video0,bus=pci.0,addr=0x2: warning: ‘cirrus-vga’ is deprecated, please use a different VGA card instead
2024-08-28T14:42:04.654006Z qemu-kvm: -device vfio-pci,host=0000:02:00.0,id=ua-a3b24f6a-3a35-4eb6-90ff-1a082c9f57af,bus=pci.0,addr=0x7,rombar=0: vfio 0000:02:00.0: group 1 is not viable
Please ensure all devices within the iommu_group are bound to their vfio bus driver.
I checked the CVM XML definition and didn’t see anything weird aside from the fact that the RAM amount is 20GB (20971520 exactly). I read somewhere that it should be at least 32GB, so I edited the definition with virsh edit <CVM_NAME>
and set memory
and currentMemory
to 32150000. Then I tried to start the CVM but got the exact same error as above.
Furthermore, I found out that I don’t have access to the internet although I did specify the right gateway upon installation. When I run ping 8.8.8.8
I just get the following error: connect: Network is unreachable
.
The result of ip route
is the following:
10.0.0.0/16 dev br0 proto kernel scope link src 10.0.0.1
169.254.0.0/16 dev br0 scope link metric 1006
192.168.5.0/24 dev virbr0 proto kernel scope link src 192.168.5.1 linkdown
I tried adding the default route manually with ip route add default via <GATEWAY_IP> dev eth0
but got Error: Nexthop has invalid gateway
. I checked the available network adapters with ip a
and saw there was an eth1 adapter, tried the same ip route …
command with it and got the same error.
I don’t believe that not having access to the internet should prevent the CVM from starting. It sure will be an issue later on but right now I can’t even start the CVM at all, with the aforementioned qemu error.
If that’s of any help, here is the configuration I specified upon installation:
- Host IP: 10.0.0.1
- CVM IP: 10.0.0.2
- Subnet mask: 255.255.0.0
- Gateway: <GATEWAY_IP>
I left the default selections for disks attribution: the two SSDs are used by the CVM and AHV and the two HDDs are used for data.
I should also mention that I already tried to install the previous version CE 2.0 version but got the same qemu errors. I also searched for the error online but couldn’t find any definitive answer as to what should be done to fix this issue.
If anyone would be willing to help, it would mean the world to me!