How to Install LAMP Stack on Windows Subsystem for Linux (WSL)
Are you a developer looking to set up a local development environment on your Windows system? Installing the LAMP stack on Windows Subsystem for Linux (WSL) is a great way to do just that. In this guide, we will walk you through the steps to install Apache, MySQL, and PHP on WSL.
Step 1: Enable WSL Feature on Windows
Before you can install the LAMP stack on WSL, you need to enable the WSL feature on your Windows machine. To do this, follow these steps:
- Open PowerShell as an administrator
- Run the command:
wsl --install
- Restart your computer when prompted
Step 2: Install Ubuntu on WSL
With the WSL feature enabled, you can now install Ubuntu as your Linux distribution on WSL. Follow these steps to set up Ubuntu on WSL:
- Open the Microsoft Store
- Search for “Ubuntu” and install it
- Launch Ubuntu from the Start menu
Step 3: Install LAMP Stack Components
Now that you have Ubuntu running on WSL, it’s time to install the LAMP stack components. Follow the commands below to install Apache, MySQL, and PHP:
sudo apt update
sudo apt install apache2
sudo apt install mysql-server
sudo apt install php libapache2-mod-php php-mysql
Step 4: Configure Apache and MySQL
After installing the LAMP stack components, you need to configure Apache and MySQL to work together. Follow these steps to set up Apache and MySQL:
Edit the Apache configuration file:
sudo nano /etc/apache2/apache2.conf
Update the MySQL root password:
sudo mysql_secure_installation
Step 5: Test Your LAMP Stack Installation
Once you have completed the installation and configuration of the LAMP stack components, it’s time to test your setup. Open a web browser and navigate to http://localhost
. If you see the Apache default page, congratulations – your LAMP stack is up and running!
Conclusion
By following the steps outlined in this guide, you can easily install a LAMP stack on Windows Subsystem for Linux. Having a local development environment will streamline your workflow and make testing your web applications a breeze. Happy coding!