Proxmox - Increase VM Disk Size
Steps These are the steps to increase the disk size of the VMs in Proxmox Add new disk in Proxmox VE UI Partition the new disk Create a new physical device (using pvcreate) Extend the ex...
Steps These are the steps to increase the disk size of the VMs in Proxmox Add new disk in Proxmox VE UI Partition the new disk Create a new physical device (using pvcreate) Extend the ex...
Installation Install Certbot’s Apache package with apt: sudo apt install certbot Configuration Now use Certbot to obtain the SSL certificate: sudo certbot --apache -d your_domain -d www.your_...
Why? When installing proxmox from iso its give a lot storage to pve-data which is a volume-storage and not a lot for pve-root, and pve-root it’s where your filesystem is mounted. Check current st...
Introduction These are the steps to remove a node from an existing Proxmox cluster. Warning: This tutorial may only be used if you want to delete permanently a node from an existing Proxmox cl...
Introduction Proxmox Virtual Environment (Proxmox VE) is a powerful open-source platform for virtualization that combines two virtualization technologies: KVM (Kernel-based Virtual Machine) for vi...
Installation Lets start by creating MySQL user and a database for WordPress: mysql -u root -p mysql> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; mysql> ...
Installation Use apt to install phpMyAdmin and additional complimentary packages: sudo apt update sudo apt install phpmyadmin php-mbstring php-gettext This will ask you a few questions in order...
Installation Use apt to install PHP. In addition, include some helper packages this time so that PHP code can run under the Apache server and talk to your MySQL database: sudo apt install php lib...
Installation Use apt to install MySQL server: sudo apt install mysql-server sudo mysql mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'new_password'; Start ...
Installation Install Apache using Ubuntu’s package manager using apt: sudo apt update sudo apt install apache2 Check and adjust the Firewall rules to allow all web traffic to Apache using ufw: ...