Ich habe lampp / xampp auf meinem Ubuntu 12.04 installiert. Nach der Installation liefen Apache und MySQL ordnungsgemäß. Nun, das sind sie nicht. Folgendes bekomme ich, wenn ich versuche, Apache auszuführen:
Befehl:
/etc/init.d/apache2 start
Ergebnis:
* Starting web server apache2
/usr/sbin/apache2ctl: 87: ulimit: error setting limit (Operation not permitted)
(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.
Akzeptierte Antwort:
Ich vermute, Sie haben das sudo
vergessen :
sudo /etc/init.d/apache2 start
Der bessere Weg, Apache (oder einen anderen init.d-Dienst) zu starten, ist:
sudo service apache2 start