Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

reinstal apache2 ubuntu

sudo apt-get --purge remove apache2
sudo apt-get autoremove
sudo apt-get install apache2
sudo /etc/init.d/apache2 restart
Comment

install apache2 ubuntu

sudo apt update
sudo apt install apache2
Comment

how to install apache server in ubuntu

sudo apt update
sudo apt install apache2
Comment

start apache server in ubuntu

# Start Apache 2 server on Linux/Unix
sudo apt install apache2

# allow uncomplicated firewall
sudo ufw allow 'Apache'

# start the server
sudo service apache2 start

# /var/www/html/index.html is now live on =>
http://localhost/ 

# Stop Apache 2 server on Linux/Unix
sudo service apache2 stop

#remove apache2 packages
$ sudo apt-get purge apache2 apache2-utils apache2-bin apache2.2-common

# cleanup
$ sudo apt-get autoremove
Comment

How to install Apache 2 in Ubuntu?

sudo apt-get --purge remove apache2
 
sudo apt-get autoremove
 
sudo apt-get install apache2
 
sudo /etc/init.d/apache2 restart
Comment

ubuntu install apache

sudo apt-get install apache2
sudo /etc/init.d/apache2 restart
Comment

Install Apache2 Linux

sudo apt install apache2 -y
Comment

configure apache in ubuntu

service apache2 reload
Comment

PREVIOUS NEXT
Code Example
Shell :: command to check recent commit 
Shell :: convert pem to crt 
Shell :: windows powershell ise run as administrator 
Shell :: the unauthenticated git protocol on port 9418 
Shell :: tsc version showing 1.0.3.0 
Shell :: chagne remote origin git 
Shell :: print parte da tela ubuntu 
Shell :: firefox custom search engine 
Shell :: ubuntu install certbot apache 
Shell :: update git version 
Shell :: cannot install gcc on ubuntu 
Shell :: github quick setup page 
Shell :: git fetch prune 
Shell :: installing firefox on debian 
Shell :: How to Block apache Ports 
Shell :: Zathura not working 
Shell :: android sha1 generate 
Shell :: mac os htop not returning cpu 
Shell :: tar file 
Shell :: generate ssh in ubuntu 
Shell :: error install pyjnius in "chaquopy 
Shell :: how to see deleted commit git 
Shell :: sudo command without giving password 
Shell :: install git on wsl2 ubuntu 
Shell :: arch console set default keyboard layout 
Shell :: install brave fedora 
Shell :: gitlab clone with access token 
Shell :: check disk space ubuntu from terminal 
Shell :: docker run dockerfile without building 
Shell :: error Invalid plugin options for "gatsby-plugin-manifest": 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =