Proxmox Firewall Service Disable using Command Rumi, March 20, 2024 Chrooting and then doing: systemctl disable pve-firewall systemctl mask pve-firewall should do the trick. then after rebooting and fixing your config, systemctl unmask pve-firewall systemctl enable pve-firewall systemctl start pve-firewall Should return to the defaults again. Ports used by Proxmox VE Web interface: 8006 (TCP, HTTP/1.1 over TLS) VNC Web… Continue Reading
Cloning Openvz Proxmox PVE container guest machine Rumi, November 4, 2015December 13, 2016 I first created a ‘template’ vm containing all stuff I need and using a temporarily ip adres. In the network config file of eth0 (/etc/sysconfig/network-scripts/ifcfg-eth0) I comment out the HWADDRESS line, else it will not come up with another mac address… Stop this ‘template’ vm as it is just used… Continue Reading
Allow NFS attachment on Proxmox OpenVZ containers Rumi, November 4, 2015 Prepare the container To allow a container to use NFS filesystem, you will need to start it with “nfs” feature enabled. If the container is running while you set the –features nfs:on, you will need to reboot it. # vzctl set 101 –features “nfs:on” –save # vzctl start 101 After… Continue Reading
Proxmox VM path Rumi, May 7, 2015 Backups /var/lib/vz/dump ISOs /var/lib/vz/template/iso Images /var/lib/vz/images Templates /var/lib/vz/template/cache Continue Reading
Appliances and OS Templates Rumi, June 6, 2014 For PVE & OpenVZ templates- http://openvz.org/Download/template/precreated PVE appliances- http://pve.proxmox.com/wiki/Get_Virtual_Appliances http://pve.proxmox.com/wiki/Category:Virtual_Appliances Continue Reading
Fix Date Time on PVE OpenVZ Guest machine Rumi, June 6, 2014 Stop VE vzctl stop 101 in HD node, run: vzctl set 101 –capability sys_time:on –save Start VE: vzctl start 101 Enter VE: vzctl enter 101 mv /etc/localtime /etc/localtime.old ln -s /usr/share/zoneinfo/Asia/Dhaka /etc/localtime date 092115442006 (09 = Month, 21 = day, 15 = hour, 44=minutes, 2006 = year) Run date to… Continue Reading