Srivi
Srivi

Reputation: 211

How to install Apache httpd as a non root user?

On our server we have app account with no root privileges. We cannot run Yum or rpm.

Upvotes: 2

Views: 8566

Answers (1)

Daniel Ferradal
Daniel Ferradal

Reputation: 2900

  1. Download source
  2. Decompress it.
  3. cd to httpd source directory
  4. ./configure --prefix=/home/youruser/httpd -otheroptionshere
  5. make install

More detail info about this procedure in the official httpd docs: http://httpd.apache.org/docs/2.4/install.html

Upvotes: 2

Related Questions