|
MyDNS is a DNS server for UNIX that serves records directly from an SQL database
and can be used in H-Sphere as an alternative to
bind.
Currently H-Sphere supports MyDNS to work only with MySQL.
Installation
To configure H-Sphere to work with MyDNS:
- Download the latest version of MyDNS.
- Install and configure MyDNS version that is served by MySQL DB on a new or any of your existing H-Sphere servers
following the instructions that come with the installation package.
Warning:
Don't rename the 'mydns' MySQL DB created during the installtaion.
- Add the following lines into the ~cpanel/shiva/psoft_config/hsphere.properties file:
MYDNS_USER = <login>
MYDNS_PASS = <password>
MYDNS_DB_HOST = <IP>
where:
login is the name of MyDNS user to access MySQL DB you've created during the installation;
password is the password for MyDNS user login;
IP is the IP of the server with MySQL DB created during the installation.
- In the admin control panel check if
MyDNS name server is listed as a server group..
If it's not, log into the system database and execute:
INSERT INTO l_server_groups (id, type_id, name) VALUES (21, 2, 'MyDNS name server');
- Restart your CP.
- If you install MyDNS on a new server,
add this physical server.
- Add MyDNS logical server(s) with the MyDNS name server group and check if it is available for signup.
Uninstallation
To remove H-Sphere DNS service, remove the 'hsphere-bind' package:
rpm -e hsphere-bind*
To disable H-Sphere DNS service:
chkconfig --level 345 named off
|