Bonjour,
J'ai mis à jour mon serveur Proxmox (SoftRAID et LVM) vers Debian Bullseye hier soir et après un reboot impossible de reprendre la main dessus.
D'après le support OVH (qui a tenté de booter en vain sur un noyau standard OVH) il s'agit d'un problème logiciel, prise en charge impossible de leur côté donc.
Je me tourne donc vers vous pour essayer de comprendre et résoudre mon problème.
N'hésitez pas si vous souhaitez avoir plus d'informations.
Bonjour,
Il faut que tu lances la console kvm pour voir ce qui se passe au boot du serveur.
A priori ce sont les interfaces réseaux qui changent de nom sur la derniere version.
Sinon il faut lancer ton serveur en mode rescue et analyser les logs
Bonne chance
https://www.captainadmin.com
Bonjour,
attention si vous avez fait une migration de PVE6 à PVE7 :
[quote]
Check Linux Network Bridge MAC
With Proxmox VE 7, the MAC address of the Linux bridge itself may change, as noted in Upgrade from 6.x to 7.0#Linux Bridge MAC-Address Change.
In hosted setups, the MAC address of a host is often restricted, to avoid spoofing by other hosts.
[…]
Solution B: Hardcode MAC Address
You can either tell your hosting provider the new (additional) bridge MAC address of your Proxmox VE host, or you need to explicitly configure the bridge to keep using the old MAC address.
You can get the MAC address of all network devices, using the command ip -c link. Then, edit your network configuration at /etc/network/interfaces, adding a hwaddress MAC line to the respective bridge section.
For example, by default, the main bridge is called vmbr0, so the change would look like:
auto vmbr0
iface vmbr0 inet static
address 192.168.X.Y/24
hwaddress aa:bb:cc:12:34
# … remaining options
If ifupdown2 is installed, you can use ifreload -a to apply this change. For the legacy ifupdown, ifreload is not available, so you either need to reboot or use ifdown vmbr0; ifup vmbr0 (enter both semi-colon separated commands in one go!).
Note, hard-coding the MAC requires manual adaptions, if you ever change your physical NIC.
[/quote]
J'ai eu le cas et c'est ce qui a résolu le système (la seule différence et que perso je suis en install ZFS en RAID1).
Cordialement, janus57
Bonjour,
Merci pour la piste de l'interface réseau, c'était en partie lié à ça.
J'ai dû faire 2 modifications dans le fichier /etc/network/interfaces :
- modifier le nom de l'interface réseau (enp3s0 -> eth0)
- ajouter l'adresse MAC de l'interface dans la déclaration du bridge (vmbr0).
Le serveur est de nouveau online, un grand grand merci à toi !