Ga naar hoofdinhoud
Proxmox Tutorial

Proxmox Installatie: De Complete Stap-voor-Stap Gids

15 February 2024
MadeMy Team
3 min leestijd
Proxmox Installatie: De Complete Stap-voor-Stap Gids

Proxmox Installatie: De Complete Stap-voor-Stap Gids

Proxmox VE is een krachtig virtualisatie platform, maar hoe start u? In deze gids leiden we u door een complete installatie en basisconfiguratie.

Hardware Requirements

Minimale Requirements

  • CPU: 64-bit processor met VT-x/AMD-V
  • RAM: 4GB (8GB+ aanbevolen)
  • Storage: 32GB beschikbare ruimte
  • Netwerk: 1Gbps NIC

Aanbevolen voor Productie

  • CPU: Dual socket server grade
  • RAM: 64GB+ ECC RAM
  • Storage: SSD/NVMe voor OS, aparte storage pool
  • Netwerk: 10Gbps+, redundant

Stap 1: ISO Download

  1. Ga naar proxmox.com
  2. Download de laatste ISO (momenteel 8.1)
  3. Maak een bootable USB stick met Rufus (Windows) of dd (Linux)
1
2
# Linux commando voor USB stick
sudo dd if=proxmox-ve_8.1.iso of=/dev/sdX bs=4M status=progress

Stap 2: Installatie

Boot van USB

  1. Plaats USB stick in server
  2. Boot van USB (F11/F12 voor boot menu)
  3. Selecteer “Install Proxmox VE”

Installatie Wizard

Taal Selectie

  • Kies uw taal (English recommended voor troubleshooting)

EULA

  • Accepteer de license agreement

Target Harddisk

  • Selecteer de disk voor Proxmox installatie
  • Tip: Gebruik een aparte disk (niet de storage disks)

Country & Timezone

  • Country: Netherlands
  • Timezone: Europe/Amsterdam
  • Keyboard: Dutch

Administrator Password

  • Geef een sterk wachtwoord op
  • Noteer dit goed!

Network Configuration

  • Hostname: pve01.yourdomain.local
  • IP Address: Statisch IP (bijv. 192.168.1.10)
  • Netmask: 255.255.255.0
  • Gateway: 192.168.1.1
  • DNS: 8.8.8.8, 1.1.1.1

Stap 3: Eerste Login

Na installatie kunt u inloggen via:

  • Web UI: https://[IP-address]:8006
  • Gebruikersnaam: root
  • Wachtwoord: [uw wachtwoord]

SSL Waarschuwing

De browser toont een SSL waarschuwing. Dit is normaal voor het self-signed certificaat. Accepteer de uitzondering.

Stap 4: Basis Configuratie

Repository Configuratie

Optie A: Gratis (No-Subscription)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Edit repository sources
nano /etc/apt/sources.list.d/pve-enterprise.list

# Comment de enterprise repo uit:
# deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise

# Voeg de no-subscription repo toe:
echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list

# Update
apt update && apt upgrade -y

Optie B: Enterprise (met licentie)

  • Voeg uw licentie key toe in de webinterface
  • DatacenterSubscriptionUpload Key

Storage Configuratie

Lokal Storage

Standaard is er een “local” storage voor ISO’s en backups.

Toevoegen van extra storage

  1. DatacenterStorageAdd
  2. Selecteer type (LVM, ZFS, Directory, etc.)
  3. Configureer pad en opties

Voorbeeld: Directory toevoegen

1
2
3
4
5
6
7
8
9
# Maak mountpoint
mkdir -p /mnt/storage

# Mount disk (bijv. /dev/sdb1)
echo '/dev/sdb1 /mnt/storage ext4 defaults 0 0' >> /etc/fstab
mount -a

# Voeg toe aan Proxmox
# Via UI: Datacenter → Storage → Add → Directory

Netwerk Configuratie

Linux Bridge

Standaard wordt een vmbr0 bridge aangemaakt.

VLAN Support

  1. SystemNetworkCreateLinux VLAN
  2. Configureer VLAN ID
  3. Toewijzen aan vmbr

Stap 5: Veiligheid

Firewall Inschakelen

1
2
# In webinterface:
# Datacenter → Firewall → Options → Firewall: Yes

Fail2ban Installeren

1
apt install fail2ban -y

SSH Hardening

1
2
3
4
5
6
7
8
9
nano /etc/ssh/sshd_config

# Wijzig:
PermitRootLogin no
PasswordAuthentication no
PubkeyAuthentication yes

# Herstart SSH
systemctl restart sshd

Stap 6: Eerste VM Aanmaken

  1. Upload ISO

    • localISO ImagesUpload
  2. Maak VM

    • Create VM (rechtsboven)
    • General: Geef naam op
    • OS: Selecteer ISO
    • System: Defaults (QEMU agent aanbevolen)
    • Disks: Configureer storage
    • CPU: Aantal cores
    • Memory: RAM toewijzen
    • Network: vmbr0 (default)
    • ConfirmFinish
  3. Start VM

    • Selecteer VM → Start
    • Console voor toegang

Veelvoorkomende Problemen

“No valid subscription” melding

Dit is normaal voor de gratis versie. Te onderdrukken via:

1
2
3
# Maak het warning script leeg
echo "" > /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
systemctl restart pveproxy

Netwerk niet bereikbaar

Controleer:

  • Firewall instellingen
  • VLAN configuratie
  • Gateway instellingen

Conclusie

Proxmox VE is nu geïnstalleerd en klaar voor gebruik. Voor productie omgevingen raden wij aan om een enterprise licentie te overwegen voor stabiele updates en support.


Hulp nodig bij uw installatie? Neem contact met ons op.

Tags

#installation #getting-started #tutorial

Deel dit artikel