{"id":669,"date":"2018-01-18T16:39:31","date_gmt":"2018-01-18T13:39:31","guid":{"rendered":"https:\/\/galaxydata.ru\/community\/?p=669"},"modified":"2025-07-22T23:39:53","modified_gmt":"2025-07-22T20:39:53","slug":"how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25","status":"publish","type":"post","link":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669","title":{"rendered":"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &#038; Fedora 27\/26\/25"},"content":{"rendered":"<p><strong>PhpMyAdmin<\/strong>\u00a0is a well most popular web-based client for managing MySQL server. PHPMyAdmin is written in PHP programming language. It provides a user-friendly web interface to access and manage your databases. To ease usage to a wide range of people, phpMyAdmin is being translated into 72 languages and supports both LTR and RTL languages. This article will help you to install phpMyAdmin on CentOS\/RedHat System.<\/p>\n<h2 class=\"heading1\">Prerequsities<\/h2>\n<p>In order to use PHPMyAdmin, you must have PHP, MySQL and Apache installed on your system. Also, you need PHP-MySQL or PHP-MySQLi module enabled in PHP configuration. For the current version of PHPMyAdmin 4.7.2, the requirements are as follows.<\/p>\n<ul>\n<li>Apache &gt;= 2.2<\/li>\n<li>PHP &gt;= 5.5<\/li>\n<li>MySQL\/MariaDB &gt;= 5.5<\/li>\n<\/ul>\n<p>Use the tutorial:\u00a0<a href=\"https:\/\/tecadmin.net\/installing-apache-mysql-php-on-centos-redhat\/\" target=\"_blank\" rel=\"noopener\">Installing Apache MySQL PHP on CentOS and RedHat<\/a><\/p>\n<h2 class=\"heading1\">Enable Remi Repository<\/h2>\n<p>phpMyAdmin most updated package is available in Remi repository. Install it in your system using following commands.<\/p>\n<pre>### CentOS\/RHEL 7 ###\nrpm -Uvh http:\/\/rpms.famillecollet.com\/enterprise\/remi-release-7.rpm\n\n### CentOS\/RHEL 6 ###\nrpm -Uvh http:\/\/rpms.famillecollet.com\/enterprise\/remi-release-6.rpm\n\n### Fedora 27 ###\nrpm -Uvh http:\/\/rpms.famillecollet.com\/fedora\/remi-release-27.rpm\n\n### Fedora 26 ###\nrpm -Uvh http:\/\/rpms.famillecollet.com\/fedora\/remi-release-26.rpm\n\n### Fedora 25 ###\nrpm -Uvh http:\/\/rpms.famillecollet.com\/fedora\/remi-release-25.rpm\n\n<\/pre>\n<h5 class=\"heading1\">Install PhpMyAdmin<\/h5>\n<p>After enabling Remi repository on your system, let\u2019s start the with the installation of phpMyAdmin using yum package manager. All the dependencies will automatically be installed.<\/p>\n<pre class=\"\">yum --enablerepo=remi,remi-test  install phpMyAdmin httpd php\n<\/pre>\n<h2 class=\"heading1\">Configure PhpMyAdmin<\/h2>\n<p>phpMyAdmin by default allowed to access from localhost only. If you want to make it accessible from remote computers edit\u00a0\/etc\/httpd\/conf.d\/phpMyAdmin.conf\u00a0and update all 127.0.0.1 with your network like below or enable phpMyAdmin access for everyone.<\/p>\n<pre class=\"lang:sh decode:true pretty\">cat &lt;&lt; EOT &gt; \/etc\/httpd\/conf.d\/phpMyAdmin.conf\n\n# phpMyAdmin - Web based MySQL browser written in php\n# \n# Allows only localhost by default\n#\n# But allowing phpMyAdmin to anyone other than localhost should be considered\n# dangerous unless properly secured by SSL\n\nAlias \/phpMyAdmin \/usr\/share\/phpMyAdmin\nAlias \/phpmyadmin \/usr\/share\/phpMyAdmin\n\n&lt;Directory \/usr\/share\/phpMyAdmin\/&gt;\n\nOptions Indexes FollowSymLinks MultiViews\nAllowOverride all\nRequire all granted\n\n   AddDefaultCharset UTF-8\n\n   &lt;IfModule mod_authz_core.c&gt;\n     # Apache 2.4\n     &lt;RequireAny&gt;\n      #ADD following line:\n       Require all granted\n       Require ip 127.0.0.1\n       Require ip ::1\n     &lt;\/RequireAny&gt;\n   &lt;\/IfModule&gt;\n   &lt;IfModule !mod_authz_core.c&gt;\n     # Apache 2.2\n     #CHANGE following 2 lines:\n     Order Allow,Deny\n     Allow from All\n     Allow from 127.0.0.1\n     Allow from ::1\n   &lt;\/IfModule&gt;\n&lt;\/Directory&gt;\n\n&lt;Directory \/usr\/share\/phpMyAdmin\/setup\/&gt;\n   &lt;IfModule mod_authz_core.c&gt;\n     # Apache 2.4\n     &lt;RequireAny&gt;\n        #ADD following line:\n       Require all granted\n       Require ip 127.0.0.1\n       Require ip ::1\n     &lt;\/RequireAny&gt;\n   &lt;\/IfModule&gt;\n   &lt;IfModule !mod_authz_core.c&gt;\n       # Apache 2.2\n     #CHANGE following 2 lines:\n     Order Allow,Deny\n     Allow from All\n     Allow from 127.0.0.1\n     Allow from ::1\n   &lt;\/IfModule&gt;\n&lt;\/Directory&gt;\n\n# These directories do not require access over HTTP - taken from the original\n# phpMyAdmin upstream tarball\n#\n&lt;Directory \/usr\/share\/phpMyAdmin\/libraries\/&gt;\n    Order Deny,Allow\n    Deny from All\n    Allow from None\n&lt;\/Directory&gt;\n\n&lt;Directory \/usr\/share\/phpMyAdmin\/setup\/lib\/&gt;\n    Order Deny,Allow\n    Deny from All\n    Allow from None\n&lt;\/Directory&gt;\n\n&lt;Directory \/usr\/share\/phpMyAdmin\/setup\/frames\/&gt;\n    Order Deny,Allow\n    Deny from All\n    Allow from None\n&lt;\/Directory&gt;\n\n# This configuration prevents mod_security at phpMyAdmin directories from\n# filtering SQL etc.  This may break your mod_security implementation.\n#\n#&lt;IfModule mod_security.c&gt;\n#    &lt;Directory \/usr\/share\/phpMyAdmin\/&gt;\n#        SecRuleInheritance Off\n#    &lt;\/Directory&gt;\n#&lt;\/IfModule&gt;\n \n\nEOT<\/pre>\n<p>Add Rulse Firewall<\/p>\n<pre class=\"lang:sh decode:true  \">firewall-cmd --permanent --zone=public --add-service=http\nfirewall-cmd --permanent --zone=public --add-service=https\nfirewall-cmd --zone=public --add-service=mysql --permanent\nfirewall-cmd --reload<\/pre>\n<p>After updating phpMyAdmin Apache configuration file, restart Apache service to reload new settings.<\/p>\n<pre class=\"\">systemctl restart httpd\n<\/pre>\n<h2 class=\"heading1\">Access phpMyAdmin in Browser<\/h2>\n<p>Now you can access phpMyAdmin in a browser using the following URL. Change\u00a0svr1.tecadmin.net\u00a0with your server IP\/FQDN.<\/p>\n<pre class=\"pretty \">http:\/\/mysql.galaxydata.ru\/phpMyAdmin\/\n\nLogin Details: Use MySQL username and password.\n<\/pre>\n<p><a href=\"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4905\" src=\"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png\" alt=\"phpMyAdmin-Login-Screen\" width=\"661\" height=\"461\" \/><\/a><\/p>\n<p>Congratulation\u2019s\u00a0You have successfully installed phpMyAdmin. Using single phpMyAdmin we can manage multiple MySQL servers by adding multiple remote MySQL server. Use\u00a0<a href=\"https:\/\/tecadmin.net\/add-multiple-hosts-in-phpmyadmin\/\" target=\"_blank\" rel=\"noopener\">this article<\/a>\u00a0to add multiple MySQL hosts in phpMyAdmin.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PhpMyAdmin\u00a0is a well most popular web-based client for managing MySQL server. PHPMyAdmin is written in PHP programming language. It provides a user-friendly web interface to access and manage your databases.&hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[117],"class_list":["post-669","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-phpmyadmin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.4 (Yoast SEO v25.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &amp; Fedora 27\/26\/25 - GalaxyData Community<\/title>\n<meta name=\"description\" content=\"Install PHPMyAdmin 4.7 on various Linux distros including CentOS\/RHEL 7\/6 and Fedora 27\/26\/25: complete guide covering dependencies, installation process, and basic configurations for database management.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\" \/>\n<meta property=\"og:locale\" content=\"ru_RU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &amp; Fedora 27\/26\/25\" \/>\n<meta property=\"og:description\" content=\"Install PHPMyAdmin 4.7 on various Linux distros including CentOS\/RHEL 7\/6 and Fedora 27\/26\/25: complete guide covering dependencies, installation process, and basic configurations for database management.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\" \/>\n<meta property=\"og:site_name\" content=\"GalaxyData Community\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/vk.com\/galaxydata\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-18T13:39:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-22T20:39:53+00:00\" \/>\n<meta name=\"author\" content=\"Eduard Yamaltdinov\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u041d\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0430\u0432\u0442\u043e\u0440\u043e\u043c\" \/>\n\t<meta name=\"twitter:data1\" content=\"Eduard Yamaltdinov\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u043c\u0438\u043d\u0443\u0442\u044b\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#article\",\"isPartOf\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\"},\"author\":{\"name\":\"Eduard Yamaltdinov\",\"@id\":\"https:\/\/galaxydata.ru\/community\/#\/schema\/person\/674f493b626af18d90fe784aa69dfd7b\"},\"headline\":\"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &#038; Fedora 27\/26\/25\",\"datePublished\":\"2018-01-18T13:39:31+00:00\",\"dateModified\":\"2025-07-22T20:39:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\"},\"wordCount\":294,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/#organization\"},\"image\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png\",\"keywords\":[\"phpmyadmin\"],\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\",\"url\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\",\"name\":\"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 & Fedora 27\/26\/25 - GalaxyData Community\",\"isPartOf\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage\"},\"image\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png\",\"datePublished\":\"2018-01-18T13:39:31+00:00\",\"dateModified\":\"2025-07-22T20:39:53+00:00\",\"description\":\"Install PHPMyAdmin 4.7 on various Linux distros including CentOS\/RHEL 7\/6 and Fedora 27\/26\/25: complete guide covering dependencies, installation process, and basic configurations for database management.\",\"breadcrumb\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#breadcrumb\"},\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage\",\"url\":\"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png\",\"contentUrl\":\"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\",\"item\":\"https:\/\/galaxydata.ru\/community\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &#038; Fedora 27\/26\/25\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/galaxydata.ru\/community\/#website\",\"url\":\"https:\/\/galaxydata.ru\/community\/\",\"name\":\"GalaxyData Community\",\"description\":\"Tutorial for Cloud VDS\",\"publisher\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/galaxydata.ru\/community\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ru-RU\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/galaxydata.ru\/community\/#organization\",\"name\":\"GalaxyData Community\",\"url\":\"https:\/\/galaxydata.ru\/community\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\/\/galaxydata.ru\/community\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2025\/07\/favicon_from_logo_32x32_gd.png\",\"contentUrl\":\"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2025\/07\/favicon_from_logo_32x32_gd.png\",\"width\":32,\"height\":32,\"caption\":\"GalaxyData Community\"},\"image\":{\"@id\":\"https:\/\/galaxydata.ru\/community\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/vk.com\/galaxydata\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/galaxydata.ru\/community\/#\/schema\/person\/674f493b626af18d90fe784aa69dfd7b\",\"name\":\"Eduard Yamaltdinov\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\/\/galaxydata.ru\/community\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2016\/10\/cloud-server-150x150.png\",\"contentUrl\":\"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2016\/10\/cloud-server-150x150.png\",\"caption\":\"Eduard Yamaltdinov\"},\"description\":\"Eduard Yamaltdinov \u2014 \u0430\u0432\u0442\u043e\u0440 \u0438 \u044d\u043a\u0441\u043f\u0435\u0440\u0442 \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u0430\u043c \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0443\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0435\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0445, \u043e\u043f\u044b\u0442\u0435 \u0438\u043b\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u0445, \u0441\u043e\u043e\u0431\u0449\u0438\u0442\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435, \u043a\u0430\u043a\u0443\u044e \u0438\u043c\u0435\u043d\u043d\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c.\",\"url\":\"https:\/\/galaxydata.ru\/community\/author\/galaxydata\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 & Fedora 27\/26\/25 - GalaxyData Community","description":"Install PHPMyAdmin 4.7 on various Linux distros including CentOS\/RHEL 7\/6 and Fedora 27\/26\/25: complete guide covering dependencies, installation process, and basic configurations for database management.","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:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669","og_locale":"ru_RU","og_type":"article","og_title":"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 & Fedora 27\/26\/25","og_description":"Install PHPMyAdmin 4.7 on various Linux distros including CentOS\/RHEL 7\/6 and Fedora 27\/26\/25: complete guide covering dependencies, installation process, and basic configurations for database management.","og_url":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669","og_site_name":"GalaxyData Community","article_publisher":"https:\/\/vk.com\/galaxydata","article_published_time":"2018-01-18T13:39:31+00:00","article_modified_time":"2025-07-22T20:39:53+00:00","author":"Eduard Yamaltdinov","twitter_card":"summary_large_image","twitter_misc":{"\u041d\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0430\u0432\u0442\u043e\u0440\u043e\u043c":"Eduard Yamaltdinov","\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f":"2 \u043c\u0438\u043d\u0443\u0442\u044b"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#article","isPartOf":{"@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669"},"author":{"name":"Eduard Yamaltdinov","@id":"https:\/\/galaxydata.ru\/community\/#\/schema\/person\/674f493b626af18d90fe784aa69dfd7b"},"headline":"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &#038; Fedora 27\/26\/25","datePublished":"2018-01-18T13:39:31+00:00","dateModified":"2025-07-22T20:39:53+00:00","mainEntityOfPage":{"@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669"},"wordCount":294,"commentCount":0,"publisher":{"@id":"https:\/\/galaxydata.ru\/community\/#organization"},"image":{"@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage"},"thumbnailUrl":"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png","keywords":["phpmyadmin"],"articleSection":["Uncategorized"],"inLanguage":"ru-RU","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#respond"]}]},{"@type":"WebPage","@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669","url":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669","name":"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 & Fedora 27\/26\/25 - GalaxyData Community","isPartOf":{"@id":"https:\/\/galaxydata.ru\/community\/#website"},"primaryImageOfPage":{"@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage"},"image":{"@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage"},"thumbnailUrl":"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png","datePublished":"2018-01-18T13:39:31+00:00","dateModified":"2025-07-22T20:39:53+00:00","description":"Install PHPMyAdmin 4.7 on various Linux distros including CentOS\/RHEL 7\/6 and Fedora 27\/26\/25: complete guide covering dependencies, installation process, and basic configurations for database management.","breadcrumb":{"@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669"]}]},{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#primaryimage","url":"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png","contentUrl":"https:\/\/tecadmin.net\/wp-content\/uploads\/2014\/03\/phpMyAdmin-Login-Screen.png"},{"@type":"BreadcrumbList","@id":"https:\/\/galaxydata.ru\/community\/how-to-install-phpmyadmin-4-7-on-centos-rhel-7-6-fedora-27-26-25-669#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","item":"https:\/\/galaxydata.ru\/community"},{"@type":"ListItem","position":2,"name":"How to Install PHPMyAdmin 4.7 on CentOS\/RHEL 7\/6 &#038; Fedora 27\/26\/25"}]},{"@type":"WebSite","@id":"https:\/\/galaxydata.ru\/community\/#website","url":"https:\/\/galaxydata.ru\/community\/","name":"GalaxyData Community","description":"Tutorial for Cloud VDS","publisher":{"@id":"https:\/\/galaxydata.ru\/community\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/galaxydata.ru\/community\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ru-RU"},{"@type":"Organization","@id":"https:\/\/galaxydata.ru\/community\/#organization","name":"GalaxyData Community","url":"https:\/\/galaxydata.ru\/community\/","logo":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/galaxydata.ru\/community\/#\/schema\/logo\/image\/","url":"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2025\/07\/favicon_from_logo_32x32_gd.png","contentUrl":"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2025\/07\/favicon_from_logo_32x32_gd.png","width":32,"height":32,"caption":"GalaxyData Community"},"image":{"@id":"https:\/\/galaxydata.ru\/community\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/vk.com\/galaxydata"]},{"@type":"Person","@id":"https:\/\/galaxydata.ru\/community\/#\/schema\/person\/674f493b626af18d90fe784aa69dfd7b","name":"Eduard Yamaltdinov","image":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/galaxydata.ru\/community\/#\/schema\/person\/image\/","url":"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2016\/10\/cloud-server-150x150.png","contentUrl":"https:\/\/galaxydata.ru\/community\/wp-content\/uploads\/2016\/10\/cloud-server-150x150.png","caption":"Eduard Yamaltdinov"},"description":"Eduard Yamaltdinov \u2014 \u0430\u0432\u0442\u043e\u0440 \u0438 \u044d\u043a\u0441\u043f\u0435\u0440\u0442 \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u0430\u043c \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0443\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0435\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0445, \u043e\u043f\u044b\u0442\u0435 \u0438\u043b\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u0445, \u0441\u043e\u043e\u0431\u0449\u0438\u0442\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435, \u043a\u0430\u043a\u0443\u044e \u0438\u043c\u0435\u043d\u043d\u043e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c.","url":"https:\/\/galaxydata.ru\/community\/author\/galaxydata"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/posts\/669","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/comments?post=669"}],"version-history":[{"count":1,"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/posts\/669\/revisions"}],"predecessor-version":[{"id":1938,"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/posts\/669\/revisions\/1938"}],"wp:attachment":[{"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/media?parent=669"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/categories?post=669"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/galaxydata.ru\/community\/wp-json\/wp\/v2\/tags?post=669"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}