ftp 접속시 connect 되는 시간이 늦어질때 /etc/proftpd.conf 파일의

13 번째 항목 부분을 아래와 같이 수정하면 바로 접속 되는것을

볼수 있을것이다.

# See - http://www.proftpd.org/docs/faq/linked/faq-ch4.html#AEN341

#

#13. Slow logins

#

#This is probably caused by a firewall or DNS timeout. By default ProFTPD will try to do both DNS and ident lookups against the incoming connection. If these are blocked or excessively delayed a slower than normal login will result. To turn off DNS and ident use:

#

UseReverseDNS off

IdentLookups off


위 ldentLookups를 off 로 해두면 접속시간이 빨라 진다.
2005/07/05 15:19 2005/07/05 15:19
일반적으로 grep 으로 해당 디렉터리에 위치한 파일들이 포함하고 있는 특정 문자열을 찾지만, 하위 디렉터리까지 찾을 때에는 다음과 같은 방법들을 많이 사용합니다.
cat * | grep 문자열 `ls`
find ./ -name '*' | xargs grep -ne '문자열'
find . -exec grep '문자열' {} /dev/null \;
grep -nHr 문자열 *
이 외에도 여러가지가 있지만 더욱 간단한 방법으로 다음의 명령으로 해결 할 수도 있습니다.
grep -R 문자열 *
하지만 간혹 구버전일 경우 -R 옵션이 없는 경우가 있을 수 있으며, 그러한 때에는 다음의 명령을 이용할 수도 있습니다.
grep --recursive "문자열" *
2005/07/05 15:18 2005/07/05 15:18
다운로드 소스
httpd-2.0.52.tar.gz (apache.org)
php-5.0.2.tar.tar (php.net)
libxml2-cvs-snapshot.tar.gz (xmlsoft.org)


#### libxml 설치하기 ####
1.)tar xvzf libxml2-cvs-snapshot.tar.gz
2.)./configure
3.)make
4.)make install

#### 아파치 설치하기 ####
1.) tar xvzf httpd-2.0.52.tar.gz
2.) ./configure --prefix=/usr/local/apache_2.0.52 --enable-rule=SHARED_CORE --enable-modules=so --enable-so
3.) make
4.) make install

#### php 설치 ####
1.) tar xvzf php-5.0.2.tar.tar
2.) ./configure --prefix=/usr/local/php_5.0.2 --with-apxs2=/usr/local/apache_2.0.52/bin/apxs --with-config-file-path=/usr/local/apache_2.0.52/conf --with-mysql=/usr/local/mysql
3.) make
4.) make install

httpd.conf , mysql 설치는 생략했습니다.
그리고 /usr/local/apache_2.0.52/bin/apachecl start 하시면
httpd.conf 파일이 없다고 안되실수도 있는데..이럴땐
ln -s /usr/local/apache_2.0.52/conf/httpd.conf /etc/httpd/conf/httpd.conf
해서 링크시키면 됩니다.
2005/07/05 15:18 2005/07/05 15:18