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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1030 | 18년 전 | 1789 | ||
| 1029 | 18년 전 | 2222 | ||
| 1028 | 18년 전 | 2632 | ||
| 1027 | 18년 전 | 1793 | ||
| 1026 | 18년 전 | 1530 | ||
| 1025 | 18년 전 | 1543 | ||
| 1024 | 18년 전 | 1465 | ||
| 1023 | 18년 전 | 3229 | ||
| 1022 | 18년 전 | 2917 | ||
| 1021 | 18년 전 | 1676 | ||
| 1020 | 18년 전 | 3417 | ||
| 1019 | 18년 전 | 1843 | ||
| 1018 | 18년 전 | 1493 | ||
| 1017 | 18년 전 | 1961 | ||
| 1016 | 18년 전 | 2101 | ||
| 1015 | 18년 전 | 1634 | ||
| 1014 | 18년 전 | 2346 | ||
| 1013 | 18년 전 | 2003 | ||
| 1012 | 18년 전 | 1625 | ||
| 1011 | 18년 전 | 1785 | ||
| 1010 | 18년 전 | 2039 | ||
| 1009 | 18년 전 | 1806 | ||
| 1008 | 18년 전 | 1618 | ||
| 1007 | 18년 전 | 1666 | ||
| 1006 | 18년 전 | 3135 | ||
| 1005 | 18년 전 | 1999 | ||
| 1004 | 18년 전 | 1874 | ||
| 1003 | 18년 전 | 4369 | ||
| 1002 | 18년 전 | 4996 | ||
| 1001 | 18년 전 | 3166 | ||
| 1000 | 18년 전 | 2910 | ||
| 999 | 18년 전 | 3504 | ||
| 998 | 18년 전 | 2048 | ||
| 997 | 18년 전 | 2410 | ||
| 996 | 18년 전 | 2703 | ||
| 995 | 18년 전 | 2759 | ||
| 994 | 18년 전 | 2349 | ||
| 993 | 18년 전 | 1618 | ||
| 992 | 18년 전 | 3380 | ||
| 991 | 18년 전 | 1990 | ||
| 990 | 18년 전 | 2387 | ||
| 989 | 18년 전 | 2461 | ||
| 988 | 18년 전 | 2888 | ||
| 987 | 19년 전 | 5222 | ||
| 986 |
|
19년 전 | 2496 | |
| 985 |
|
19년 전 | 3346 | |
| 984 | 19년 전 | 4280 | ||
| 983 |
느낌좋은날
|
19년 전 | 2504 | |
| 982 | 19년 전 | 2467 | ||
| 981 | 19년 전 | 4042 | ||
| 980 | 19년 전 | 2749 | ||
| 979 |
Sinpre
|
19년 전 | 2990 | |
| 978 | 19년 전 | 2207 | ||
| 977 | 19년 전 | 2223 | ||
| 976 | 19년 전 | 1992 | ||
| 975 | 19년 전 | 3274 | ||
| 974 | 19년 전 | 2109 | ||
| 973 |
|
19년 전 | 2790 | |
| 972 |
|
19년 전 | 1748 | |
| 971 | 19년 전 | 5321 | ||
| 970 | 19년 전 | 3575 | ||
| 969 | 19년 전 | 4326 | ||
| 968 | 19년 전 | 3068 | ||
| 967 | 19년 전 | 2527 | ||
| 966 | 19년 전 | 3929 | ||
| 965 | 19년 전 | 2657 | ||
| 964 | 19년 전 | 2998 | ||
| 963 | 19년 전 | 2967 | ||
| 962 | 19년 전 | 4183 | ||
| 961 | 19년 전 | 3129 | ||
| 960 | 19년 전 | 3023 | ||
| 959 | 19년 전 | 3673 | ||
| 958 | 19년 전 | 2978 | ||
| 957 | 19년 전 | 2192 | ||
| 956 | 19년 전 | 2225 | ||
| 955 | 19년 전 | 2177 | ||
| 954 | 19년 전 | 2769 | ||
| 953 | 19년 전 | 2480 | ||
| 952 | 19년 전 | 3347 | ||
| 951 | 19년 전 | 3205 | ||
| 950 | 19년 전 | 1827 | ||
| 949 | 19년 전 | 2740 | ||
| 948 | 19년 전 | 7829 | ||
| 947 |
|
19년 전 | 2504 | |
| 946 |
DeepnBlue
|
19년 전 | 3107 | |
| 945 |
pearly
|
19년 전 | 2882 | |
| 944 | 19년 전 | 3027 | ||
| 943 |
|
19년 전 | 2232 | |
| 942 | 19년 전 | 2455 | ||
| 941 |
|
19년 전 | 4079 | |
| 940 | 19년 전 | 2235 | ||
| 939 |
|
19년 전 | 4220 | |
| 938 |
|
19년 전 | 2384 | |
| 937 | 19년 전 | 2079 | ||
| 936 |
|
19년 전 | 2330 | |
| 935 | 19년 전 | 1877 | ||
| 934 |
|
19년 전 | 2410 | |
| 933 | 19년 전 | 2203 | ||
| 932 |
|
19년 전 | 3073 | |
| 931 | 19년 전 | 1861 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기