20080710 Installation of Apache2
- Development/Tools
- 2008. 7. 11.
[C] Installiation of Apache2 (HOW-TO)
-----------------------------------------
A) Using Ubuntu Specific Command
* installationg command
$> sudo apt-get install apache2* directory information
/etc/apache2 <= apache설정파일 위치 /usr/lib/apache2 <= modules 위치 /etc/init.d/apache2 <= stop, start, reload 스크립트 /usr/sbin/a2* 실행파일 <= apache mod, site 설정, 헤제 스크립트
[comments]
* intsalled apache server by using 'apt' command of ubuntu, however, it turned out
different from normal way of configuration
* ubuntu serves its own of configuration
* it could take more time to figure out how to install others modules and usse it
* finally, installing the apache server in the standard way seems recommendable
B) Using Standard Linux Command
1) Preparation of source file
cd /usr/local/src sudo wget http://mirror.oss.or.kr/pub/apache/httpd/httpd-2.2.4.tar.gz sudo tar xvfz httpd-2.2.4.tar.gz cd httpd-2.2.42) Configuration before installation
- sudo ./configure --prefix=/usr/apache --enable-so
- sudo make
- sudo make install
* before installation, build-essential sould be installed in advance
; sudo aptitude install build-essential
3) confiuration of apache service port
sudo ./configure --prefix=/usr/apache --enable-so sudo make sudo make install4) execution
- /usr/apache/bin/apachectl start (stop, restart)
- check whether it shows "It works!" message on the web browser
'Development > Tools' 카테고리의 다른 글
hudson - 프로젝트 생성하기 (0) | 2010.06.26 |
---|---|
무료 SVN - www.unfuddle.com 화면 구성 소개 (0) | 2010.06.20 |
무료 SVN - www.assembla.com (0) | 2010.06.15 |
무료 SVN - www.unfuddle.com (0) | 2010.06.15 |
Hudson - 설치하기 (0) | 2010.06.14 |
내 VIM이 설치된 곳은 어디? (0) | 2008.10.29 |
Ubuntu에서 VIM이 재설치가 안될때 (0) | 2008.07.14 |
Install Ubuntu 7.10 & VMware-tools (0) | 2008.07.11 |