Answers for "install laravel lamp ubuntu"

1

install lamp ubunto

sudo apt update

sudo apt install apache2
sudo ufw app list
sudo ufw allow "Apache Full"

sudo apt install mysql-server
sudo mysql

CREATE USER 'phpmyadmin'@'localhost' IDENTIFIED BY 'YOUTPASSWORD';
GRANT ALL PRIVILEGES ON *.* TO 'phpmyadmin'@'localhost';
flush privileges;

sudo apt install php libapache2-mod-php php-mysql php-curl php-zip php-gd php-mbstring php-xml
or
sudo apt install php7.4 libapache2-mod-php7.4 php7.4-mysql php7.4-curl php7.4-zip php7.4-gd php7.4-mbstring php7.4-xml
if error
sudo apt install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt update
Posted by: Guest on May-26-2022
0

ubuntu install lamp

sudo apt-get install lamp-server^
Posted by: Guest on July-28-2021

Code answers related to "install laravel lamp ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language