explain the steps on the following:
Install Proxmox VE for my actual server, and set internal ip address to 192.168.1.0
In the server, create two Virtual Machines.
Here’s a step-by-step guide to install Proxmox VE, create virtual machines, set up directories, and create databases as per your requirements.
Download Proxmox VE ISO:
Create a Bootable USB:
Boot from USB:
Install Proxmox VE:
192.168.1.0
(note: typically, you should use a usable IP address like 192.168.1.10
instead of .0
).Complete Installation:
https://192.168.1.0:8006
in your web browser.Log in to Proxmox Web Interface:
Create Application VM:
192.168.1.1
.Create Database VM:
192.168.1.2
.Access Application VM:
Install Apache and PHP:
sudo apt update
sudo apt install apache2 php libapache2-mod-php
Create Subdirectories:
cd /var/www/html
sudo mkdir edge platform
Set Permissions:
sudo chown -R www-data:www-data edge platform
sudo chmod -R 755 edge platform
Access Database VM:
Install MariaDB:
sudo apt update
sudo apt install mariadb-server
Secure MariaDB Installation:
sudo mysql_secure_installation
Log in to MariaDB:
sudo mysql -u root -p
Create Databases:
CREATE DATABASE internet_app;
CREATE DATABASE web_app;
Exit MariaDB:
EXIT;
You have now successfully installed Proxmox VE, created two virtual machines (one for applications and one for the database), established subdirectories for your applications, and created two databases in MariaDB. You can now proceed to deploy your applications and connect them to the