Aquí va una lista de los comandos más habituales para administrar el servidor web Apache HTTP Server en sistemas Linux/Unix y Windows:
sudo systemctl start apache2 # Iniciar Apache (en Debian/Ubuntu)
sudo systemctl start httpd # Iniciar Apache (en CentOS/RHEL)
sudo systemctl stop apache2 # Detener Apache
sudo systemctl restart apache2 # Reiniciar Apache (cierra y abre conexiones)
sudo systemctl reload apache2 # Recargar configuración sin reiniciar (sin caída)
sudo systemctl status apache2 # Ver estado del servicio
sudo systemctl enable apache2 # Iniciar automáticamente al arrancar el sistema
sudo systemctl disable apache2 # Desactivar inicio automático
sudo tail -f /var/log/apache2/error.log # Monitorizar errores en tiempo real (Debian/Ubuntu)
sudo tail -f /var/log/httpd/error_log # CentOS/RHEL
net start Apache2.4 # Iniciar Apache
net stop Apache2.4 # Detener Apache
httpd -k restart # Reiniciar (desde la terminal con permisos)
httpd -k graceful # Recargar configuración sin desconexiones
sudo apachectl configtest # Verificar errores en archivos de configuración
apache2 -v # Debian/Ubuntu
httpd -v # CentOS/RHEL
apache2ctl -M # Debian/Ubuntu
httpd -M # CentOS/RHEL
sudo a2ensite mi-sitio.conf # Habilitar sitio
sudo a2dissite mi-sitio.conf # Deshabilitar sitio
rewrite
):
sudo a2enmod rewrite # Activar módulo
sudo a2dismod rewrite # Desactivar módulo
httpd
en lugar de apache2
.sudo apachectl configtest
antes de reiniciar./opt/lampp/lampp start
en Linux).