Afficher la pageAnciennes révisionsLiens de retourHaut de page Cette page est en lecture seule. Vous pouvez afficher le texte source, mais ne pourrez pas le modifier. Contactez votre administrateur si vous pensez qu'il s'agit d'une erreur. ====== Proxmox ====== * https://helper-scripts.com/scripts * [[https://medium.com/@logan.flecke/installing-proxmox-on-dell-poweredge-server-and-creating-an-internal-network-0d6b4f6af471|Installing Proxmox on Dell PowerEdge Server and Creating an Internal Network]] * [[https://doc.ataxya.net/books/proxmox-ve/page/securisation-basique-de-son-proxmox|Sécurisation basique de son Proxmox]] * [[https://pve.proxmox.com/wiki/Backup_and_Restore|Backup and Restore]] * [[https://blog.zwindler.fr/2020/03/02/deploiement-de-proxmox-ve-6-pfsense-sur-un-serveur-dedie/|Proxmox VE 6 + pfsense sur un serveur dédié (1/2)]] et [[https://blog.zwindler.fr/2020/03/09/proxmox-ve-6-pfsense-sur-un-serveur-dedie-2-3/|Proxmox VE 6 + pfsense sur un serveur dédié (2/2)]] * [[https://blog.zwindler.fr/2020/07/06/optimisation-de-pfsense-dans-proxmox-ve/|Optimisation de PFsense dans Proxmox VE]] * [[https://blog.pipetogrep.org/2025/05/23/how-to-install-windows-nt-4-server-on-proxmox/|How to Install Windows NT 4 Server on Proxmox]] * [[https://memo-linux.com/proxmox-backup-server-stockage-zfs/|Proxmox Backup Server : Stockage ZFS]] * [[https://resinfo-gt.pages.in2p3.fr/proxmox/doc/index.html]] * [[https://raymii.org/s/tutorials/Finally_run_Docker_containers_natively_in_Proxmox_9.1.html|Finally, run Docker containers natively in Proxmox 9.1 (OCI images)]] * [[https://blog.zwindler.fr/2025/11/24/artefacts-oci-lxc-proxmox-9-1/|Les artefacts OCI comme base de machines LXC sur Proxmox 9.1, enfin ?]] ==== Désactiver la haute disponibilité ==== Si un unique nœud est utilisé, la haute disponibilité peut être désactivée : <code bash> systemctl disable --now pve-ha-lrm systemctl disable --now pve-ha-crm systemctl disable --now corosync </code> ==== Désactiver la popup suggérant un abonnement ==== * [[https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/post-pve-install.sh]] ==== Templates ==== * [[https://pve.proxmox.com/wiki/Cloud-Init_Support|Cloud-Init Support]] * [[https://pve.proxmox.com/wiki/Cloud-Init_FAQ|Cloud-Init FAQ]] * [[https://pve.proxmox.com/wiki/VM_Templates_and_Clones|VM Templates and Clones]] * [[https://febryandana.xyz/posts/proxmox-create-lxc-instance-and-template/|Create LXC (Linux Container) Instance and Template]] ==== Faire écouter l'interface web sur le port 443 ==== * [[https://pve.proxmox.com/wiki/Web_Interface_Via_Nginx_Proxy|Web Interface Via Nginx Proxy]] Ajouter aux interfaces dans ''/etc/network/interfaces'' : <code bash> post-up iptables -t nat -A PREROUTING -d <your-ip> -p tcp --dport 443 -j REDIRECT --to-port 8006 || true </code> Ensuite pour appliquer immédiatement le changement : <code bash> sudo ifreload -a </code> ==== Gérer le renouvellement du certificat HTTPS avec ACME ==== * [[https://pve.proxmox.com/wiki/Certificate_Management|Certificate Management]] <code bash> sudo pvenode acme account register default em@il --directory https://ca.homelab/acme/acme/directory sudo pvenode config set --acme domains=proxmox.homelab # or from the web interface sudo pvenode acme cert order # or from the web interface </code> ==== API ==== * https://proxmoxer.github.io/docs/latest/ * https://pve.proxmox.com/pve-docs/api-viewer/index.html ==== Renommer ==== Renommer une VM : <code bash> qm set $i --name mynewname </code> Renommer un conteneur : <code bash> pct set $i --name mynewname </code> L'information peut aussi être directement éditée dans /etc/pve/qemu-server/$id.conf ==== Exécuter une commande dans une VM ==== Si l'agent invité fonctionne dans la VM, il est possible de faire depuis l'hôte : <code bash> qm guest exec $vm_id ls /etc </code> Les commandes sont exécutées en tant que root dans la VM. linux/proxmox.txt Dernière modification : 2026/03/17 12:17de phsw