How to Install AMPPS on Windows
Step 1: Download AMPPS
Visit the official AMPPS website to download the latest version of the software.
Step 2: Run the Installer or Double tab on Ampps.exe
Locate the downloaded installation file (e.g., AMPPS-X.X-X.exe
) and double-click it to start the installation process.
Step 3: Choose Installation Directory
You will be asked to choose the installation directory. The default directory is usually in the C:\ drive (e.g., C:\Program Files (x86)\Ampps
). You can choose the default location or specify a different one.
Step 4: Select Components
In the installation wizard, you can choose which components you want to install. By default, AMPPS installs Apache, MySQL, MongoDB, PHP, Perl, and Python. You can customize this selection if needed.
Step 5: Setup MySQL Password
MySql Default Password "mysql" and user name "root"
During the installation process, you will be prompted to set a password for the MySQL root user. Make sure to choose a strong password and remember it, as you will need it to manage MySQL databases.
Step 6: Start Installation
Click the "Install" button to begin the installation process. The installer will copy the necessary files to your chosen directory.
Step 7: Launch AMPPS
Once the installation is complete, you can launch AMPPS. You may be given the option to launch it immediately after installation; if not, you can find the AMPPS icon on your desktop or in the Start menu and double-click it to open the AMPPS Control Center.
Step 8: Start Apache and MySQL
In the AMPPS Control Center, you will see options to start Apache and MySQL. Click the "Start" button next to each service to launch them. You should see a green "Running" status when they are active.
Step 9: Access AMPPS Dashboard
Open your web browser and go to http://localhost/ampps/ or http://127.0.0.1/ampps/ to access the AMPPS dashboard.
Step 10: Test Your Server
Create a simple PHP file (e.g., test.php
) in the AMPPS "www" folder (usually located within the installation directory).
Put some PHP code in this file, for example:
<?php
phpinfo();
?>
Access this file through your web browser by going to http://localhost/test.php. You should see PHP information displayed.
Step 11: Database Access
You can access phpMyAdmin through the AMPPS dashboard to manage your MySQL databases.