0

I have apache files downloaded, and I've not been able to install the, it keeps listing dependencies and when I check my list of installed packages, it lists apache2 as deinstall, I equally have not been able to run mysql either. What should I do, because the system is not connected to the internet.

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407

1 Answers1

1

Download:

$ lynx http://httpd.apache.org/download.cgi

Extract:

$ gzip -d httpd-NN.tar.gz
$ tar xvf httpd-NN.tar
$ cd httpd-NN

Configure:

$ ./configure --prefix=PREFIX

Compile:

$ make

Install:

$ make install

Customize:

$ vi PREFIX/conf/httpd.conf

Test:

$ PREFIX/bin/apachectl -k start
Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407