<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Install and Configure &#8216;PowerDNS&#8217; (with MariaDB) and &#8216;PowerAdmin&#8217; in RHEL/CentOS 7	</title>
	<atom:link href="https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sun, 16 Feb 2020 05:39:34 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Garett		</title>
		<link>https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/comment-page-1/#comment-1317077</link>

		<dc:creator><![CDATA[Garett]]></dc:creator>
		<pubDate>Sun, 16 Feb 2020 05:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13099#comment-1317077</guid>

					<description><![CDATA[Excellent article.  Unlike anything, I was able to find anywhere else.  Thanks so much!

One suggestion I would give to everyone is to determine what PDNS version you have by paying attention to the version number after the &lt;strong&gt;yum command&lt;/strong&gt;.  If you are already past that point, run the following command:
&lt;pre&gt;
# pdns_control version
&lt;/pre&gt;
Then go to the official website to download the schema that matches the same version that is installed on your system.  In my case, I kept using the wrong schema and caused me more frustration than necessary.  The schema seems to change between each incremental release and is not forward or backward compatible.]]></description>
			<content:encoded><![CDATA[<p>Excellent article.  Unlike anything, I was able to find anywhere else.  Thanks so much!</p>
<p>One suggestion I would give to everyone is to determine what PDNS version you have by paying attention to the version number after the <strong>yum command</strong>.  If you are already past that point, run the following command:</p>
<pre>
# pdns_control version
</pre>
<p>Then go to the official website to download the schema that matches the same version that is installed on your system.  In my case, I kept using the wrong schema and caused me more frustration than necessary.  The schema seems to change between each incremental release and is not forward or backward compatible.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Miguel Moreira		</title>
		<link>https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/comment-page-1/#comment-1081715</link>

		<dc:creator><![CDATA[Miguel Moreira]]></dc:creator>
		<pubDate>Fri, 07 Dec 2018 17:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13099#comment-1081715</guid>

					<description><![CDATA[I have error when I connect MySQL with pdns with this databases, for fixed  I  create the format of databases from the official website of powerdns. 
&lt;pre&gt;
CREATE TABLE domains (
  id                    INT AUTO_INCREMENT,
  name                  VARCHAR(255) NOT NULL,
  master                VARCHAR(128) DEFAULT NULL,
  last_check            INT DEFAULT NULL,
  type                  VARCHAR(6) NOT NULL,
  notified_serial       INT DEFAULT NULL,
  account               VARCHAR(40) DEFAULT NULL,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE UNIQUE INDEX name_index ON domains(name);


CREATE TABLE records (
  id                    BIGINT AUTO_INCREMENT,
  domain_id             INT DEFAULT NULL,
  name                  VARCHAR(255) DEFAULT NULL,
  type                  VARCHAR(10) DEFAULT NULL,
  content               VARCHAR(64000) DEFAULT NULL,
  ttl                   INT DEFAULT NULL,
  prio                  INT DEFAULT NULL,
  change_date           INT DEFAULT NULL,
  disabled              TINYINT(1) DEFAULT 0,
  ordername             VARCHAR(255) BINARY DEFAULT NULL,
  auth                  TINYINT(1) DEFAULT 1,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE INDEX nametype_index ON records(name,type);
CREATE INDEX domain_id ON records(domain_id);
CREATE INDEX recordorder ON records (domain_id, ordername);


CREATE TABLE supermasters (
  ip                    VARCHAR(64) NOT NULL,
  nameserver            VARCHAR(255) NOT NULL,
  account               VARCHAR(40) NOT NULL,
  PRIMARY KEY (ip, nameserver)
) Engine=InnoDB;


CREATE TABLE comments (
  id                    INT AUTO_INCREMENT,
  domain_id             INT NOT NULL,
  name                  VARCHAR(255) NOT NULL,
  type                  VARCHAR(10) NOT NULL,
  modified_at           INT NOT NULL,
  account               VARCHAR(40) NOT NULL,
  comment               VARCHAR(64000) NOT NULL,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE INDEX comments_domain_id_idx ON comments (domain_id);
CREATE INDEX comments_name_type_idx ON comments (name, type);
CREATE INDEX comments_order_idx ON comments (domain_id, modified_at);


CREATE TABLE domainmetadata (
  id                    INT AUTO_INCREMENT,
  domain_id             INT NOT NULL,
  kind                  VARCHAR(32),
  content               TEXT,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE INDEX domainmetadata_idx ON domainmetadata (domain_id, kind);


CREATE TABLE cryptokeys (
  id                    INT AUTO_INCREMENT,
  domain_id             INT NOT NULL,
  flags                 INT NOT NULL,
  active                BOOL,
  content               TEXT,
  PRIMARY KEY(id)
) Engine=InnoDB;

CREATE INDEX domainidindex ON cryptokeys(domain_id);


CREATE TABLE tsigkeys (
  id                    INT AUTO_INCREMENT,
  name                  VARCHAR(255),
  algorithm             VARCHAR(50),
  secret                VARCHAR(255),
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE UNIQUE INDEX namealgoindex ON tsigkeys(name, algorithm);
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I have error when I connect MySQL with pdns with this databases, for fixed  I  create the format of databases from the official website of powerdns. </p>
<pre>
CREATE TABLE domains (
  id                    INT AUTO_INCREMENT,
  name                  VARCHAR(255) NOT NULL,
  master                VARCHAR(128) DEFAULT NULL,
  last_check            INT DEFAULT NULL,
  type                  VARCHAR(6) NOT NULL,
  notified_serial       INT DEFAULT NULL,
  account               VARCHAR(40) DEFAULT NULL,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE UNIQUE INDEX name_index ON domains(name);


CREATE TABLE records (
  id                    BIGINT AUTO_INCREMENT,
  domain_id             INT DEFAULT NULL,
  name                  VARCHAR(255) DEFAULT NULL,
  type                  VARCHAR(10) DEFAULT NULL,
  content               VARCHAR(64000) DEFAULT NULL,
  ttl                   INT DEFAULT NULL,
  prio                  INT DEFAULT NULL,
  change_date           INT DEFAULT NULL,
  disabled              TINYINT(1) DEFAULT 0,
  ordername             VARCHAR(255) BINARY DEFAULT NULL,
  auth                  TINYINT(1) DEFAULT 1,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE INDEX nametype_index ON records(name,type);
CREATE INDEX domain_id ON records(domain_id);
CREATE INDEX recordorder ON records (domain_id, ordername);


CREATE TABLE supermasters (
  ip                    VARCHAR(64) NOT NULL,
  nameserver            VARCHAR(255) NOT NULL,
  account               VARCHAR(40) NOT NULL,
  PRIMARY KEY (ip, nameserver)
) Engine=InnoDB;


CREATE TABLE comments (
  id                    INT AUTO_INCREMENT,
  domain_id             INT NOT NULL,
  name                  VARCHAR(255) NOT NULL,
  type                  VARCHAR(10) NOT NULL,
  modified_at           INT NOT NULL,
  account               VARCHAR(40) NOT NULL,
  comment               VARCHAR(64000) NOT NULL,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE INDEX comments_domain_id_idx ON comments (domain_id);
CREATE INDEX comments_name_type_idx ON comments (name, type);
CREATE INDEX comments_order_idx ON comments (domain_id, modified_at);


CREATE TABLE domainmetadata (
  id                    INT AUTO_INCREMENT,
  domain_id             INT NOT NULL,
  kind                  VARCHAR(32),
  content               TEXT,
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE INDEX domainmetadata_idx ON domainmetadata (domain_id, kind);


CREATE TABLE cryptokeys (
  id                    INT AUTO_INCREMENT,
  domain_id             INT NOT NULL,
  flags                 INT NOT NULL,
  active                BOOL,
  content               TEXT,
  PRIMARY KEY(id)
) Engine=InnoDB;

CREATE INDEX domainidindex ON cryptokeys(domain_id);


CREATE TABLE tsigkeys (
  id                    INT AUTO_INCREMENT,
  name                  VARCHAR(255),
  algorithm             VARCHAR(50),
  secret                VARCHAR(255),
  PRIMARY KEY (id)
) Engine=InnoDB;

CREATE UNIQUE INDEX namealgoindex ON tsigkeys(name, algorithm);
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nafees Ahmed		</title>
		<link>https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/comment-page-1/#comment-1057101</link>

		<dc:creator><![CDATA[Nafees Ahmed]]></dc:creator>
		<pubDate>Thu, 08 Nov 2018 12:02:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13099#comment-1057101</guid>

					<description><![CDATA[how zone data will replicate on ns1 and ns2 ?]]></description>
			<content:encoded><![CDATA[<p>how zone data will replicate on ns1 and ns2 ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jay		</title>
		<link>https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/comment-page-1/#comment-916253</link>

		<dc:creator><![CDATA[Jay]]></dc:creator>
		<pubDate>Wed, 27 Sep 2017 21:14:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13099#comment-916253</guid>

					<description><![CDATA[I appreciate to this person but &quot;Username – username for the PowerAdmin.&quot; you have a typo :(]]></description>
			<content:encoded><![CDATA[<p>I appreciate to this person but &#8220;Username – username for the PowerAdmin.&#8221; you have a typo :(</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sirmonkey		</title>
		<link>https://www.tecmint.com/install-powerdns-poweradmin-mariadb-in-centos-rhel/comment-page-1/#comment-905651</link>

		<dc:creator><![CDATA[sirmonkey]]></dc:creator>
		<pubDate>Mon, 07 Aug 2017 18:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13099#comment-905651</guid>

					<description><![CDATA[Looks like there was a pdns schema change and some of the tables have changed. powerdns not longer works for me
i tried updating the schema to : https://doc.powerdns.com/md/authoritative/backend-generic-mypgsql/]]></description>
			<content:encoded><![CDATA[<p>Looks like there was a pdns schema change and some of the tables have changed. powerdns not longer works for me<br />
i tried updating the schema to : <a target="_blank" href="https://doc.powerdns.com/md/authoritative/backend-generic-mypgsql/" rel="nofollow ugc">https://doc.powerdns.com/md/authoritative/backend-generic-mypgsql/</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
