sun's longitude:241 42 47.73 
· 자유게시판 · 묻고답하기 · 알파문서 · RPMS list
· 사용자문서 · 팁/FAQ모음 · 리눅스Links · 자료실
· 서버정보 · 운영자 · Books/FAQ · FreeBSD
/board/read.php:소스보기  

질문과 답변 게시판입니다.

현재 실시간으로 이곳 서버의 설정파일(몇개)를 보여주고 있습니다.
서버의 설정내용에 관한 질문은 먼저 이곳 서버의 설정내용을 참고하시길 바랍니다.

[*** 쓰기 금지단어 패턴 ***]
글 본문 중간에 업로드할 이미지를 추가하는 방법 : @@이미지이름@@
ex) @@foo.gif@@
1872 번 글의 답장글: Re: Re: Re: mod_bandwidth를 사용하려는데..
글쓴이: 산이 [홈페이지] 글쓴날: 2004년 01월 16일 00:30:33 금(새벽) 조회: 787

[하얀피]님이 남기신 글:

>안녕하세요.
>답변 감사드립니다.
>말씀하신대로 하려고 했더니 DSO를 사용할 수 없게
빌드하여^^;;;;
>리빌드는 피할 수 없을것 같네요.
>그래서 이번에 작업하면서 그동안 하고 싶었던것들을 같이
컴파일 하려고 하는데요.
>일단 DSO사용을 위해 so 모듈을 올리고..
>rewrite 공부를 위해 rewrite 모듈도 올리고 싶고요.
>마지막으로 아파치 맥스 클라이언트수를
 좀 늘리려고요.
>아래는 제가 계획한 구성도 인데..
>빠진점이 있거나 문제점이 있으면 조언좀 부탁드리겠습니다.

>
>sheel> mv /usr/local/apache /usr/local/apache_old
>sheel> mv apache_1.3.27 apache_1.3.27_old
>sheel> tar xvfpz apache_1.3.27.tar.gz

>sheel> cp apache_1.3.27_old/config.status apache_1.3.27
이것은 필요치 않습니다.

>sheel> cd apache_1.3.27
>sheel> vi src/include/httpd.h
>define HARD_SERVER_LIMIT (256) -> (1024) 수정
>sheel> ./configure \
>--prefix=/usr/local/apache \
>--add-module=../mod_throttle-3.1.2/mod_throttle.c \
>--activate-module=src/modules/php4/libphp4.a \
>--includedir=/usr/include \
>--with-layout=Apache \
>--bindir=/usr/local/bin \
>--sbindir=/usr/local/sbin \
>--mandir=/usr/man \
>--sysconfdir=/usr/local/apache/conf \
>--enable-module=so \
>--enable-shared=max \
>--enable-module=rewrite \
>--enable-shared=rewrite \
>sheel>make; make install
>sheel>apxs -a -i -c ../mod_bandwidth/mod_bandwidth.c
>sheel>/usr/local/apache/conf/httpd.conf 수정
>sheel>apachectl start
>
>위와같이 계획을 구성하고 있습니다.
>질문이 있는데.. 위와 같이 할경우 php도 같이 리빌드 해야
하는지요??
>만약 php도 같이 해야 한다고 가정하고 아래와 같이 계획도
잡아봤습니다.

위의 방법은 틀렸습니다.
아래와 같이 PHP 도 함께 빌드해줘야 합니다.

>sheel> mv /usr/local/apache /usr/local/apache_old
>sheel> mv apache_1.3.27 apache_1.3.27_old
>sheel> tar xvfpz apache_1.3.27.tar.gz

>sheel> cp apache_1.3.27_old/config.status apache_1.3.27
이 줄은 필요치 않습니다.

>sheel> cd apache_1.3.27
>sheel> vi src/include/httpd.h
>define HARD_SERVER_LIMIT (256) -> (1024) 수정
>sheel> ./configure --prefix=/usr/local/apache
>sheel> cd ../
>sheel> tar xvfpz php-4.3.1.tar.gz
>sheel> cd php-4.3.1
>sheel> ./configure \
>--with-mysql=/usr/local/mysql \
>--with-apache=../apache_1.3.27 \
>--with-mod_charset \
>--enable-magic-quotes \
>--enable-force-cgi-redirect \
>--enable-track-var \
>--enable-memory-limit \
>--enable-inline-optimization \
>--with-zlib=/usr \
>--enable-freetype-4bit-antialias-hack \
>--with-gd=/usr \
>--with-system-regex \
>--enable-libgcc \
>--enable-calendar \
>--enable-ftp \
>--enable-url-fopen-wrapper \
>--with-tiff-dir=/usr \
>--with-png-dir=/usr \
>--enable-gd-native-ttf \
>--enable-gd-imgstrttf \
>--disable-debug
>sheel> make; make install
>sheel> cd ../apache_1.3.27
>sheel> ./configure \
>--prefix=/usr/local/apache \
>--add-module=../mod_throttle-3.1.2/mod_throttle.c \

--add-module=../mod_bandwidth/mod_bandwidth.c \

이것도 추가해 주세요.
만약 정적으로 붙지 않으면 아래와 같이 DSO 로 붙이면
됩니다.

>--activate-module=src/modules/php4/libphp4.a \
>--includedir=/usr/include \
>--with-layout=Apache \
>--bindir=/usr/local/bin \
>--sbindir=/usr/local/sbin \
>--mandir=/usr/man \
>--sysconfdir=/usr/local/apache/conf \
>--enable-module=so \
>--enable-shared=max \
>--enable-module=rewrite \
>--enable-shared=rewrite
>sheel>make; make install

>sheel>apxs -a -i -c ../mod_bandwidth/mod_bandwidth.c
이것은 아파치가 이미 설치된 상태에서 추가로
DSO 모듈로 설치하는 방법임.

>sheel>/usr/local/apache/conf/httpd.conf 수정
>sheel>apachectl start
>이것도 문제가 있는지 봐주세요^^;;
>
>마지막으로..
>다른거 아무것도 안하고 so 모듈만 올릴때는
>그냥 configure만 다시 한번 해주고 make; make install은 생략해도
되나요?
>그리고 php도 리빌드 안해도 되는지요??


DSO 모듈은 아파치-PHP 가 이미 설치가 되었을 경우에
아파치 기본모듈, 확장모듈, 3'th-part 모듈을 DSO 로 빌드해서
붙이는 방법을 말합니다.
따라서 아파치나 PHP 는 따로 빌드(make, make install)는 하지
않습니다.

PHP 나 앞에서 --add-module, 또는 --active-module 로 설정한
모듈이 서드파트(3'th-part)
 모듈이라고 합니다.

이런 서드파트 모듈은 아파치 코어에 정적으로 붙이면 성능이
좋지만 대신에 메모리를 좀 많이 먹고 나중에 업그레이할때
아파치도 다시 빌드해줘야 하는 단점이 있습니다.



>
>[산이]님이 남기신 글:
>
>>
>>[하얀피]님이 남기신 글:
>>
>>>안녕하세요^^

>>>추운 날씨에 감기는 안걸리고 잘 지내시는지...
>>>요즘따라 동영상을 돌리는 고객분들이 잦아짐에
따라
>>>대역폭이 장난 아니게 높아 지고 있습니다 ㅠ.ㅠ
>>>그래서 mod_bandwidth를 이용하여 제한을 좀 해보려
하는데요.
>>>현재 아파치가 정적 모듈로 운영되고 있기 때문에
>>>그에 따른 문의좀 드리려고 합니다.
>>>
>>>일단 첫번째 질문부터 드리자면..
>>>아파치를 설치할때 bandwidth를 붙이지 않았기에 리빌드 해야만
합니다.
>>>이런 상황에서 config.status만 수정하여 아파치만 리빌드 하면
되는지요?
>>>아니면 아파치와 php를 같이 리빌드 해야만 하는지..
>>>
>>>두번째 질문은...
>>>현재 제 아파치 소스 디렉 아래에 있는 config.status 파일
내용이
>>>[root@www apache_1.3.27]# cat config.status
>>>#!/bin/sh
>>>
>>>./configure \
>>>"--prefix=/usr/local/apache" \
>>>"--add-module=../mod_throttle-3.1.2/mod_throttle.c" \
>>>"--activate-module=src/modules/php4/libphp4.a" \
>>>"--includedir=/usr/include" \
>>>"--with-layout=Apache" \
>>>"--bindir=/usr/local/bin" \
>>>"--sbindir=/usr/local/sbin" \
>>>"--mandir=/usr/man" \
>>>"--sysconfdir=/usr/local/apache/conf" \
>>>"$@"
>>>[root@www apache_1.3.27]#
>>>이와 같습니다.
>>>위 상황에서 mod_bandwidth를 추가하려면...
>>>[root@www apache_1.3.27]# cat config.status
>>>#!/bin/sh
>>>
>>>./configure \
>>>"--prefix=/usr/local/apache" \
>>>"--add-module=../mod_throttle-3.1.2/mod_throttle.c" \
>>>"--add-module=../mod_bandwidth-1.3.0/mod_bandwidth.c" \
>>>"--activate-module=src/modules/php4/libphp4.a" \
>>>"--includedir=/usr/include" \
>>>"--with-layout=Apache" \
>>>"--bindir=/usr/local/bin" \
>>>"--sbindir=/usr/local/sbin" \
>>>"--mandir=/usr/man" \
>>>"--sysconfdir=/usr/local/apache/conf" \
>>>"--enable-module=bandwidth
>>>"$@"
>>>[root@www apache_1.3.27]#
>>>이렇게 한줄만 추가시켜주고 config.status를 실행해주면
될까요?
>>>
>>>마지막 질문으로..
>>>mod_bandwidth.c를
 다운받았는데
>>>http://www.apache.kr.net/dist/module/mod_bandwidth.c
>>>이곳에서 다운 받았습니다.
>>>mod_bandwidth.c 이 파일 하나만 있으면 되는지요?? 
>>
>>========================================
>>
>>현재 시스템이 잘 돌아가고 있으므로 굳지 정적인 모듈로
컴파일할
>>필요는 없습니다.
>>
>>DSO 로 .so 모듈을 만들고 로딩하면 됩니다.
>>
>>shell> apxs -a -i -c mod_bandwidth.c
>>
>>이렇게 하면 설치까지 됩니다.
>>
>>이제는 httpd.conf 파일을 열어서 설정해줘야 하는데
>>mod_bandwidth.c 파일을 열어보면 1/3 이 설명이군요.
>>
>>또는
>>
>>http://linux-sarang.net/board/?p=read&table=tip&no=488
>>
>>에 자세히 설명이 되어 있군요. 
>
>======================================== 

========================================

 
이전글 : Re: Re: mod_bandwidth를 사용하려는데..
다음글 : Re: Re: Re: Re: mod_bandwidth를 사용하려는데..  
 from 61.254.130.225
JS(Redhands)Board 0.4 +@

Re: Re: mod_bandwidth를 사용하려는데.. Re: Re: Re: Re: mod_bandwidth를 사용하려는데..
인쇄용 


apache lighttpd linuxchannel.net 
Copyright 1997-2024. linuxchannel.net. All rights reserved.

Page loading: 0.01(server) + (network) + (browser) seconds