Horje
How to install LAMP in Ubuntu 20.04? Code Example
How to install LAMP in Ubuntu 20.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




Shell

Related
windows virtualenv pip numpy problem Code Example windows virtualenv pip numpy problem Code Example
Docker Kakfa Code Example Docker Kakfa Code Example
how to install bokeh version 2.4.1 rather than 2.4.2 Code Example how to install bokeh version 2.4.1 rather than 2.4.2 Code Example
connect postgres and install pg_trgm and btree_gist Code Example connect postgres and install pg_trgm and btree_gist Code Example
pull from upstream git Code Example pull from upstream git Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11