Hi There,
I understand that you need information on the steps to setup Debian LAMP extras file for the Debian image similar to the help found with Amazon Linux 2 extras command "sudo amazon-linux-extras install -y lamp-mariadb10.2-php7.2 php7.2".
I have found that Debian setup differs as there is no straight forward command to setup LAMP[1] and to add the package repository to Debian[2] since debian does not support linux extras to say , below I outlined steps that can be followed to Install LAMP on Debian, further more you can follow the documentation [1].
- Updating the Debian Linux, run:
sudo -- sh -c 'apt update && apt upgrade'
- Install Apache, execute:
sudo apt install apache2
- Update the Firewall and open port 80 and 443, run:
sudo ufw allow in "WWW Full"
- Set up MariaDB:
sudo apt install mariadb-server
- Secure your MariaDB server, type:
sudo mysql_secure_installation
- PHP installation:
sudo apt install php libapache2-mod-php php-gd php-mysql
I hope you find this information helpful.
Have a great day ahead.
References: ==============
[1] https://wiki.debian.org/LaMp
[2] https://wiki.debian.org/DebianRepository/Setup#Debian_Repository_Types
** Please note that I personally value your feedback, please accept this answer if you find it helpful to you. **
Relevant questions
AWS VPS (Preferably Debian) with GPU and Python 3.8?
asked 7 months agoHow to install a GUI in Amazon Linux 2022?
asked 7 days agoDebian Lamp Setup
asked 2 months agoUpdate nginx 1.20.0 on Amazon Linux Extras
asked a month agoamazon-linux-extras support for PHP 7.4
asked 3 years agoCloud9 || PHP version
asked 2 months agojava-11-openjdk-devel for Amazon Linux 2
asked 4 years agoIs there antivirus software recommended to install AWS Linux 2 system?
asked 3 months agoHow to request php8.1 to be added to amazon-linux-extras
asked 4 months agoamazon-linux-extras install epel broken on ARM64 instances
asked 6 months ago