installing latest apache on centos
- by fivelitresofsoda
hi,
I'm trying to install the newest version of apache on my centos server. I did the following:
Download $ wget http://httpd.apache.org/path/to/latest/version/
Extract $ gzip -d httpd-2_0_NN.tar.gz
$ tar xvf httpd-2_0_NN.tar
Configure $ ./configure
Compile $ make
Install $ make install
Test $ PREFIX/bin/apachectl start
And that all worked except the last step, when i type apachectl start it says 'command not found'. I ran this command from /usr/local/apache2/bin/ where it is installed but no cigar. Any idea what i am doing wrong? Thanks.