I upgrade bind with this : # wget http://ftp.isc.org/isc/bind9/9.4.1-P1/bind-9.4.1-P1.tar.gz # tar xvfz bind-9.4.1-P1.tar.gz # cd bind-9.4.1-P1 # ./configure # make # make install but doesnt work I have always bind version is [root@server bind-9.4.1-P1]# named -v BIND 9.2.4 PHP: OS: Centos CP ; Cpanel how can I make upgrade with the correct way ?
Hey there, Since you're upgrading manually, have you checked the path of the named binary you're running your "named -v" command against? It looks as though the ISC distro is unpacking your new BIND software into a different location than where your current one resides. If you want to specify, include this on your configure line (at the very least - check the readme for the configure defaults) ./configure --prefix=/base/directory/under/which/you/want/the/various/subdirs/installed ex: ./configure --prefix=/usr/local would put your stuff in /usr/local/bin, /usr/local/sbin/, etc. That sounds like the problem. If you are going to manually upgrade, be sure to back up your old version before overwriting it , Mike