Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reinstall apache on mac machine

Status
Not open for further replies.

gamog

Technical User
Jun 8, 2006
1
CA
I somehow deleted apache server on my mac. I dunno how to reinstall it. Does anybody know if there's easy to follow document on net? Or does somebody know how to reinstall it.
 
Download the UNIX src.tar.gz from the Apache website.

Decompress the files using
Code:
# gzip -d apache_1.3.36.tar.gz
# tar xf apache_1.3.36.tar.gz
Descend into the directory and compile, make, and make install
Code:
# ./configure --config-layout=Darwin
# make
# make test
# make install

M. Brooks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top