Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

How to install LAMP in Ubuntu 18.04?

sudo apt-get update -y
 
sudo apt install apache2 // install apache 2
 
sudo ufw app list // adjust your firewall settings to allow HTTP traffic
 
sudo ufw allow in "Apache"
 
sudo ufw status // check status
 
sudo apt install mysql-server // install mysql database
 
sudo mysql_secure_installation // set user and password
 
sudo mysql // enter into database to verify
 
exit // exit from database
 
sudo apt install php libapache2-mod-php php-mysql // install latest php and php-ext
 
php -v // verify php version
Comment

hoe to install LAMP on ubuntu

sudo apt-get install tasksel
sudo tasksel install lamp-server
Comment

ubuntu server lamp installation

sudo tasksel install lamp-server
Comment

ubuntu install lamp

sudo apt-get install lamp-server^
Comment

PREVIOUS NEXT
Code Example
Shell :: sudo apt uninstall 
Shell :: check if systemctl service is running linux 
Shell :: reboot pi from command line 
Shell :: fusion 360 on linux 
Shell :: git update password 
Shell :: linux restart sendmail 
Shell :: Ports are not available: listen tcp 0.0.0.0:61616: bind: An attempt was made to access a socket in a way forbidden by its access permissions. 
Shell :: ip info on ubuntu 
Shell :: export requirements from python venv 
Shell :: linux port 
Shell :: imagemagick add background to transparent png 
Shell :: bittorrent download linux 
Shell :: npm install typeorm 
Shell :: bat turn echo off 
Shell :: how to add color in text github readme 
Shell :: substring in shell script 
Shell :: openssl universal requires cocoapods openssl-universal 
Shell :: scp server to local 
Shell :: remove trailing slash 
Shell :: How to use the sort command 
Shell :: create empty branch git 
Shell :: command line size of directory 
Shell :: ext-dom missing ubuntu 
Shell :: sudo tee trick 
Shell :: git see tags 
Shell :: how to update to latest LTS version of ubuntu 
Shell :: docker compose multiple command 
Shell :: rails scaffold 
Shell :: conda install camelot py 
Shell :: git initial commands 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =