explain the steps on the following:
Install Proxmox VE for my actual server.
In the server, create two Virtual Machines.
To set up your server with Proxmox VE and create the specified virtual machines and configurations, follow these steps:
Prepare Your Server:
Download Proxmox VE:
Create a Bootable USB Drive:
Install Proxmox VE:
Access the Proxmox Web Interface:
https://<your-server-ip>:8006
in a web browser.Create the Application VM:
Create the Database VM:
Access the Application VM:
Create Subdirectories:
/var/www
).mkdir /var/www/internet_app
mkdir /var/www/web_app
Access the Database VM:
Install MariaDB:
sudo apt update
sudo apt install mariadb-server
Secure MariaDB Installation:
sudo mysql_secure_installation
Create Databases:
sudo mysql -u root -p
CREATE DATABASE internet_app_db;
CREATE DATABASE web_app_db;
EXIT;
By following these steps, you will have set up Proxmox VE on your server, created two virtual machines for your application and database, established subdirectories for your applications, and created the necessary databases in MariaDB.