4

I recently installed lampp and apache is unable to start because there is another web server already running. How do I disable whatever default server might be running in Ubuntu 12.04?

1 Answers1

3

Running the following command should work:

service {apache2,httpd} stop

and you may also run:

chkconfig apache2 off
Aditya
  • 13,416
OmPS
  • 739