This guide walks you through installing and configuring CloudLinux 9.5 using the OVH IPMI interface with safe, reproducible example values.
π§© Part 1: Mount the CloudLinux ISO
- Download ISO:
- Use:
CloudLinux-9.5-x86_64-boot.iso
- Use:
- Access IPMI:
- Go to your OVH panel β IPMI/HTML5 Console β Media > Virtual Media Wizard
- Mount the ISO:
- Select the downloaded ISO and attach it using the wizard.
- Reboot the Server:
- Trigger a reboot via IPMI.
- Boot from ISO:
- Ensure CDROM is selected as the first boot device.
- The CloudLinux installer should launch automatically.
- The virtual CDROM will auto-detach after installation.
π Part 2: Network & Hostname Configuration
During the Graphical Installer UI:
- Set Hostname:
- Example:
server1.examplehost.com
- Example:
- Enable Network Interface:
- Turn on
eno1
- Turn on
- General Tab:
- β Tick βConnect automatically with priorityβ
- Rename Interface (Optional):
- Rename
eno1
toeth0
in the Ethernet tab for consistency
- Rename
- IPv4 Settings:
Method: Manual Address: 192.0.2.100 Netmask: 255.255.255.0 Gateway: 192.0.2.1 DNS Servers: 203.0.113.53
- IPv6 Settings:
- Method: Disabled
πΏ Part 3: Software Selection
- Choose: Minimal Install (Standard AlmaLinux base install, ideal for custom server environments)
π§ Part 4: Post-Install fstab
Fix
After installation completes and you log in:
- Edit
fstab
:nano /etc/fstab
- Fix EFI Mount Line:
Replace:LABEL=EFI_SYSPART /boot/efi vfat defaults 0 1
With:/dev/nvme0n1p1 /boot/efi vfat defaults 0 1
- Apply Changes:
umount /boot/efi mount -a
- Example Final
/etc/fstab
:UUID=11111111-aaaa-bbbb-cccc-222222222222 / xfs defaults 0 1 /dev/nvme0n1p1 /boot/efi vfat defaults 0 1 UUID=33333333-dddd-eeee-ffff-444444444444 swap swap defaults 0 0 UUID=55555555-aaaa-bbbb-cccc-666666666666 swap swap defaults 0 0
β CloudLinux 9.5 installation and basic configuration are now complete!
Next, proceed with cPanel installation or hardening as needed.