“Inicie o servidor Apache no Ubuntu” Respostas de código

Inicie o Apache2 Ubuntu

# Restart Apache 2 server on Linux/Unix
sudo service apache2 restart

# Start Apache 2 server on Linux/Unix
sudo service apache2 start

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

# Reload Apache 2 server on Linux/Unix "No downtime!"
sudo service apache2 reload
Ugly Unicorn

Como instalar o Apache Server no Ubuntu

sudo apt update
sudo apt install apache2
Victorious Vole

Inicie o servidor Apache no 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
Inexpensive Impala

Respostas semelhantes a “Inicie o servidor Apache no Ubuntu”

Perguntas semelhantes a “Inicie o servidor Apache no Ubuntu”

Mais respostas relacionadas para “Inicie o servidor Apache no Ubuntu” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código