{"id":1533,"date":"2021-07-30T12:45:00","date_gmt":"2021-07-30T17:45:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1533"},"modified":"2021-06-21T06:59:39","modified_gmt":"2021-06-21T11:59:39","slug":"how-to-install-phppgadmin-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/","title":{"rendered":"How to install phpPgAdmin on CentOS 7"},"content":{"rendered":"\n<p>phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and it is based on the popular phpMyAdmin interface originally written for MySQL administration. In this tutorial, we will show you how to install phpPgAdmin on CentOS 7. The installation is quick and easy and if you follow the instructions carefully, you will have phpPgAdmin installed on your <a href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noreferrer noopener\">CentOS 7 VPS<\/a> in less than 10 minutes. Let\u2019s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">1. Connect to your server<\/h2>\n\n\n\n<p>Connect to your server via SSH as user root, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@IP_ADDRESS -p PORT_NUMBER<\/pre>\n\n\n\n<p>and replace \u201cIP_ADDRESS\u201d and \u201cPORT_NUMBER\u201d with your actual server IP address and SSH port number.<\/p>\n\n\n\n<p>Once logged in, make sure that your server is up-to-date by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum update<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. Install PostgreSQL<\/h2>\n\n\n\n<p>At the moment, the included version of PostgreSQL for CentOS 7 is PostgreSQL 9.2<\/p>\n\n\n\n<p>To install a different, more up to date version, you will have to use the PostgreSQL Yum Repository. In this tutorial, we will install PostgreSQL 9.6<\/p>\n\n\n\n<p>First, install the repository RPM. For version 9.6 you would need to run the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install https:\/\/download.postgresql.org\/pub\/repos\/yum\/9.6\/redhat\/rhel-7-x86_64\/pgdg-centos96-9.6-3.noarch.rpm<\/pre>\n\n\n\n<p>Next, install the client and server packages with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install postgresql96 postgresql96-server<\/pre>\n\n\n\n<p>After the installation is complete, run the following command to initialize the database:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/pgsql-9.6\/bin\/postgresql96-setup initdb<\/pre>\n\n\n\n<p>To enable the PostgreSQL service to automatically start after a server reboot, execute the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl enable postgresql-9.6<\/pre>\n\n\n\n<p>To start PostgreSQL on your server, type:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start postgresql-9.6<\/pre>\n\n\n\n<p>You can check the status of your PostgreSQL service with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status postgresql-9.6<\/pre>\n\n\n\n<p>If the service is active, you should get the following output on your screen:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\u25cf postgresql-9.6.service - PostgreSQL 9.6 database server\nLoaded: loaded (\/usr\/lib\/systemd\/system\/postgresql-9.6.service; disabled; vendor preset: disabled)\nActive: active (running) since Mon 2018-12-10 09:55:34 CST; 1s ago\nDocs: https:\/\/www.postgresql.org\/docs\/9.6\/static\/\nProcess: 936 ExecStartPre=\/usr\/pgsql-9.6\/bin\/postgresql96-check-db-dir ${PGDATA} (code=exited, status=0\/SUCCESS)\nMain PID: 943 (postmaster)\nCGroup: \/system.slice\/postgresql-9.6.service\n\u251c\u2500943 \/usr\/pgsql-9.6\/bin\/postmaster -D \/var\/lib\/pgsql\/9.6\/data\/\n\u251c\u2500944 postgres: logger process\n\u251c\u2500946 postgres: checkpointer process\n\u251c\u2500947 postgres: writer process\n\u251c\u2500948 postgres: wal writer process\n\u251c\u2500949 postgres: autovacuum launcher process\n\u2514\u2500950 postgres: stats collector process<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. Change the postgres system account password<\/h2>\n\n\n\n<p>Once the installation is completed, log into the <strong>postgres<\/strong> system account so you can access PostgreSQL:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">su - postgres<\/pre>\n\n\n\n<p>You can now access PostgreSQL using:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">psql<\/pre>\n\n\n\n<p>Change your <strong>postgres<\/strong>&nbsp;with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\\password postgres<\/pre>\n\n\n\n<p>Enter the new password when prompted.<\/p>\n\n\n\n<p>Quit the psql command line with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\\q<\/pre>\n\n\n\n<p>To exit, type:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">exit<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. Configure Apache<\/h2>\n\n\n\n<p>In order to access phpPgAdmin in your browser, you will need to modify the phpPgAdmin Apache virtual host configuration file. To do this run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/httpd\/conf.d\/phpPgAdmin.conf<\/pre>\n\n\n\n<p>Comment out the \u2018<strong>Require local<\/strong>\u2018 line by adding \u201d<strong>#<\/strong>\u2018 at the front. Under the same line, add&nbsp;<strong>Require all granted<\/strong>. This is how the configuration file should look like:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">#\n# This configuration file maps the phpPgAdmin directory into the URL space.\n# By default this application is only accessible from the local host.\n#\n\nAlias \/phpPgAdmin \/usr\/share\/phpPgAdmin\n\n&lt;Location \/phpPgAdmin&gt;\n&lt;IfModule mod_authz_core.c&gt;\n# Apache 2.4\n#Require local\nRequire all granted\n#Require host example.com\n&lt;\/IfModule&gt;\n&lt;IfModule !mod_authz_core.c&gt;\n# Apache 2.2\nOrder deny,allow\nDeny from all\nAllow from 127.0.0.1\nAllow from ::1\n# Allow from .example.com\n&lt;\/IfModule&gt;\n&lt;\/Location&gt;<\/pre>\n\n\n\n<p>Restart your Apache web server with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart httpd<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5. Install and configure phpPgAdmin<\/h2>\n\n\n\n<p>To install phpPgAdmin on your server run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install phpPgAdmin<\/pre>\n\n\n\n<p>You will also need to install the PostgreSQL database module for PHP with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install php-pgsql<\/pre>\n\n\n\n<p>After the installation is completed we need to make a few changes in the phpPgAdmin configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/phppgadmin\/config.inc.php<\/pre>\n\n\n\n<p>Add localhost for the following parameter:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$conf[&#039;servers&#039;][0][&#039;host&#039;] = &#039;localhost&#039;;<\/pre>\n\n\n\n<p>To be able to login phpPgAdmin as the <strong>postgres<\/strong> user, change the following parameter to \u2018false\u2019:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$conf[&#039;extra_login_security&#039;] = false;<\/pre>\n\n\n\n<p>To hide other databases which are not owned by the user, set the following parameter to \u2018true\u2019:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$conf[&#039;owned_only&#039;] = true;<\/pre>\n\n\n\n<p>We will also need to configure our PostgreSQL server to support md5 authentication:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/var\/lib\/pgsql\/9.6\/data\/pg_hba.conf<\/pre>\n\n\n\n<p>Change the following lines from:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">host all all 127.0.0.1\/32 ident\nhost all all ::1\/128 ident<\/pre>\n\n\n\n<p>to:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">host all all 127.0.0.1\/32 md5\nhost all all ::1\/128 md5<\/pre>\n\n\n\n<p>Restart the PostgreSQL service with:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart postgresql-9.6<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6. Conclusion<\/h2>\n\n\n\n<p>That\u2019s it! If you carefully followed all the instructions you have now successfully installed phpPgAdmin on your <a href=\"https:\/\/www.linuxcloudvps.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">CentOS 7 VPS<\/a>.<\/p>\n\n\n\n<p>You can now access phpPgAdmin in your browser and log in with your <strong>postgres<\/strong> user at <strong>http:\/\/your-ip-address\/phpPgAdmin<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/install-phppgadmin-on-centos-7.png\"><img decoding=\"async\" width=\"944\" height=\"444\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/install-phppgadmin-on-centos-7.png\" alt=\"install phppgadmin on centos 7\" class=\"wp-image-1535\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/install-phppgadmin-on-centos-7.png 944w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/install-phppgadmin-on-centos-7-470x221.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/install-phppgadmin-on-centos-7-768x361.png 768w\" sizes=\"(max-width: 944px) 100vw, 944px\" \/><\/a><\/figure>\n\n\n\n<!--nextpage-->\n\n\n\n<p>Of course, you don\u2019t have to&nbsp;<strong>install phpPgAdmin on CentOS 7<\/strong>, if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">VPS Hosting services<\/a>, in which case you can simply ask our expert Linux admins to install and configure <strong>phpPgAdmin<\/strong> for you. They are available&nbsp;<strong>24\u00d77<\/strong>&nbsp;and will take care of your request immediately.<\/p>\n\n\n\n<p><code>PS.<\/code>&nbsp;If you liked this post on<strong>&nbsp;how to&nbsp;install phpPgAdmin on CentOS 7<\/strong>, please share it with your friends on the social networks using the buttons below or simply leave a reply. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and it is based on the popular phpMyAdmin interface originally written for MySQL administration. In this tutorial, we will show you how to install phpPgAdmin on CentOS 7. The installation is quick and &#8230; <a title=\"How to install phpPgAdmin on CentOS 7\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/\" aria-label=\"More on How to install phpPgAdmin on CentOS 7\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1531,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[206],"tags":[],"class_list":["post-1533","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install phpPgAdmin on CentOS 7 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/\" \/>\n<link rel=\"next\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install phpPgAdmin on CentOS 7 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-30T17:45:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/how-to-install-phppgadmin-on-centos-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to install phpPgAdmin on CentOS 7\",\"datePublished\":\"2021-07-30T17:45:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/\"},\"wordCount\":603,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/how-to-install-phppgadmin-on-centos-7.jpg\",\"articleSection\":[\"How To\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/\",\"name\":\"How to install phpPgAdmin on CentOS 7 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/how-to-install-phppgadmin-on-centos-7.jpg\",\"datePublished\":\"2021-07-30T17:45:00+00:00\",\"description\":\"phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-phppgadmin-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/how-to-install-phppgadmin-on-centos-7.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/how-to-install-phppgadmin-on-centos-7.jpg\",\"width\":742,\"height\":372,\"caption\":\"how to install phppgadmin on centos 7\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install phpPgAdmin on CentOS 7 | LinuxCloudVPS Blog","description":"phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and","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.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/","next":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/2\/","og_locale":"en_US","og_type":"article","og_title":"How to install phpPgAdmin on CentOS 7 | LinuxCloudVPS Blog","og_description":"phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2021-07-30T17:45:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/how-to-install-phppgadmin-on-centos-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to install phpPgAdmin on CentOS 7","datePublished":"2021-07-30T17:45:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/"},"wordCount":603,"commentCount":2,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/how-to-install-phppgadmin-on-centos-7.jpg","articleSection":["How To"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/","name":"How to install phpPgAdmin on CentOS 7 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/how-to-install-phppgadmin-on-centos-7.jpg","datePublished":"2021-07-30T17:45:00+00:00","description":"phpPgAdmin is a web-based administration tool for PostgreSQL (one of the most popular open-source database management systems). It is written in PHP and","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-phppgadmin-on-centos-7\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/how-to-install-phppgadmin-on-centos-7.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/06\/how-to-install-phppgadmin-on-centos-7.jpg","width":742,"height":372,"caption":"how to install phppgadmin on centos 7"},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1533","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1533"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1533\/revisions"}],"predecessor-version":[{"id":1541,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1533\/revisions\/1541"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1531"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1533"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1533"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1533"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}