aix 6.1 tl8
1. rpm 다운로드
http://gnome.bullfreeware.com/aixtoolbox/RPMS/ppc/apache/
2. 설치
#rpm -Uvh httpd-2.2.4-1.aix5.2.ppc.rpm
error: failed dependencies:
libexpat.a(libexpat.so.0) is needed by httpd-2.2.9-1
-> error발생 expat설치
* expat 다운
http://www-03.ibm.com/systems/power/software/aix/linux/toolbox/date.html
다시 설치
#rpm -Uvh expat-2.0.1-2.aix5.3.ppc.rpm
# rpm -Uvh httpd-2.2.9-1.aix6.1.ppc.rpm
3. 확인
#which http
#rpm -qa
4. 실행
#/opt/freeware/apache/bin/apachectl start
5. 설정화일
/etc/opt/freeware/apache/conf/httpd.conf
lib못인식해서 실패 컴파일로 다시
aix용 리눅스 툴박스 다운로드
http://www-03.ibm.com/systems/power/software/aix/linux/toolbox/ezinstall.html
m4-1.4.13-1.aix6.1.ppc.rpm
autoconf-2.63-1.aix6.1.noarch.rpm
automake-1.11-1.aix6.1.noarch.rpm
gcc-4.2.0-3.aix6.1.ppc.rpm
libtool-1.5.8-2.aix5.1.ppc.rpm
make-3.81-1.aix6.1.ppc.rpm
libgcc-4.2.0-3.aix6.1.ppc.rpm
libstdcplusplus-4.2.0-3.aix6.1.ppc.rpm
libstdcplusplus-devel-4.2.0-3.aix6.1.ppc.rpm
gcc-cplusplus-4.2.0-3.aix6.1.ppc.rpm
-> 요 순서대로 깔으세요!
6. apache 소스 다운로드
httpd-2.2.27.tar.gz
-> 다운 받고
#gzip -d httpd-2.2.27.tar.gz
#tar -xvf httpd-2.2.27.tar.gz
-> 풀고
#./configure --prefix=/usr/local/apache2 \
--enable-module=rewrite \
--enable-module=so \
--enable-module=shared \
--enable-so=rewrite \
--enable-module=proxy \
--enable-so=proxy ;
#make
#make install
-> 설치끝
7. 설정
#cd /usr/local/apache2/conf
#vi httpd.conf
user daemon
group daemon
-> daemon을 다른 아무 계정으로 변경 난 woomun
8. 시작
#/usr/local/apache2/bin/apachectl start
error
httpd: Could not reliably determine the server's fully qualified domain name
#vi httpd.conf
ServerName localhost
->요거 추가
it work!
끝
[출처] aix apache 설|작성자 안녕
'SERVER > 회사서버셋팅중참조' 카테고리의 다른 글
1. 기동은 다양한 절차에 의해서 이루어집니다. (0) | 2014.08.27 |
---|---|
CentOS 7 Apache 2.4 설치방법 (0) | 2014.08.27 |
PCRE 설치관련 (0) | 2014.08.27 |
AIX RPM 패키지모음 (0) | 2014.08.27 |
아파치 웹서버 와 tomcat 연동하기 - tomcat connector(mod_jk) , reverse proxy (0) | 2014.08.27 |
파일질라 ver 3.4.0 오류메세지 (0) | 2014.08.27 |
jBoss7 admin 계정 생성 (0) | 2014.08.27 |
tar 명령어 (0) | 2014.08.27 |