User Tools

Site Tools


internet:hosting:dyndns

This is an old revision of the document!


Dynamic DNS

Install on CentOS 5

yum install pdns pdns-backend-mysql mysql-server vim-enhanced

chkconfig mysqld on
service mysqld start
mysqladmin -u root password 'new-password'
mysqladmin -u root -h <your-server-fqdn> password 'new-password'

Create MySQL database:

mysql -u root -p

CREATE DATABASE powerdns;

GRANT ALL ON powerdns.* TO 'power_admin'@'localhost' IDENTIFIED BY 'power_admin_password';
GRANT ALL ON powerdns.* TO 'power_admin'@'localhost.localdomain' IDENTIFIED BY 'power_admin_password';
FLUSH PRIVILEGES;
internet/hosting/dyndns.1340394715.txt.gz · Last modified: 2012/06/22 13:51 by gcooper