“Iniciar el servidor Apache en Ubuntu” Código de respuesta

Iniciar 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

Cómo instalar Apache Server en Ubuntu

sudo apt update
sudo apt install apache2
Victorious Vole

Iniciar el servidor Apache en 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

Respuestas similares a “Iniciar el servidor Apache en Ubuntu”

Preguntas similares a “Iniciar el servidor Apache en Ubuntu”

Más respuestas relacionadas con “Iniciar el servidor Apache en Ubuntu” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código