ℹ️ Information: XAMPP is a comprehensive software bundle that integrates five key components: Cross-Platform (X), Apache (A), MariaDB (M), PHP (P), and Perl (P). This integrated development environment provides everything needed to set up a local web server environment on your Windows instance.
While XAMPP historically included MySQL as its relational database management system, current versions utilize MariaDB, a community-developed fork of MySQL created by the original MySQL developers. This combination of MariaDB with Apache Web Server and PHP provides robust data storage capabilities for web applications in the AWS environment.
Access your EC2 instance:

Connect to your Windows Server instance:
If you have not yet connected to the Microsoft Windows Server 2025 instance, please repeat Step 3.2: Connect to the Windows instance.

Download and install XAMPP:


Complete the XAMPP installation wizard:

Finalize the installation:


Configure XAMPP services:

Access phpMyAdmin:
Create a new database:
(Optional) You can change the language in the Appearance Settings section.
In the phpMyAdmin interface, select New from the left navigation panel

Configure the database:
awsuser as the database name
Verify database creation:

CREATE TABLE `awsuser`.`user` ( `id` INT NOT NULL AUTO_INCREMENT , `first_name` VARCHAR(45) NOT NULL , `last_name` VARCHAR(45) NOT NULL , `email` VARCHAR(45) NOT NULL , `phone` VARCHAR(45) NOT NULL , `comments` TEXT NOT NULL , `status` VARCHAR(10) NOT NULL DEFAULT 'active' , PRIMARY KEY (`id`)) ENGINE = InnoDB;

