Last active
January 29, 2016 00:23
-
-
Save mdiener21/1c0a9c8cfa02aa1a557e to your computer and use it in GitHub Desktop.
install apache24 and ant windows 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#download apache binaries: http://www.apachelounge.com/download/ | |
#http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.10-win32-VC11.zip | |
#unzip to a location you have permissions on your machine | |
#go in to folder to install apache and start it | |
cd c:\Apache24\conf | |
# edit file httpd.conf | |
# change all directory paths to cd c:\Apache24\ | |
#install apache | |
#open cmd.exe as ADMINISTRATOR | |
# if you dont know how here: http://www.techsupportall.com/command-prompt-with-administrator-privileges/ | |
cd c:\Apache24\bin | |
httpd -k install | |
httpd -k start | |
# ANT install | |
# download windows binary http://ant.apache.org/bindownload.cgi | |
# http://mirror2.klaus-uwe.me/apache//ant/binaries/apache-ant-1.9.4-bin.zip | |
# unzip to location | |
#set environment varialbles | |
# JAVA_HOME | |
# c:\Program Files\Java\jre7\ | |
#unzip ant to some location and set it as home env variable | |
# ANT_HOME | |
# c:\02_DEV\apache-ant-1.9.4\ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment