Virtualmin update Apache, PHP, MySQL and BIND to latest
BIND
We need to download the required rpm for our system architecture and version we wish to install in this guide I will be installing version 9.7.3, the package we need is called bind but bind-libs also needs updating to 9.7.3 for the installation to work.
1 2 |
wget http://centos.alt.ru/repository/centos/5/i386/bind-libs-9.7.3-1.el5.i386.rpm wget http://centos.alt.ru/repository/centos/5/i386/bind-9.7.3-1.el5.i386.rpm |
The two commands above will download the two RPM’s I will be using which are for a 32bit system, bind-libs is a dependency of bind so we need to begin with installation of bind-libs first.
1 2 |
rpm –Uhv bind-libs-9.7.3-1.el5.i386.rpm rpm –Uhv bind-9.7.3-1.el5.i386.rpm |
All missing dependencies or dependency updates will need to be fixed before installation can continue, please read the RPM –-nodeps and –-force section near the top of this post.
A restart of bind will finish the process.
1 |
service bind restart |