1

I have downloaded apache2 from the official site and compiled and installed it per the given instructions there, but on running I get an error:

 ulimit: 88: error setting limit (Operation not permitted)
 /usr/sbin/apache2ctl: 148: /usr/sbin/apache2: not found
 The Apache error log may have more information.
qbi
  • 19,515
VENKI
  • 588

1 Answers1

1

You should just install the repository version:

sudo apt-get install apache2

Start it running like this:

sudo service apache2 restart

Assuming it's working, you should see a basic greeting at http://localhost/. If you're looking for CGI scripting, I found this question helpful; otherwise you can start putting static content to serve in /var/www/ or configuring the operation of Apache with /etc/apache2/apache2.conf.

Jjed
  • 14,064