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년 전 | 3543 | ||
| 929 |
|
19년 전 | 2703 | |
| 928 |
|
19년 전 | 3455 | |
| 927 |
|
19년 전 | 3442 | |
| 926 |
|
19년 전 | 3147 | |
| 925 | 19년 전 | 5433 | ||
| 924 |
|
19년 전 | 2167 | |
| 923 |
|
19년 전 | 2219 | |
| 922 |
|
19년 전 | 2314 | |
| 921 |
|
19년 전 | 3406 | |
| 920 | 19년 전 | 3706 | ||
| 919 |
|
19년 전 | 3746 | |
| 918 |
|
19년 전 | 2361 | |
| 917 |
|
19년 전 | 2399 | |
| 916 |
|
19년 전 | 2701 | |
| 915 | 19년 전 | 3043 | ||
| 914 | 19년 전 | 2457 | ||
| 913 | 19년 전 | 2626 | ||
| 912 | 19년 전 | 2460 | ||
| 911 | 19년 전 | 2213 | ||
| 910 | 19년 전 | 3245 | ||
| 909 | 19년 전 | 3298 | ||
| 908 | 19년 전 | 3036 | ||
| 907 |
|
19년 전 | 4872 | |
| 906 |
|
19년 전 | 2713 | |
| 905 |
|
19년 전 | 3316 | |
| 904 |
|
19년 전 | 3144 | |
| 903 |
|
19년 전 | 1993 | |
| 902 |
|
19년 전 | 3137 | |
| 901 |
|
19년 전 | 1876 | |
| 900 |
|
19년 전 | 2334 | |
| 899 |
|
19년 전 | 2402 | |
| 898 |
|
19년 전 | 3984 | |
| 897 |
|
19년 전 | 3186 | |
| 896 |
|
19년 전 | 3101 | |
| 895 |
|
19년 전 | 2538 | |
| 894 |
|
19년 전 | 2014 | |
| 893 |
|
19년 전 | 1643 | |
| 892 |
|
19년 전 | 2414 | |
| 891 |
|
19년 전 | 2330 | |
| 890 |
|
19년 전 | 1815 | |
| 889 |
|
19년 전 | 1810 | |
| 888 |
|
19년 전 | 2608 | |
| 887 |
|
19년 전 | 2580 | |
| 886 |
|
19년 전 | 1874 | |
| 885 |
|
19년 전 | 2111 | |
| 884 |
|
19년 전 | 3301 | |
| 883 |
|
19년 전 | 1952 | |
| 882 |
|
19년 전 | 2498 | |
| 881 |
|
19년 전 | 2580 | |
| 880 |
|
19년 전 | 2661 | |
| 879 |
|
19년 전 | 2939 | |
| 878 |
|
19년 전 | 2559 | |
| 877 |
|
19년 전 | 2983 | |
| 876 |
|
19년 전 | 2761 | |
| 875 |
|
19년 전 | 3522 | |
| 874 | 19년 전 | 1871 | ||
| 873 | 19년 전 | 2734 | ||
| 872 |
|
19년 전 | 2373 | |
| 871 |
|
19년 전 | 2016 | |
| 870 |
|
19년 전 | 2427 | |
| 869 |
|
19년 전 | 1871 | |
| 868 |
|
19년 전 | 5438 | |
| 867 |
|
19년 전 | 2259 | |
| 866 |
|
19년 전 | 4260 | |
| 865 |
|
19년 전 | 2302 | |
| 864 | 19년 전 | 1849 | ||
| 863 | 19년 전 | 2602 | ||
| 862 | 19년 전 | 2331 | ||
| 861 | 19년 전 | 2533 | ||
| 860 | 19년 전 | 2160 | ||
| 859 | 19년 전 | 3924 | ||
| 858 | 19년 전 | 3416 | ||
| 857 | 19년 전 | 2198 | ||
| 856 |
Power
|
19년 전 | 2106 | |
| 855 | 19년 전 | 1971 | ||
| 854 | 19년 전 | 2000 | ||
| 853 |
pearly
|
19년 전 | 4386 | |
| 852 |
pearly
|
19년 전 | 3357 | |
| 851 | 19년 전 | 2773 | ||
| 850 |
pearly
|
19년 전 | 3353 | |
| 849 |
pearly
|
19년 전 | 3013 | |
| 848 |
pearly
|
19년 전 | 2841 | |
| 847 | 19년 전 | 2360 | ||
| 846 |
|
19년 전 | 2170 | |
| 845 |
pearly
|
19년 전 | 2490 | |
| 844 | 19년 전 | 3099 | ||
| 843 | 19년 전 | 2131 | ||
| 842 |
pearly
|
19년 전 | 3122 | |
| 841 |
pearly
|
19년 전 | 3244 | |
| 840 | 19년 전 | 2925 | ||
| 839 |
|
19년 전 | 1941 | |
| 838 |
|
19년 전 | 1704 | |
| 837 |
|
19년 전 | 2325 | |
| 836 |
|
19년 전 | 2268 | |
| 835 |
|
19년 전 | 1643 | |
| 834 |
|
19년 전 | 1666 | |
| 833 |
|
19년 전 | 1571 | |
| 832 |
|
19년 전 | 2067 | |
| 831 |
|
19년 전 | 1616 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기