Requisitos
- Acceso SSH al servidor Linux/Unix.
- Permisos de superusuario o capacidad para usar
sudo
.
sudo -s
Iniciar, Detener y Reiniciar Apache en Diferentes Distribuciones
1. Distribuciones Debian/Ubuntu:
Para versiones de Debian 7.X y Ubuntu 14.10 o anteriores:
Iniciar Apache:
sudo /etc/init.d/apache2 start
Detener Apache:
sudo /etc/init.d/apache2 stop
Reiniciar Apache:
sudo /etc/init.d/apache2 restart
Para versiones Debian 8.X+ o Ubuntu 15.04+:
Iniciar Apache:
sudo systemctl start apache2.service
Detener Apache:
sudo systemctl stop apache2.service
Reiniciar Apache:
sudo systemctl restart apache2.service
2. Distribuciones CentOS/RHEL (Red Hat):
Para versiones CentOS/RHEL 6.X o anteriores:
Iniciar Apache:
service httpd start
Detener Apache:
service httpd stop
Reiniciar Apache:
service httpd restart
Para versiones CentOS/RHEL 7.X o posteriores:
Iniciar Apache:
sudo systemctl start httpd.service
Detener Apache:
sudo systemctl stop httpd.service
Reiniciar Apache:
sudo systemctl restart httpd.service
3. Otros Sistemas y Comandos Genéricos:
Iniciar, detener o reiniciar Apache utilizando apachectl
:
sudo apachectl start|stop|restart
Revisar la configuración de Apache:
sudo apachectl configtest
Conoce el estado de Apache:
sudo systemctl status apache2.service
Quizás te interesé como arreglar el puerto 80 de Apache