Install LAMP Stack Server on WSL (Windows 10)
If you are looking for development locally. I recommend you use Docker instead.
Update System
sudo apt-get update && sudo apt-get upgrade
Download AMP
sudo apt-get install lamp-server^
Config Apache
# -e enables the terminal to recognize escape sequences.
echo -e 'Servername localhost\nAcceptFilter http none' | sudo tee -a /etc/apache2/apache2.conf
# start apache
sudo /etc/init.d/apache2 startYou can test on http://127.0.0.1 or http://localhost
Config MySQL
sudo service mysql start
sudo mysql
SELECT user, authentication_string, plugin, host FROM mysql.user;
ALTER user 'root'@'localhost' identified with mysql_native_password by 'YOURNEWPASSWORD';
sudo mysql -u root -p # for enter in mysql.
ALTER USER 'root'@'localhost' IDENTIFIED BY 'YOURNEWPASSWORD'; # change passwordInstall PHPMyAdmin
sudo apt-get install php-mbstring phpmyadmin
Setup Apache Hosts File
cd /etc/apache2/sites-available/
sudo nano example1.local.confAdd below code and save: Ctrl + O, save and Ctrl + X, exit.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName example1.local
ServerAlias *.example1.local
DocumentRoot /mnt/e/example1.local
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /mnt/e/example1.local>
Options Indexes FollowSymlinks MultiViews
AllowOverride All
# Order allow,deny
# Allow from all
Require all granted
</Directory>
</VirtualHost>And run below commands to enable example1.local website:
sudo a2ensite example1.local.conf
sudo service apache2 reload