Hi All,
Hope you all are doing good.
I was trying to instal Apache HTTP server 2.2.24 on Linux.
I used the following command to instal it:
$ gzip -d httpd-NN.tar.gz
$ tar xvf httpd-NN.tar
$ cd httpd-NN
$ ./configure --prefix=PREFIX
$ make
$ make install
$ PREFIX/bin/apachectl -k start
NN must be replaced with the current version number, and PREFIX must be replaced with the filesystem path under which the server should be installed.
I could install it without any errors.
But under serverFolder/Modules I cant see any modules (*.so files)
and also, the modules are not loaded from httpd.conf(ServerFolder/conf/httpd.conf) file ( LoadModule lines)
I started the server, and when I tried opening the start page by host:port, it is throwing me the error:
“Forbidden You don’t have permission to access / on this server”
I am not sure, it is an installation issue or some permission issue post installation.
Can you please let me know what must be going wrong here.
Thanks in advance
Chandru