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

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

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

[*** 쓰기 금지단어 패턴 ***]
글 본문 중간에 업로드할 이미지를 추가하는 방법 : @@이미지이름@@
ex) @@foo.gif@@
1218 번 글의 답장글: Re: bind 9.x 대 소스컴파일 설치...
글쓴이: 산이 [홈페이지] 글쓴날: 2002년 11월 22일 20:14:01 금(저녁) 조회: 1887
[김도철]님이 남기신 글:

>
>산이님 
>리눅스에서 bind 9.x대 소스컴파일로 설치하고
싶은데요...
>rpm 설치말구요...
>
>부탁합니다. 

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

0. named 유저/그룹 추가

내용은 생략합니다.


1. 설정파일 복사

named.conf(/etc/named.conf)
rndc.conf(/etc/rndc.conf)
zone database files(/var/named/*)
named control script file(/etc/rc.d/init.d/named)

이런 설정파일들이 필요한데

실력이 된다면 매뉴얼을 참고로 해서
이런 파일을 손수 만들면 상관없지만 처음부터 만들려면
상당히 어렵습니다.

따라서 BIND/9.X를 RPM으로 설치한후에
이런 파일을 복사해 놓고 RPM BIND를 지웁니다.


2. build BIND/9.x

http://www.isc.org/products/BIND/bind9.html

에서 BIND/9.2.x를 다운로드한 다음
적당한 위치에 압축을 해제합니다.

# tar zxvf bind-9.2.1.tar.gz
# cd bind-9.2.1
#
# ./configure --help
Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
  --cache-file=FILE       cache test results in FILE
  --help                  print this message
  --no-create             do not create output files
  --quiet, --silent       do not print `checking...' messages
  --version               print the version of autoconf that created configure
Directory and file names:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [same as prefix]
  --bindir=DIR            user executables in DIR [EPREFIX/bin]
  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  --datadir=DIR           read-only architecture-independent data in DIR
                          [PREFIX/share]
  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
                          [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  --includedir=DIR        C header files in DIR [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  --infodir=DIR           info documentation in DIR [PREFIX/info]
  --mandir=DIR            man documentation in DIR [PREFIX/man]
  --srcdir=DIR            find the sources in DIR [configure dir or ..]
  --program-prefix=PREFIX prepend PREFIX to installed program names
  --program-suffix=SUFFIX append SUFFIX to installed program names
  --program-transform-name=PROGRAM
                          run sed PROGRAM on installed program names
Host type:
  --build=BUILD           configure for building on BUILD [BUILD=HOST]
  --host=HOST             configure for HOST [guessed]
  --target=TARGET         configure for TARGET [TARGET=HOST]
Features and packages:
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --x-includes=DIR        X include files are in DIR
  --x-libraries=DIR       X library files are in DIR
--enable and --with options recognized:
  --with-openssl[=PATH]   Build with OpenSSL [yes|no|path].
                          (Required for DNSSEC)
  --with-randomdev=PATH Specify path for random device
  --enable-threads      enable multithreading
  --with-ptl2           on NetBSD, use the ptl2 thread library (experimental)
  --with-purify[=PATH]  use Rational purify
  --with-libtool        use GNU libtool (following indented options supported)
    --enable-shared[=PKGS]  build shared libraries [default=yes]
    --enable-static[=PKGS]  build static libraries [default=yes]
    --enable-fast-install[=PKGS]  optimize for fast installation [default=yes]
    --with-gnu-ld           assume the C compiler uses GNU ld [default=no]
    --disable-libtool-lock  avoid locking (might break parallel builds)
    --with-pic              try to use only PIC/non-PIC objects [default=use both]
  --enable-libbind              build libbind [default=no]
  --enable-ipv6         use IPv6 [default=autodetect]
  --with-kame[=PATH]    use Kame IPv6 [default path /usr/local/v6]
  --disable-linux-caps  disable linux capabilities

# ./configure \
    --prefix=/usr/local/bind \
    --sysconfdir=/etc \
    --with-libtool \
    --with-openssl=/usr \
    --enable-threads


--prefix 옵션이 없다면 기본적으로 /usr/local 로 설치됩니다.

# make
#
# make install


3. 설정파일 복사 및 편집

특히 /etc/rc.d/init.d/named 스크립트에서 named, rndc의 PATH가
바뀌기 때문에 수정해야 합니다.


4. 마무리($PATH)

# cd /usr/local/bind/bin
# ln -sf * ../../bin/.
# cd ../sbin
# ln -sf * ../../sbin/.


설치하다가
잘모르는 부분이 있다면 해당 부분을 다시 질문해 주세요


EOF


 
이전글 : bind 9.x 대 소스컴파일 설치...
다음글 : Re: Re: bind 9.x 대 소스컴파일 설치...  
 from 61.254.75.40
JS(Redhands)Board 0.4 +@

bind 9.x 대 소스컴파일 설치... Re: Re: bind 9.x 대 소스컴파일 설치...
인쇄용 


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

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