Apache ne démarre pas Ubuntu

0

Quand je cours service apache2 start Je reçois la réponse

 * Starting web server apache2                                                  /usr/sbin/apache2ctl: 87: ulimit: error setting limit (Operation not permitted)
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
(13)Permission denied: make_sock: could not bind to address [::]:80
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
Action 'start' failed.
The Apache error log may have more information.
                                                                         [fail]

Lors de l'exécution de `netstat -tulpn | grep: 80

Je reçois la réponse.

(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp6       0      0 :::80                   :::*                    LISTEN     

Comment puis-je résoudre ça?


la source
Ceci est hors sujet pour Stackoverflow.
Jonathon Reinhart

Réponses:

2

Vous devez exécuter cette commande avec des autorisations d'administrateur. Appel sudo service apache2 start.

Et si cela n'aide pas. Aller pour su et après une connexion réussie, exécutez votre commande. Cela devrait marcher cette fois.

Patryk Ziemkowski
la source