<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Proxmox on Thaddeus Koenig</title><link>https://www.thaddeuskoenig.com/tags/proxmox/</link><description>Recent content in Proxmox on Thaddeus Koenig</description><generator>Hugo</generator><language>en-US</language><copyright>© 2026 Thaddeus Koenig</copyright><lastBuildDate>Thu, 16 Jan 2025 06:06:24 -0500</lastBuildDate><atom:link href="https://www.thaddeuskoenig.com/tags/proxmox/index.xml" rel="self" type="application/rss+xml"/><item><title>ProxMox LXC Deployment</title><link>https://www.thaddeuskoenig.com/projects/proxmox_lxc_automation/</link><pubDate>Thu, 23 Nov 2023 12:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/projects/proxmox_lxc_automation/</guid><description>&lt;p&gt;In an attempt to automate the deployment as well as get my feet wet with a little Ansible in my homelab i created a playbook to automate the deployment of the minimal LXCs that build to deploy certain apps like pi-hole, nginx proxies, and sql databases. The documentation on certain things were pretty sparse so I will try to explain the intentions that I had, the issues that I ran into, as well as why I chose the routes that I took for my solution.&lt;/p&gt;</description></item><item><title>Change Proxmox Default Port (Kinda)</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_change_proxmox_port/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_change_proxmox_port/</guid><description>&lt;p&gt;The Proxmox team doesnt really have any plans on changing the default port assigned to Proxmox (8006) and their documentation just tells you to use nginx to proxy the traffic if you want to change the default port so the following script should change your port to the port of your choosing [with 443 as the default].&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;#!/bin/bash
#Install nginx
apt install nginx

#Checks for your default nginx file and deletes it
FILE=/etc/nginx/conf.d/default
if [-f &amp;#34;FILE&amp;#34;];then
	rm $FILE
else
	rm /etc/nginx/sites-enabled/default
fi

#Pull the FQDN out of the hosts file
read -p &amp;#34;Enter the FQDN of your server or [ENTER] to set to default from /etc/hosts file&amp;#34; FQDN
if [ -z FQDN ]
then FQDN=$(hostname -f)
fi

#Create your new nginx File
cat &amp;gt; /etc/nginx/conf.d/proxmox.conf &amp;lt;&amp;lt; EOF
upstream proxmox {
 server &amp;#34;$FQDN&amp;#34;;
}

server {
 listen 80 default_server;
 rewrite ^(.*) https://$host$1 permanent;
}

server {
 listen 443;
 server_name _;
 ssl on;
 ssl_certificate /etc/pve/local/pve-ssl.pem;
 ssl_certificate_key /etc/pve/local/pve-ssl.key;
 proxy_redirect off;
 location / {
 proxy_http_version 1.1;
 proxy_set_header Upgrade $http_upgrade;
 proxy_set_header Connection &amp;#34;upgrade&amp;#34;; 
 proxy_pass https://localhost:8006;
	proxy_buffering off;
	client_max_body_size 0;
	proxy_connect_timeout 3600s;
 proxy_read_timeout 3600s;
 proxy_send_timeout 3600s;
 send_timeout 3600s;
 }
}
EOF

#test your config
nginx -t
#reload nginx
nginx -s reload

#creating some dependencies via systemd overrides
cat &amp;gt; /etc/systemd/system/nginx.service.d/override.conf &amp;lt;&amp;lt; EOF
[Unit]
Requires=pve-cluster.service
After=pve-cluster.service
EOF

systemctl restart nginx
systemctl enable --now nginx
&lt;/code&gt;&lt;/pre&gt;</description></item><item><title>Change Proxmox to DHCP Client</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_change_proxmox_to_dhcp/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_change_proxmox_to_dhcp/</guid><description>&lt;p&gt;I don&amp;rsquo;t really like like allowing servers to set their own IP addresses, i think its kinda weird and i like to handle things at the network level so I typically have all my servers as DHCP clients and I set their addresses statically on the network device they&amp;rsquo;re attached to. Unfortunately proxmox doesn&amp;rsquo;t like that so it doesn&amp;rsquo;t include DHCP in the installer, which is fine. Its easily fixed.&lt;/p&gt;</description></item><item><title>Connecting ProxMox cluster over Tailscale</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_proxmox_over_tailscale/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_proxmox_over_tailscale/</guid><description>&lt;p&gt;This tutorial is assuming that you already have Tailscale installed on your Proxmox hosts, if you havent done so look at the &lt;a
 href="https://tailscale.com/kb/1038/install-debian-bullseye/"
 
 
 class="link--external" target="_blank" rel="noreferrer"
 
&gt;installation for Tailscale on Debaian Bullseye&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="install"&gt;Install&lt;a href="#install" class="post-heading__anchor" aria-hidden="true"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Because /etc/hosts has priority in all host lookups we are just going to edit the these files on any of the machines that we would like to connect. To do so you can simply vim /etc/hosts and your new host files will end up looking like this with host being the node you want to start the cluster on and remote being the node that will join the cluster&lt;/p&gt;</description></item><item><title>Proxmox Delete Cluster</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_proxmox_delete_cluster/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_proxmox_delete_cluster/</guid><description>&lt;p&gt;Theres no real way to delete a cluster in the gui with out doing a fresh install (that i know of) but the following set of commands should stop the cluster service, force it to local, delete the configs and restart it like new.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;systemctl stop pve-cluster
systemctl stop corosync
pmxcfs -l
rm /etc/pve/corosync.conf
rm -r /etc/corosync/*
killall pmxcfs
systemctl start pve-cluster
&lt;/code&gt;&lt;/pre&gt;</description></item><item><title>Proxmox Qcow2 Import</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_proxmox_qcow2_import/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_proxmox_qcow2_import/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;a href="#introduction" class="post-heading__anchor" aria-hidden="true"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;For those who aren&amp;rsquo;t familiar with the concept. Different hypervisors use different file formats to represent VM images and due to the fact that Proxmox uses Qemu (Quick Emulator)/KVM (Kernel-based Virtual Machine) to provide virtualization, it in turn uses Qcow2 (Qemu Copy-On-Write) as the storage file format for virtual machines data. The process to move Qcow2 files into Proxmox may not be as straight forward as it is on VMware, but its still a relatively painless process.&lt;/p&gt;</description></item></channel></rss>