19. apache server 설치
** apache_1.3.27.tar.gz 과 aix.patch.txt 를 업로드 후 설치
작업의 편의성을 위해 mv aix.patch.txt aix.patch 로 이름 변경을 먼저한다.
tar xvfz apache_1.3.27.tar.gz &&
cp aix.patch apache_1.3.27 &&
cd apache_1.3.27 &&
patch -p0 < aix.patch &&
SSL_BASE=/usr/local \
EAPI_MM=/usr/local/mm \
./configure \
--prefix=/usr/local/apache \
--enable-shared=max \
--enable-rule=SHARED_CORE \
--enable-module=so &&
make &&
make install &&
vi /usr/local/apache/conf/httpd.conf
** cp 는 복사하는 명령으로,
위 명령줄은 aix.patch 는 아파치 소스디렉토리로 복사하라는 명령
patch -p0 < aix.patch
patch -p1 < aix.patch
p0 은 소스디렉토리에서 직접 패치
p1 은 소스디렉토리 밖에서 패치할 때
php 나 jsp 등과 동적으로 연결하기 위해서 shared_core 를 사용한다.
** 아래는 vi /usr/local/apache/conf/httpd.conf 를 수정하는 내용부분이다.
사용할 항목이 주석처리되어 있으면 주석을 없애준다.
ServerAdmin 을 수정 예) webmaster@hspia.net
ServerName 을 수정 예) www.hspia.net
적용후 저장하고 나온 후 아래 명령을 실행한다.
cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd &&
cd /etc/rc.d/rc3.d &&
ln -s ../init.d/httpd S20httpd &&
ln -s ../init.d/httpd K20httpd &&
chown -R nobody:nobody /usr/local/apache/htdocs &&
/etc/rc.d/init.d/httpd start &&
ps -aux
** 아파치 데몬 스타트 명령 부분 /etc/rc.d/init.d/httpd start
현재 시스템에서 프로세스 확인 부분 ps -aux
위 적용이 끝나면 웹에서 확인을 한다.
옵션>> 오라클 8i 설치 시 아래 부분을 적용한다.
tar xfz i386-glibc-2.1-linux.tar.gz
glibc-2.1 지원을 위한 소스 압축해제(압축해제시 / 디렉토리에서 수행할 것)
압축이 /usr/include/i386-glibc-2.1-linux로 풀린다.
cd /usr/bin &&
mkdir saved &&
mv gcc cc ld saved &&
ln -sf /usr/i386-glibc-2.1-linux/bin/i386-glibc21-linux-gcc gcc &&
ln -sf gcc cc &&
ln -sf /usr/i386-glibc-2.1-linux/bin/i386-glibc21-linux-ld ld &&
cd /usr/lib &&
mkdir saved &&
mv libc.so libdl.so libm.so libpthread.so saved &&
mv libc.a libdl.a libm.a libpthread.a saved
아래는 오라클 설치 완료 후 원래 상태로 복원하는 부분이다.
--RESTORE--
cd /usr/bin &&
rm -f gcc cc ld &&
cd /usr/bin/saved &&
mv * .. &&
cd .. &&
rm -rf saved &&
cd /usr/lib/saved &&
mv * .. &&
cd .. &&
rm -rf saved<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
** apache_1.3.27.tar.gz 과 aix.patch.txt 를 업로드 후 설치
작업의 편의성을 위해 mv aix.patch.txt aix.patch 로 이름 변경을 먼저한다.
tar xvfz apache_1.3.27.tar.gz &&
cp aix.patch apache_1.3.27 &&
cd apache_1.3.27 &&
patch -p0 < aix.patch &&
SSL_BASE=/usr/local \
EAPI_MM=/usr/local/mm \
./configure \
--prefix=/usr/local/apache \
--enable-shared=max \
--enable-rule=SHARED_CORE \
--enable-module=so &&
make &&
make install &&
vi /usr/local/apache/conf/httpd.conf
** cp 는 복사하는 명령으로,
위 명령줄은 aix.patch 는 아파치 소스디렉토리로 복사하라는 명령
patch -p0 < aix.patch
patch -p1 < aix.patch
p0 은 소스디렉토리에서 직접 패치
p1 은 소스디렉토리 밖에서 패치할 때
php 나 jsp 등과 동적으로 연결하기 위해서 shared_core 를 사용한다.
** 아래는 vi /usr/local/apache/conf/httpd.conf 를 수정하는 내용부분이다.
사용할 항목이 주석처리되어 있으면 주석을 없애준다.
ServerAdmin 을 수정 예) webmaster@hspia.net
ServerName 을 수정 예) www.hspia.net
적용후 저장하고 나온 후 아래 명령을 실행한다.
cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd &&
cd /etc/rc.d/rc3.d &&
ln -s ../init.d/httpd S20httpd &&
ln -s ../init.d/httpd K20httpd &&
chown -R nobody:nobody /usr/local/apache/htdocs &&
/etc/rc.d/init.d/httpd start &&
ps -aux
** 아파치 데몬 스타트 명령 부분 /etc/rc.d/init.d/httpd start
현재 시스템에서 프로세스 확인 부분 ps -aux
위 적용이 끝나면 웹에서 확인을 한다.
옵션>> 오라클 8i 설치 시 아래 부분을 적용한다.
tar xfz i386-glibc-2.1-linux.tar.gz
glibc-2.1 지원을 위한 소스 압축해제(압축해제시 / 디렉토리에서 수행할 것)
압축이 /usr/include/i386-glibc-2.1-linux로 풀린다.
cd /usr/bin &&
mkdir saved &&
mv gcc cc ld saved &&
ln -sf /usr/i386-glibc-2.1-linux/bin/i386-glibc21-linux-gcc gcc &&
ln -sf gcc cc &&
ln -sf /usr/i386-glibc-2.1-linux/bin/i386-glibc21-linux-ld ld &&
cd /usr/lib &&
mkdir saved &&
mv libc.so libdl.so libm.so libpthread.so saved &&
mv libc.a libdl.a libm.a libpthread.a saved
아래는 오라클 설치 완료 후 원래 상태로 복원하는 부분이다.
--RESTORE--
cd /usr/bin &&
rm -f gcc cc ld &&
cd /usr/bin/saved &&
mv * .. &&
cd .. &&
rm -rf saved &&
cd /usr/lib/saved &&
mv * .. &&
cd .. &&
rm -rf saved<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 930 | 19년 전 | 3550 | ||
| 929 |
|
19년 전 | 2710 | |
| 928 |
|
19년 전 | 3458 | |
| 927 |
|
19년 전 | 3445 | |
| 926 |
|
19년 전 | 3150 | |
| 925 | 19년 전 | 5435 | ||
| 924 |
|
19년 전 | 2170 | |
| 923 |
|
19년 전 | 2226 | |
| 922 |
|
19년 전 | 2317 | |
| 921 |
|
19년 전 | 3413 | |
| 920 | 19년 전 | 3712 | ||
| 919 |
|
19년 전 | 3749 | |
| 918 |
|
19년 전 | 2368 | |
| 917 |
|
19년 전 | 2401 | |
| 916 |
|
19년 전 | 2709 | |
| 915 | 19년 전 | 3053 | ||
| 914 | 19년 전 | 2467 | ||
| 913 | 19년 전 | 2629 | ||
| 912 | 19년 전 | 2463 | ||
| 911 | 19년 전 | 2220 | ||
| 910 | 19년 전 | 3252 | ||
| 909 | 19년 전 | 3312 | ||
| 908 | 19년 전 | 3044 | ||
| 907 |
|
19년 전 | 4877 | |
| 906 |
|
19년 전 | 2719 | |
| 905 |
|
19년 전 | 3321 | |
| 904 |
|
19년 전 | 3157 | |
| 903 |
|
19년 전 | 1998 | |
| 902 |
|
19년 전 | 3152 | |
| 901 |
|
19년 전 | 1884 | |
| 900 |
|
19년 전 | 2345 | |
| 899 |
|
19년 전 | 2405 | |
| 898 |
|
19년 전 | 3988 | |
| 897 |
|
19년 전 | 3190 | |
| 896 |
|
19년 전 | 3107 | |
| 895 |
|
19년 전 | 2544 | |
| 894 |
|
19년 전 | 2021 | |
| 893 |
|
19년 전 | 1655 | |
| 892 |
|
19년 전 | 2420 | |
| 891 |
|
19년 전 | 2330 | |
| 890 |
|
19년 전 | 1816 | |
| 889 |
|
19년 전 | 1817 | |
| 888 |
|
19년 전 | 2613 | |
| 887 |
|
19년 전 | 2586 | |
| 886 |
|
19년 전 | 1877 | |
| 885 |
|
19년 전 | 2124 | |
| 884 |
|
19년 전 | 3309 | |
| 883 |
|
19년 전 | 1958 | |
| 882 |
|
19년 전 | 2507 | |
| 881 |
|
19년 전 | 2585 | |
| 880 |
|
19년 전 | 2666 | |
| 879 |
|
19년 전 | 2941 | |
| 878 |
|
19년 전 | 2563 | |
| 877 |
|
19년 전 | 2985 | |
| 876 |
|
19년 전 | 2764 | |
| 875 |
|
19년 전 | 3525 | |
| 874 | 19년 전 | 1874 | ||
| 873 | 19년 전 | 2738 | ||
| 872 |
|
19년 전 | 2377 | |
| 871 |
|
19년 전 | 2021 | |
| 870 |
|
19년 전 | 2429 | |
| 869 |
|
19년 전 | 1874 | |
| 868 |
|
19년 전 | 5444 | |
| 867 |
|
19년 전 | 2271 | |
| 866 |
|
19년 전 | 4271 | |
| 865 |
|
19년 전 | 2305 | |
| 864 | 19년 전 | 1857 | ||
| 863 | 19년 전 | 2612 | ||
| 862 | 19년 전 | 2336 | ||
| 861 | 19년 전 | 2536 | ||
| 860 | 19년 전 | 2166 | ||
| 859 | 19년 전 | 3929 | ||
| 858 | 19년 전 | 3425 | ||
| 857 | 19년 전 | 2204 | ||
| 856 |
Power
|
19년 전 | 2109 | |
| 855 | 19년 전 | 1972 | ||
| 854 | 19년 전 | 2007 | ||
| 853 |
pearly
|
19년 전 | 4393 | |
| 852 |
pearly
|
19년 전 | 3359 | |
| 851 | 19년 전 | 2782 | ||
| 850 |
pearly
|
19년 전 | 3355 | |
| 849 |
pearly
|
19년 전 | 3016 | |
| 848 |
pearly
|
19년 전 | 2849 | |
| 847 | 19년 전 | 2370 | ||
| 846 |
|
19년 전 | 2178 | |
| 845 |
pearly
|
19년 전 | 2500 | |
| 844 | 19년 전 | 3108 | ||
| 843 | 19년 전 | 2137 | ||
| 842 |
pearly
|
19년 전 | 3126 | |
| 841 |
pearly
|
19년 전 | 3254 | |
| 840 | 19년 전 | 2931 | ||
| 839 |
|
19년 전 | 1947 | |
| 838 |
|
19년 전 | 1708 | |
| 837 |
|
19년 전 | 2332 | |
| 836 |
|
19년 전 | 2275 | |
| 835 |
|
19년 전 | 1651 | |
| 834 |
|
19년 전 | 1668 | |
| 833 |
|
19년 전 | 1576 | |
| 832 |
|
19년 전 | 2069 | |
| 831 |
|
19년 전 | 1617 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기