{"id":5247,"date":"2016-09-08T07:53:55","date_gmt":"2016-09-08T07:53:55","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=5247"},"modified":"2021-02-03T06:29:08","modified_gmt":"2021-02-03T06:29:08","slug":"install-phpmyadmin-fedora-centos-rhel-apache-web-server","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/","title":{"rendered":"Install phpMyAdmin on Fedora, CentOS &#038; RHEL with Apache Web Server"},"content":{"rendered":"<p class=\"heading2\"><span style=\"color: #000000;\">PhpMyAdmin is\u00a0a\u00a0free and an open source PHP\u00a0platform used to administer MySQL with a web browser.It supports wide range of operations on MySQL,\u00a0<a href=\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-ubuntu-debian-mint\/\">MariaDB<\/a>. <\/span><!--more--><\/p>\n<p class=\"heading2\"><span style=\"color: #000000;\">Through this user interface frequently used operations like (run MySQL queries, optimize, repair and check tables, change collation and execute other database management commands) can be performed.\u00a0<\/span><span style=\"color: #000000;\">In this tutorial i will guide you a quick way to install PhpMyAdmin on Linux.<\/span><\/p>\n<h2><span style=\"color: #000000;\">Prerequisites<\/span><\/h2>\n<ol>\n<li><span style=\"color: #000000;\">These guidelines are intended for Install phpMyAdmin on Fedora, CentOS &amp; RHEL with Apache Web Server<\/span><\/li>\n<li><span style=\"color: #000000;\">SSH client like <a href=\"https:\/\/cpanelplesk.com\/wp62\/using-putty-connect-server-ssh-windows\/\">Putty <\/a>and proper knowledge to use it.<\/span><\/li>\n<li><span style=\"color: #000000;\">Make sure you should have installed <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-install-linux-apache-mysql-php-on-centos-6-x\/\">LAMP<\/a> before proceeding phpMyAdmin installation.<\/span><\/li>\n<li><span style=\"color: #000000;\">Some basic knowledge about common Linux commands.<\/span><\/li>\n<li><span style=\"color: #000000;\">20 minutes of your time with a cup of tea or coffee as always.<\/span><\/li>\n<\/ol>\n<h3><span style=\"color: #000000;\">Step 1- Check currently available phpMyAdmin package<\/span><\/h3>\n<p><span style=\"color: #000000;\">First of all use the below command to check available <a href=\"https:\/\/cpanelplesk.com\/wp62\/phpmyadmin-500-internal-server-error\/\">phpMyAdmin<\/a> package on your system.<\/span><\/p>\n<div class=\"command-sh\">\n<pre> yum list phpmyadmin<\/pre>\n<\/div>\n<h3><span style=\"color: #000000;\">Step 2- Install and Enable Remi Repository<\/span><\/h3>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/cpanelplesk.com\/wp62\/change-mysql-db-owner-password-terminology-phpmyadmin-is-asking-password\/\">phpmyadmin<\/a> updated package is available under Remi repository,\u00a0<\/span><span style=\"color: #000000;\">You can\u00a0<\/span><span style=\"color: #000000; line-height: 1.5;\">install is using following commands:<\/span><\/p>\n<div class=\"command-sh\">\n<pre>CentOS\/RHEL 7:\r\n# rpm -Uvh http:\/\/rpms.famillecollet.com\/enterprise\/remi-release-7.rpm\r\n\r\nCentOS\/RHEL 6:\r\n# rpm -Uvh http:\/\/rpms.famillecollet.com\/enterprise\/remi-release-6.rpm\r\n\r\nCentOS\/RHEL 5:\r\n# rpm -Uvh http:\/\/rpms.famillecollet.com\/enterprise\/remi-release-5.rpm\r\n\r\nFedora 20:\r\n# rpm -Uvh http:\/\/rpms.famillecollet.com\/remi-release-20.rpm\r\n\r\nFedora 19:\r\n# rpm -Uvh http:\/\/rpms.famillecollet.com\/remi-release-19.rpm\r\n\r\nFedora 18:\r\n# rpm -Uvh http:\/\/rpms.famillecollet.com\/remi-release-18.rpm<\/pre>\n<\/div>\n<h3><span style=\"color: #000000;\">Step 3- Install phpMyAdmin<\/span><\/h3>\n<p><span style=\"color: #000000;\">After adding repository,Fire the below command to install <a href=\"https:\/\/cpanelplesk.com\/wp62\/phpmyadmin-showing-blank-page\/\">phpMyAdmin<\/a> using yum package manager. All the dependencies will automatically get installed.<\/span><\/p>\n<div class=\"command-sh\">\n<pre>yum --enablerepo=remi install phpMyAdmin<\/pre>\n<\/div>\n<h3><span style=\"color: #000000;\">Step 4- Configure phpmyadmin<\/span><\/h3>\n<p><span style=\"color: #000000;\">By default\u00a0<span style=\"line-height: 1.5;\">you can access <a href=\"https:\/\/cpanelplesk.com\/wp62\/error-no-web-page-was-found-for-the-web-address-databasesphpmyadminexport-php\/\">phpmyadmin<\/a> from your localhost but if you want to access from remote, you need to add your IP to phpMyAdmin.conf file based on your Web Server such as Apache, Nginx &amp; Lighttpd.<\/span><\/span><\/p>\n<p><span style=\"color: #000000;\">which is located under <strong>\/etc\/httpd\/conf.d\/phpMyAdmin.conf.<\/strong><\/span><\/p>\n<div class=\"command-sh\">\n<pre> For Apache Web Server\r\n# nano \/etc\/httpd\/conf.d\/phpMyAdmin.conf\r\nAllow from YOUR-SERVER-IP\r\nRequire ip YOUR-SERVER-IP\r\n\r\nFor Nginx Web Server\r\n# ln -s \/usr\/share\/phpMyAdmin \/usr\/share\/nginx\/html\r\n\r\nFor Lighttpd Web Server\r\n# ln -s \/usr\/share\/phpmyadmin\/ \/var\/www\/lighttpd<\/pre>\n<\/div>\n<p><span style=\"color: #000000;\">Update\u00a0all 127.0.0.1 with your network like below or enable <a href=\"https:\/\/cpanelplesk.com\/wp62\/phpmyadmin-existing-configuration-file-config-inc-php-is-not-readable\/\">phpMyAdmin<\/a> access for everyone.<\/span><\/p>\n<div class=\"command-sh\">\n<pre>Alias \/phpMyAdmin \/usr\/share\/phpMyAdmin\r\nAlias \/phpmyadmin \/usr\/share\/phpMyAdmin\r\n\r\n## Comment below section to allow everyone\r\n\r\n     Order Deny,Allow\r\n     Deny from All\r\n     Allow from 192.168.1.0\/24\r\n     Allow from ::1\r\n   \r\n    Order Deny,Allow\r\n    Deny from All\r\n    Allow from None\r\n\r\n    Order Deny,Allow\r\n    Deny from All\r\n    Allow from None\r\n\r\n    Order Deny,Allow\r\n    Deny from All\r\n    Allow from None\r\n<\/pre>\n<\/div>\n<h3><span style=\"color: #000000;\">Step 5- Restart Apache &amp; MariaDB service<\/span><\/h3>\n<p><span style=\"color: #000000;\">After updating <a href=\"https:\/\/cpanelplesk.com\/wp62\/cannot-connect-invalid-settings-phpmyadmin-error\/\">phpMyAdmin <\/a>Apache configuration file, restart Apache service to reload new settings.<\/span><\/p>\n<div class=\"command-sh\">\n<pre>service httpd restart<\/pre>\n<\/div>\n<h3><span style=\"color: #000000;\">Step 6- Access phpmyadmin in web browser<\/span><\/h3>\n<p><span style=\"color: #000000;\">Now you can access <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-increase-phpmyadmin-upload-limitation\/\">phpMyAdmin<\/a> in browser using following URL:<\/span><\/p>\n<p><span style=\"color: #000000;\">http:\/\/localhost\/phpmyadmin or http:\/\/your-server-ip-address\/phpmyadmin or http:\/\/127.0.0.1\/phpmyadmin and enter the login details.<\/span><\/p>\n<p><a href=\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/phpmyadmin-6\/\" rel=\"attachment wp-att-5248\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone size-full wp-image-5248 pleslwp\" src=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/phpmyadmin.jpg\" alt=\"phpmyadmin\" width=\"1364\" height=\"444\" srcset=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/phpmyadmin.jpg 1364w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/phpmyadmin-300x98.jpg 300w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/phpmyadmin-1024x333.jpg 1024w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/phpmyadmin-768x250.jpg 768w\" sizes=\"(max-width: 1364px) 100vw, 1364px\" \/><\/a><\/p>\n<p>So this is all you have to do,\u00a0Also read about\u00a0<a href=\"https:\/\/cpanelplesk.com\/wp62\/install-and-configure-phpmyadmin-on-a-centos\/\">Install And Configure PhpMyAdmin On CentOS<\/a>.Please Give your opinion below if you experience any issues or to discuss your ideas and experiences.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PhpMyAdmin is\u00a0a\u00a0free and an open source PHP\u00a0platform used to administer MySQL with a web browser.It supports wide range of operations on MySQL,\u00a0MariaDB. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":3578,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,14],"tags":[],"class_list":["post-5247","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cpanel","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Install phpMyAdmin on Fedora, CentOS &amp; RHEL with Apache Web Server - cPanel Plesk<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Install phpMyAdmin on Fedora, CentOS &amp; RHEL with Apache Web Server - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"PhpMyAdmin is\u00a0a\u00a0free and an open source PHP\u00a0platform used to administer MySQL with a web browser.It supports wide range of operations on MySQL,\u00a0MariaDB. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Seemab Saleem\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"Install phpMyAdmin on Fedora, CentOS &#038; RHEL with Apache Web Server\",\"datePublished\":\"2016-09-08T07:53:55+00:00\",\"dateModified\":\"2021-02-03T06:29:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\"},\"wordCount\":357,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png\",\"articleSection\":[\"Cpanel\",\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\",\"name\":\"Install phpMyAdmin on Fedora, CentOS & RHEL with Apache Web Server - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png\",\"datePublished\":\"2016-09-08T07:53:55+00:00\",\"dateModified\":\"2021-02-03T06:29:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png\",\"width\":200,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install phpMyAdmin on Fedora, CentOS &#038; RHEL with Apache Web Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/\",\"name\":\"cPanel Plesk\",\"description\":\"Blog on famous hosting control panels\",\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\",\"name\":\"Farooq Omer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"width\":300,\"height\":44,\"caption\":\"Farooq Omer\"},\"logo\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\",\"name\":\"Seemab Saleem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"caption\":\"Seemab Saleem\"},\"description\":\"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!\",\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install phpMyAdmin on Fedora, CentOS & RHEL with Apache Web Server - cPanel Plesk","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:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/","twitter_card":"summary_large_image","twitter_title":"Install phpMyAdmin on Fedora, CentOS & RHEL with Apache Web Server - cPanel Plesk","twitter_description":"PhpMyAdmin is\u00a0a\u00a0free and an open source PHP\u00a0platform used to administer MySQL with a web browser.It supports wide range of operations on MySQL,\u00a0MariaDB. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"Install phpMyAdmin on Fedora, CentOS &#038; RHEL with Apache Web Server","datePublished":"2016-09-08T07:53:55+00:00","dateModified":"2021-02-03T06:29:08+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/"},"wordCount":357,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png","articleSection":["Cpanel","Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/","url":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/","name":"Install phpMyAdmin on Fedora, CentOS & RHEL with Apache Web Server - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png","datePublished":"2016-09-08T07:53:55+00:00","dateModified":"2021-02-03T06:29:08+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/phpmyadmin_logo-e1457339468638.png","width":200,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/install-phpmyadmin-fedora-centos-rhel-apache-web-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"Install phpMyAdmin on Fedora, CentOS &#038; RHEL with Apache Web Server"}]},{"@type":"WebSite","@id":"https:\/\/cpanelplesk.com\/wp62\/#website","url":"https:\/\/cpanelplesk.com\/wp62\/","name":"cPanel Plesk","description":"Blog on famous hosting control panels","publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13","name":"Farooq Omer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","width":300,"height":44,"caption":"Farooq Omer"},"logo":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648","name":"Seemab Saleem","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","caption":"Seemab Saleem"},"description":"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!","sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5247","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=5247"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5247\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/3578"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=5247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=5247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=5247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}