Saw the news yesterday, said bind 9.10. Version 3 has been officially released, can't wait to install try,,,
My previous article has experienced the individual new features of the RC version of BIND 9.10, see the bind 9.10 source installation and the new redirect type as well as the $generate instruction usage
System environment: CentOS 6.6 x86_64
1, download the bind 9.10.3 source package. http://isc.org
2, add user, and compile install bind
# Tar XF bind-9.10.3.tar.gz# cd bind-9.10.3# groupadd-r named# useradd-s/sbin/nologin-m-r-g named named#./configure --prefix=/usr/local/bind9.10.3--with-dlz-mysql=/usr/local/mysql5.6.26/--disable-chroot--enable-ipv6-- Enable-threads--localstatedir=/var/--with-python--datarootdir=/usr/# make-j 4 && make install
3, after the installation is complete, view the directory tree, and check whether it can run
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/73/57/wKioL1X6uoiw6AriAADPtGtYfvI526.jpg "title=" 1.png " alt= "Wkiol1x6uoiw6ariaadptgtyfvi526.jpg"/>
Trial run under named
# cd/usr/local/bind9.10.3/sbin/#/named#/named:error while loading gkfx libraries:libmysqlclient.so.18:cannot ope N Shared object File:no such file or directory
Well, it seems to be an error
# find/usr/local/mysql5.6.26/-iname libmysqlclient.so.18//Find out if the library file is not found/usr/local/mysql5.6.26/lib/libmysqlclie nt.so.18# ln-s/usr/local/mysql5.6.26/lib/libmysqlclient.so.18/usr/lib64///Make a soft connection to a library file #./named
Well, there's no error.
4, configuring Bind
# Chown-r named:named/usr/local/bind9.10.3/*
This article from "Professor elder brother" blog, reprint please contact the author!
Source Install Bind 9.10 official version open DLZ database support