{"id":5422,"date":"2014-12-03T14:49:56","date_gmt":"2014-12-03T20:49:56","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=5422"},"modified":"2022-06-03T03:46:31","modified_gmt":"2022-06-03T08:46:31","slug":"install-powerdns-and-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/","title":{"rendered":"Install PowerDNS and Poweradmin on a CentOS 7 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-16491 \" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps-150x150.png\" alt=\"install-powerdns-and-on-a-centos-7-vps\" width=\"99\" height=\"99\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps-100x100.png 100w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps-75x75.png 75w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png 200w\" sizes=\"(max-width: 99px) 100vw, 99px\" \/>In this tutorial, we will show you how to install PowerDNS and Poweradmin on a <a href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 7 VPS<\/a> with Nginx, MariaDB and PHP-FPM. PowerDNS is a high-performance and reliable DNS server, written in C++ and can be used as an alternative to BIND. This guide should work on other<a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\"> Linux VPS<\/a> systems as well but was tested and written for CentOS 7 VPS.<\/p>\n<p><!--more--><\/p>\n<h4>Install EPEL repository<\/h4>\n<pre>rpm -Uhv http:\/\/mirror.cc.columbia.edu\/pub\/linux\/epel\/7\/x86_64\/e\/epel-release-7-10.noarch.rpm\nroot@vps:~# yum -y update<\/pre>\n<h4>Install MariaDB<\/h4>\n<p>To install MariaDB server run the following command:<\/p>\n<pre>root@vps:~# yum install mariadb-server mariadb<\/pre>\n<p>To start the service and enable it at the boot time run:<\/p>\n<pre>root@vps:~# systemctl start mariadb.service\nroot@vps:~# systemctl enable mariadb.service<\/pre>\n<p>It is very important to secure your MariaDB server, run the following script before creating and populating the databases.<\/p>\n<pre>mysql_secure_installation<\/pre>\n<p>Once you are finished with the step above, login as a MariaDB root and create a new database and tables:<\/p>\n<pre>root@vps:~# mysql -uroot -p<\/pre>\n<pre>create database powerdns;\nGRANT ALL PRIVILEGES ON powerdns.* TO 'powerdns'@'localhost' IDENTIFIED BY 'powerdnsPassword';\nuse powerdns;\n\nCREATE TABLE domains (\nid INT auto_increment,\nname VARCHAR(255) NOT NULL,\nmaster VARCHAR(128) DEFAULT NULL,\nlast_check INT DEFAULT NULL,\ntype VARCHAR(6) NOT NULL,\nnotified_serial INT DEFAULT NULL,\naccount VARCHAR(40) DEFAULT NULL,\nprimary key (id)\n);\nCREATE UNIQUE INDEX name_index ON domains(name);\n\nCREATE TABLE records (\nid INT auto_increment,\ndomain_id INT DEFAULT NULL,\nname VARCHAR(255) DEFAULT NULL,\ntype VARCHAR(6) DEFAULT NULL,\ncontent VARCHAR(255) DEFAULT NULL,\nttl INT DEFAULT NULL,\nprio INT DEFAULT NULL,\nchange_date INT DEFAULT NULL,\nprimary key(id)\n);\nCREATE INDEX rec_name_index ON records(name);\nCREATE INDEX nametype_index ON records(name,type);\nCREATE INDEX domain_id ON records(domain_id);\n\nCREATE TABLE supermasters (\nip VARCHAR(25) NOT NULL,\nnameserver VARCHAR(255) NOT NULL,\naccount VARCHAR(40) DEFAULT NULL\n);\nexit;\n<\/pre>\n<h4>Install PDNS<\/h4>\n<p>To install the latest version of powerdns just run:<\/p>\n<pre>root@vps:~# yum install pdns-backend-mysql pdns<\/pre>\n<p>Open the `\/etc\/pdns\/pdns.conf` file and add the following lines:<\/p>\n<pre>launch=gmysql\ngmysql-host=localhost\ngmysql-user=powerdns\ngmysql-password=powerdnsPassword\ngmysql-dbname=powerdns<\/pre>\n<p>and restart the Power DNS service:<\/p>\n<pre>systemctl restart pdns.service\nsystemctl enable pdns.service<\/pre>\n<h4>Install and configure PHP and Nginx<\/h4>\n<p>Installing PHP and Nginx is pretty easy, just run the following command:<\/p>\n<pre>root@vps:~# yum install nginx php-fpm php-cli php-mysqlnd php-mcrypt<\/pre>\n<p>To change PHP-FPM to listen on a unix socket, open the default www pool<\/p>\n<pre>root@vps:~# vim \/etc\/php-fpm.d\/www.conf<\/pre>\n<p>and change from:<\/p>\n<pre>listen = 127.0.0.1:9000<\/pre>\n<p>to:<\/p>\n<pre>listen = \/var\/run\/php-fpm\/php-fpm.socket<\/pre>\n<p>and restart the service for changes to take effect.<\/p>\n<pre>root@vps:~# systemctl restart php-fpm<\/pre>\n<p>Create a php session directory and change the ownership to apache (the user under which PHP runs).<\/p>\n<pre>root@vps:~# mkdir \/var\/lib\/php\/session<\/pre>\n<pre>root@vps:~# chown apache:apache \/var\/lib\/php\/session<\/pre>\n<p>Create a new Nginx server block with the following content:<\/p>\n<pre>root@vps:~# cat &lt;&lt;'EOF' &gt;&gt; \/etc\/nginx\/conf.d\/pdns.your-domain.com.conf\nserver {\nserver_name pdns.your-domain.com;\nlisten 80;\nroot \/var\/www\/html\/pdns.your-domain.com;\naccess_log \/var\/log\/nginx\/pdns.your-domain.com-access.log;\nerror_log \/var\/log\/nginx\/pdns.your-domain.com-error.log;\nindex index.php;\n\nlocation \/ {\ntry_files $uri $uri\/ \/index.php?$query_string;\n}\n\nlocation ~ \\.php$ {\nfastcgi_index index.php;\nfastcgi_split_path_info ^(.+\\.php)(.*)$;\nfastcgi_keep_conn on;\ninclude \/etc\/nginx\/fastcgi_params;\nfastcgi_pass unix:\/var\/run\/php-fpm\/php-fpm.socket;\nfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n}\n\nlocation ~ \/\\.ht {\ndeny all;\n}\n\n}\nEOF<\/pre>\n<p>Test the Nginx configuration and restart the server by running the following commands:<\/p>\n<pre>root@vps:~# nginx -t\nroot@vps:~# systemctl restart nginx<\/pre>\n<h4>Install Poweradmin<\/h4>\n<p>To download and extract the latest version of Poweradmin, run the followind commands:<\/p>\n<pre>root@vps:~# mkdir -p \/var\/www\/html\/pdns.your-domain.com\/\nroot@vps:~# cd \/var\/www\/html\/pdns.your-domain.com\/\nroot@vps:~# wget http:\/\/downloads.sourceforge.net\/project\/poweradmin\/poweradmin-2.1.7.tgz\nroot@vps:~# tar -xvzf poweradmin-2.1.7.tgz\nroot@vps:~# mv poweradmin-2.1.7\/* .\nroot@vps:~# rm -rf poweradmin-2.1.7*\n<\/pre>\n<p>Set the correct permissions:<\/p>\n<pre>root@vps:~# chown -R apache:apache \/var\/www\/html\/pdns.your-domain.com\/<\/pre>\n<p>To start the installation wizard, open your browser and type <code>http:\/\/pdns.your-domain.com\/installer<\/code><\/p>\n<p>Step 1: Select the desired language,<br \/>\nStep 2: Just click on the &#8220;Go to step 3&#8221; button<br \/>\nStep 3: Fill the database information fields, select &#8220;MySQL&#8221; for Database type and &#8220;localhost&#8221; for the &#8220;Hostname&#8221; and set the Poweradmin administrator password.<br \/>\nStep 4: Set the username and password for Poweradmin, Hostmaster and Primary and Secondary nameservers.<br \/>\nStep 5: Before going to next step to create less privileged user poweradmin, perform the mariadb command shown on the screen.<br \/>\nStep 6: If you have set the correct permissions the installer will create your poweradmin php configuration file.<\/p>\n<p>After the installation wizard completes, remove the install directory using the following command:<\/p>\n<pre>root@vps:~# rm -rf install\/<\/pre>\n<p>That&#8217;s it, you have successfully installed PowerDNS and Poweradmin on your VPS!<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to set this up for you. They are available 24&#215;7 and will take care of your request immediately. For updates, you can also check <a href=\"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-poweradmin-on-an-ubuntu-14-04-vps\/\">Install PowerDNS and PowerAdmin on an Ubuntu 14.04 VPS<\/a>.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install PowerDNS and Poweradmin on a CentOS 7 VPS with Nginx, &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install PowerDNS and Poweradmin on a CentOS 7 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#more-5422\" aria-label=\"Read more about Install PowerDNS and Poweradmin on a CentOS 7 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16491,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1708,1701,13],"tags":[541,183,642,641],"class_list":["post-5422","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-control-panels","category-networking-and-domains","category-tutorials","tag-centos-7","tag-dns","tag-poweradmin","tag-powerdns","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install PowerDNS and Poweradmin on a CentOS 7 VPS\" \/>\n<meta property=\"og:description\" content=\"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-12-03T20:49:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install PowerDNS and Poweradmin on a CentOS 7 VPS\",\"datePublished\":\"2014-12-03T20:49:56+00:00\",\"dateModified\":\"2022-06-03T08:46:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/\"},\"wordCount\":482,\"commentCount\":16,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/install-powerdns-and-on-a-centos-7-vps.png\",\"keywords\":[\"centos 7\",\"dns\",\"poweradmin\",\"powerdns\"],\"articleSection\":[\"CentOS\",\"Control Panels\",\"Networking and Domains\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/\",\"name\":\"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/install-powerdns-and-on-a-centos-7-vps.png\",\"datePublished\":\"2014-12-03T20:49:56+00:00\",\"dateModified\":\"2022-06-03T08:46:31+00:00\",\"description\":\"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/install-powerdns-and-on-a-centos-7-vps.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/install-powerdns-and-on-a-centos-7-vps.png\",\"width\":200,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-powerdns-and-on-a-centos-7-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install PowerDNS and Poweradmin on a CentOS 7 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting","description":"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install PowerDNS and Poweradmin on a CentOS 7 VPS","og_description":"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-12-03T20:49:56+00:00","article_modified_time":"2022-06-03T08:46:31+00:00","og_image":[{"width":200,"height":200,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install PowerDNS and Poweradmin on a CentOS 7 VPS","datePublished":"2014-12-03T20:49:56+00:00","dateModified":"2022-06-03T08:46:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/"},"wordCount":482,"commentCount":16,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png","keywords":["centos 7","dns","poweradmin","powerdns"],"articleSection":["CentOS","Control Panels","Networking and Domains","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/","name":"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png","datePublished":"2014-12-03T20:49:56+00:00","dateModified":"2022-06-03T08:46:31+00:00","description":"Install PowerDNS and Poweradmin on a CentOS 7 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/install-powerdns-and-on-a-centos-7-vps.png","width":200,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-powerdns-and-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install PowerDNS and Poweradmin on a CentOS 7 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5422","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=5422"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5422\/revisions"}],"predecessor-version":[{"id":36654,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5422\/revisions\/36654"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16491"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=5422"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=5422"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=5422"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}