MODOP – Installation Proxmox VE via les sources repository

L’installation de Proxmox VE peut être réalisé via une installation de Debian Existante.

Dans l’exemple de ce MODOP nous utilisons une installation DEBIAN 10 existante sur une machine Virtuelle pour déployer l’hyperviseur ProxmoxVE.

Version Debian 10 « Buster »

Je ne vais pas vous décrire l’installation minimal de debian 10 cela n’a aucun intérêt dans ce MODOP.

Spécification de la machine

  • Host : floki10.house.cpb
  • IP Static : 192.168.1.45

Version Debian Machine

root@floki10:/home/chris# cat /etc/debian_version
10.10

Update Debian

root@floki10:/home/chris# apt -y update && apt -y upgrade

Spécifier son Host Proxmox

root@floki10:/home/chris# hostnamectl set-hostname floki10.house.cpb --static
root@floki10:/home/chris# echo "192.168.1.45 floki10.house.cpb floki10" >> /etc/hosts

Spécifier une IP fixe

root@floki10:/home/chris# cp /etc/network/interfaces{,-old}
root@floki10:/home/chris# vi /etc/network/interfaces
# The primary network interface
allow-hotplug enp0s3
iface enp0s3 inet static
address 192.168.1.45
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 8.8.8.8
# This is an autoconfigured IPv6 interface
#iface enp0s3 inet6 auto
root@floki10:/home/chris#reboot
root@floki10:/home/chris# ip a

Spécifier les repository Proxmox pour Debian

Ajout des Clefs

root@floki10:/home/chris# wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg

root@floki10:/home/chris# mv proxmox-ve-release-6.x.gpg /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
root@floki10:/home/chris# chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg

Ajout des repository Proxmox VE

root@floki10:/home/chris# echo "deb [arch=amd64] http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
root@floki10:/home/chris# apt update && apt full-upgrade

Ajout des repositiory Proxmox CEPH

root@floki10:/home/chris# echo "deb http://download.proxmox.com/debian/ceph-nautilus buster main" >> /etc/apt/sources.list.d/ceph.list

Installation des paquets PROXMOX VE

root@floki10:/home/chris# apt install proxmox-ve postfix open-iscsi

L’installation de Proxmox sera déployé sur votre machine Debian

Option d’installation

Notre machine est en IP static , nous allons choisir « Non »


« Site Internet »


Nom de votre Host , ici floki10.house.cpb et « OK »

L’installation de Proxmox va se poursuivre.

Ajustement

root@floki10:/home/chris# apt remove os-prober

Erreur Démarrage PVE

root@floki10:/home/chris# systemctl status pvestatd.service

root@floki10:/home/chris# vi /etc/hosts
127.0.0.1 localhost
#127.0.1.1 floki10.house.cpb floki10
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
192.168.1.45 floki10.house.cpb floki10
root@floki10:/home/chris# systemctl restart pvestatd.service
root@floki10:/home/chris# systemctl status pvestatd.service

Redémarrer votre Machine

La machine est désormais sous un noyau Hyperviseur Proxmox.


Se connecter à votre Proxmox sur l’url https://192.168.1.45:8006



Se connecter avec votre login root Debian.

Proxmov VE est désormais disponible sur votre machine Debian 10.

Views: 59

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *