{"id":6440,"date":"2021-08-04T06:41:48","date_gmt":"2021-08-04T06:41:48","guid":{"rendered":"https:\/\/www.how2shout.com\/linux\/?p=6440"},"modified":"2021-08-04T07:02:13","modified_gmt":"2021-08-04T07:02:13","slug":"how-to-install-phpmyadmin-on-rocky-linux-8-with-apache","status":"publish","type":"post","link":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/","title":{"rendered":"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache"},"content":{"rendered":"<p>Managing MySQL or MariaDB using a web-based GUI application &#8211; PhpMyAdmin is a lot easier than using the command line. Hence, if you want to install PhpMyAdmin on Rocky Linux 8 then here is a tutorial to help you with that.<\/p>\n<p>phpMyAdmin is free to use PHP-based application distributed under open source licenses and one of the popular tools on various web hosting to manage MySQL databases. It allows the users to perform create, delete, export, import, creating PDF graphics of the database layout and more database-related tasks but with GUI and with a few clicks of the mouse.<\/p>\n<h2>phpMyAdmin installation on Rocky Linux 8 with Apache<\/h2>\n<p>Here we install phpMyAdmin using the popular web server platform Apache and of course, PHP &amp; MySQL database will be there as well. This tutorial can be used for AlamLinux, CentOS, and HEL 8 versions as well.<\/p>\n<h3>1. Install Apache, PHP, and MySQL<\/h3>\n<p>PhpMyAdmin requires an Apache web server so that we can access it using the browser. As it is written using PHP hence that must be there on the server including MySQL Database.<\/p>\n<p>If you have these three things then move forward otherwise see our tutorial-<a href=\"https:\/\/www.how2shout.com\/linux\/how-to-install-lamp-on-rocky-linux-8-server\/\" target=\"_blank\" rel=\"noopener\"> how to set up a LAMP server on Rocky Linux 8<\/a> and then come back here.<\/p>\n<p>&nbsp;<\/p>\n<h3>2. Download phpMyAdmin files<\/h3>\n<p>The file we require to install and set up this GUI MySQL Database management is neither available in the base repo of Rocky Linux and nor in EPEL. Hence, we have to download it manually from its website. Visit the <strong><a href=\"https:\/\/www.phpmyadmin.net\/downloads\/\" target=\"_blank\" rel=\"noopener\">download page,<\/a><\/strong> right-click on the latest version and copy the link.<\/p>\n<p><strong>Note<\/strong>: The latest version while performing this tutorial was <strong>5.1.1<\/strong> and may be different in your case.<\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Download-phpmyadmin-files-to-install.jpg\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6445\" title=\"Download phpmyadmin files to install\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Download-phpmyadmin-files-to-install.jpg\" alt=\"Download phpmyadmin files to install\" width=\"1062\" height=\"519\" \/><\/a><\/p>\n<p>After that type <strong>wget<\/strong>\u00a0 in your command terminal of Rocky Linux and paste the link after it, as shown in the below example:<\/p>\n<pre><strong>wget<\/strong> https:\/\/files.phpmyadmin.net\/phpMyAdmin\/5.1.1\/phpMyAdmin-5.1.1-all-languages.zip<\/pre>\n<p>&nbsp;<\/p>\n<h3>3. Extract the zip and configure phpMyAdmin on Rocky Linux 8<\/h3>\n<p>Now, we have the zipped file of the phpMyAdmin, it&#8217;s time to extract and perform the necessary changes to make it work.<\/p>\n<h4>1. Install unzip<\/h4>\n<pre>sudo dnf install unzip<\/pre>\n<p>&nbsp;<\/p>\n<h4>2. Extract file<\/h4>\n<pre>unzip phpMyAdmin-*-all-languages.zip<\/pre>\n<p>&nbsp;<\/p>\n<h4>3. Move the extracted files to <code>\/usr\/share\/phpmyadmin<\/code><\/h4>\n<pre>sudo mv phpMyAdmin-*-all-languages \/usr\/share\/phpmyadmin<\/pre>\n<p>&nbsp;<\/p>\n<h4>4. Create config.inc.php<\/h4>\n<p>The sample configuration file for phpMyAdmin is already there, we just need to rename it:<\/p>\n<p><em>Switch to the directory where we have moved the extracted\u00a0 file in the previous step<\/em><\/p>\n<pre>cd \/var\/www\/phpmyadmin<\/pre>\n<p><em>Rename the sample configuration file:<\/em><\/p>\n<pre>sudo mv config.sample.inc.php config.inc.php<\/pre>\n<p>&nbsp;<\/p>\n<h4>5. Generate 32-bit Secret string<\/h4>\n<p>Enter the below-given command and you get a long string of 32 numbers.<\/p>\n<pre>openssl rand -base64 32<\/pre>\n<p>Copy the string and move to the next step.<\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Command-to-generate-Secret-string-.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6454\" title=\"Command to generate Secret string\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Command-to-generate-Secret-string-.png\" alt=\"Command to generate Secret string\" width=\"618\" height=\"44\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<h4>6. Edit Configuration file<\/h4>\n<p>Now edit the configuration file that you have renamed:<\/p>\n<pre>sudo dnf install nano -y<\/pre>\n<pre>sudo nano config.inc.php<\/pre>\n<p>&nbsp;<\/p>\n<h4>7. Set the blowfish_secret string and temp directory for phpMyAdmin<\/h4>\n<p>In the configuration go to the following line:<\/p>\n<pre>$<span style=\"color: #339966;\">cfg<\/span>['<span style=\"color: #ffcc00;\">blowfish_secret<\/span>'] = '';<\/pre>\n<p>Now, add your copied string between the colons as shown in the screenshot:<\/p>\n<pre>$<span style=\"color: #339966;\">cfg<\/span>['<span style=\"color: #ffcc00;\">blowfish_secret<\/span>'] = '<span style=\"color: #ffcc00;\">yourgeneratedstring<\/span>';<\/pre>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Generate-a-secret-string-bowl-fish-for-phpmyAdmin.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6455\" title=\"Generate a secret string bowl fish for phpmyAdmin\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Generate-a-secret-string-bowl-fish-for-phpmyAdmin.png\" alt=\"Generate a secret string bowl fish for phpmyAdmin\" width=\"841\" height=\"490\" \/><\/a><\/p>\n<p>Next, scroll down to the &#8220;<strong>* Directories for saving\/loading files from server<\/strong>&#8221; area in the same configuration file and add the following line:<\/p>\n<pre>$cfg['TempDir'] = '\/tmp';<\/pre>\n<p>Save the file by press <strong>Ctrl+X<\/strong> and then type- <strong>Y<\/strong>, after that hit the <strong>Enter<\/strong> key.<\/p>\n<p><strong>Note<\/strong>: if you not declard the above temp direcotry in the file you will have an error- <em>The $cfg[&#8216;TempDir&#8217;] (\/usr\/share\/phpmyadmin\/tmp\/) is not accessible<\/em><\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/temp-direcotry-to-store-cache-files-for-php-my-admin.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6459\" title=\"temp direcotry to store cache files for php my admin\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/temp-direcotry-to-store-cache-files-for-php-my-admin.png\" alt=\"temp direcotry to store cache files for php my admin\" width=\"812\" height=\"468\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<h4>8. Create a Temporary directory and assign its permission<\/h4>\n<p>This Temp folder which we have created and also declared in the configuration file above is used to store cache files, which helps PHPMyAdmin to perform better.<\/p>\n<pre>sudo mkdir \/usr\/share\/phpmyadmin\/tmp\r\nsudo chown -R apache:apache \/usr\/share\/phpmyadmin\r\nsudo chmod 777 \/usr\/share\/phpmyadmin\/tmp<\/pre>\n<p>&nbsp;<\/p>\n<h3>4. Create Apache configuration file for phpMyAdmin<\/h3>\n<p>We need to tell our Apache to find out where is the location of phpMyAdmin files and how to serve them over the browser when someone calls for it. For this purpose, we create a dedicated Apache configuration file.<\/p>\n<pre>sudo nano \/etc\/httpd\/conf.d\/phpmyadmin.conf<\/pre>\n<p><strong>Copy-paste the below-given code in it:<\/strong><\/p>\n<div id=\"crayon-61095e8c96cc2046184276-2\" class=\"crayon-line\">\n<div id=\"crayon-61095e8c96cc2046184276-1\" class=\"crayon-line\">\n<pre id=\"crayon-61095e8c96cc2046184276-1\" class=\"crayon-line\"><span class=\"crayon-r\">Alias<\/span> \/<span class=\"crayon-i \">phpmyadmin<\/span> \/<span class=\"crayon-i \">usr<\/span>\/<span class=\"crayon-i \">share<\/span>\/<span class=\"crayon-i \">phpmyadmin<\/span>\r\n\r\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">Directory<\/span> <span class=\"crayon-e \">\/usr\/share\/phpmyadmin\/<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-r\"> \u00a0 AddDefaultCharset<\/span> <span class=\"crayon-i \">UTF-8<\/span>\r\n<span class=\"crayon-h\"> \u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">IfModule<\/span> <span class=\"crayon-e \">mod_authz_core.c<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-h\"> \u00a0\u00a0\u00a0 <\/span><span class=\"crayon-c\"># Apache 2.4<\/span>\r\n<span class=\"crayon-h\"> \u00a0\u00a0\u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-r\"> \u00a0\u00a0\u00a0\u00a0\u00a0Require<\/span> <span class=\"crayon-i \">all<\/span> <span class=\"crayon-i \">granted<\/span>\r\n<span class=\"crayon-h\"> \u00a0\u00a0\u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-h\"> \u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/IfModule<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/Directory<\/span><span class=\"crayon-r \">&gt;\r\n<\/span>\r\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">Directory<\/span> <span class=\"crayon-e \">\/usr\/share\/phpmyadmin\/setup\/<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-h\"> \u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">IfModule<\/span> <span class=\"crayon-e \">mod_authz_core.c<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-c\"># Apache 2.4<\/span>\r\n<span class=\"crayon-h\"> \u00a0\u00a0\u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-r\"> \u00a0\u00a0\u00a0\u00a0\u00a0 Require<\/span> <span class=\"crayon-i \">all<\/span> <span class=\"crayon-i \">granted<\/span>\r\n<span class=\"crayon-h\"> \u00a0\u00a0\u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-h\"> \u00a0 <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/IfModule<\/span><span class=\"crayon-r \">&gt;<\/span>\r\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/Directory<\/span><span class=\"crayon-r \">&gt;<\/span><\/pre>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<p>And Save the file by pressing <strong>Ctrl+X<\/strong>, to confirm press <strong>Y<\/strong> and hit the <strong>Enter<\/strong> key.<\/p>\n<p>&nbsp;<\/p>\n<h3>5. Set proper permission for SELinux policies (optional)<\/h3>\n<p>If your system has an enabled SELinux, then run the below command to set the appropriate permission for SELinux policies, so that we can access this GUI app without any limitation.<\/p>\n<pre>sudo chcon -Rv --type=httpd_sys_content_t \/usr\/share\/phpmyadmin\/*<\/pre>\n<p>&nbsp;<\/p>\n<h3>6. Restart Apache on Rocky Linux 8<\/h3>\n<p>To let the Apache webserver recognize the made changes restart its services once.<\/p>\n<pre>sudo systemctl restart httpd.service<\/pre>\n<p>&nbsp;<\/p>\n<h3>7. Access phpMyAdmin Web interface<\/h3>\n<p>Now, open a system&#8217;s browser that can access the Server Ip-address or domain where you have installed phpMyAdmin.<\/p>\n<p><strong>And point it to :<\/strong><\/p>\n<pre>http:\/\/your-server-ip-address\/phpmyadmin\r\nor\r\nhttp:\/\/your-domain.com\/phpmyadmin<\/pre>\n<p><strong>Enter the username and password of your MySQL root user to access all the databases.<\/strong><\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/phpMyAdmin-web-interface-on-Rocky-Linux.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6449\" title=\"phpMyAdmin web interface on Rocky Linux\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/phpMyAdmin-web-interface-on-Rocky-Linux.png\" alt=\"phpMyAdmin web interface on Rocky Linux\" width=\"942\" height=\"588\" \/><\/a> <a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6448\" title=\"Install phpMyAdmin on Rocky Linux 8\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png\" alt=\"Install phpMyAdmin on Rocky Linux 8\" width=\"1366\" height=\"592\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<h3>8. Create phpMyAdmin default Storage database<\/h3>\n<p>If you have not manually created a dedicated database for phpMyadmin then as you log in, the same will be asked by the software to create.<\/p>\n<p>At the bottom, you will see a message &#8220;<em>ThephpPMyAdmin configuration storage is not completely configured, some extended features have been deactivated.<\/em>&#8221; Click on the &#8220;<strong>Find out why link.<\/strong>&#8221;<\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/phpmyadmin-storage-configuration.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6458\" title=\"phpmyadmin storage configuration\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/phpmyadmin-storage-configuration.png\" alt=\"phpmyadmin storage configuration\" width=\"1054\" height=\"623\" \/><\/a><\/p>\n<p>Now, another page will open, click on the &#8220;<strong>Create<\/strong>&#8221; link to generate a database name &#8216;<strong>phpymyadmin<\/strong>&#8216; to complete the configuration storage setup.<\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Create-a-database-named-phpmyadmin.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6457\" title=\"Create a database named phpmyadmin\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/Create-a-database-named-phpmyadmin.png\" alt=\"Create a database named phpmyadmin\" width=\"985\" height=\"456\" \/><\/a><\/p>\n<p>That&#8217;s it, you have successfully removed the warning and have set up all the required things to manage your MySQL database graphically.<\/p>\n<p><a href=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/DB-for-storing-files-created-sucessfully.png\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-6456\" title=\"DB for storing files created sucessfully\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/08\/DB-for-storing-files-created-sucessfully.png\" alt=\"DB for storing files created sucessfully\" width=\"701\" height=\"480\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p><strong>Ending Notes:<\/strong><\/p>\n<p>In this way, we can install the phpMyAdmin on LAMP running Rocky Linux 8 Server to access MYSQL or MariaDB database using the web-based graphical user interface.<\/p>\n<p><strong>Other Articles:<\/strong><\/p>\n<ul>\n<li><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 evyocv\" href=\"https:\/\/www.how2shout.com\/linux\/how-to-access-remote-mysql-database-in-local-phpmyadmin\/\" target=\"_blank\" rel=\"noopener\">How to access remote MySQL database in local phpMyAdmin<\/a><\/li>\n<li><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 evyocv\" href=\"https:\/\/www.how2shout.com\/linux\/install-phpmyadmin-on-docker-to-manage-mariadb-or-mysql\/\" target=\"_blank\" rel=\"noopener\">Install PhpMyAdmin on Docker to manage MariaDB or MySQL<\/a><\/li>\n<li><a href=\"https:\/\/www.how2shout.com\/linux\/how-to-install-mariadb-10-on-almalinux-8-or-rocky-linux\/\" target=\"_blank\" rel=\"noopener\">How to install MariaDB 10 on AlmaLinux 8 or Rocky Linux<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Managing MySQL or MariaDB using a web-based GUI application &#8211; PhpMyAdmin is a lot easier than using the command line. Hence, if you want to install PhpMyAdmin on Rocky Linux 8 then here is a tutorial to help you with that. phpMyAdmin is free to use PHP-based application distributed under open source licenses and one [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":6448,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","_mbp_gutenberg_autopost":false,"footnotes":""},"categories":[3140],"tags":[2373,3139],"class_list":{"0":"post-6440","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-rocky-linux","8":"tag-phpmyadmin","9":"tag-rocky-linux"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache - LinuxShout<\/title>\n<meta name=\"description\" content=\"Tutorial to Install phpMyAdmin on Rocky Linux 8 using Apache webserver without having any error to manage MySQL or MariaDB using web GUI\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache\" \/>\n<meta property=\"og:description\" content=\"Tutorial to Install phpMyAdmin on Rocky Linux 8 using Apache webserver without having any error to manage MySQL or MariaDB using web GUI\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxShout\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/how2shout\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-04T06:41:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-04T07:02:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1366\" \/>\n\t<meta property=\"og:image:height\" content=\"592\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Heyan Maurya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:site\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Heyan Maurya\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/\"},\"author\":{\"name\":\"Heyan Maurya\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\"},\"headline\":\"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache\",\"datePublished\":\"2021-08-04T06:41:48+00:00\",\"dateModified\":\"2021-08-04T07:02:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/\"},\"wordCount\":904,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Install-phpMyAdmin-on-Rocky-Linux-8.png\",\"keywords\":[\"phpmyadmin\",\"rocky linux\"],\"articleSection\":[\"Rocky Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#respond\"]}],\"copyrightYear\":\"2021\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/\",\"name\":\"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache - LinuxShout\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Install-phpMyAdmin-on-Rocky-Linux-8.png\",\"datePublished\":\"2021-08-04T06:41:48+00:00\",\"dateModified\":\"2021-08-04T07:02:13+00:00\",\"description\":\"Tutorial to Install phpMyAdmin on Rocky Linux 8 using Apache webserver without having any error to manage MySQL or MariaDB using web GUI\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Install-phpMyAdmin-on-Rocky-Linux-8.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Install-phpMyAdmin-on-Rocky-Linux-8.png\",\"width\":1366,\"height\":592,\"caption\":\"Install phpMyAdmin on Rocky Linux 8\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linux.how2shout.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"name\":\"LinuxShout\",\"description\":\"Find the open source solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"alternateName\":\"Linux how2shout\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linux.how2shout.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\",\"name\":\"LinuxShout\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"width\":503,\"height\":349,\"caption\":\"LinuxShout\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/how2shout\",\"https:\\\/\\\/x.com\\\/h2smedia\",\"https:\\\/\\\/instagram.com\\\/h2smedia\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/h2smedia\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/how2shout\",\"https:\\\/\\\/youtube.com\\\/h2smedia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\",\"name\":\"Heyan Maurya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"caption\":\"Heyan Maurya\"},\"description\":\"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...\",\"sameAs\":[\"https:\\\/\\\/www.how2shout.com\\\/\"],\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/author\\\/heyan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache - LinuxShout","description":"Tutorial to Install phpMyAdmin on Rocky Linux 8 using Apache webserver without having any error to manage MySQL or MariaDB using web GUI","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:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/","og_locale":"en_US","og_type":"article","og_title":"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache","og_description":"Tutorial to Install phpMyAdmin on Rocky Linux 8 using Apache webserver without having any error to manage MySQL or MariaDB using web GUI","og_url":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/","og_site_name":"LinuxShout","article_publisher":"https:\/\/www.facebook.com\/how2shout","article_published_time":"2021-08-04T06:41:48+00:00","article_modified_time":"2021-08-04T07:02:13+00:00","og_image":[{"width":1366,"height":592,"url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png","type":"image\/png"}],"author":"Heyan Maurya","twitter_card":"summary_large_image","twitter_creator":"@h2smedia","twitter_site":"@h2smedia","twitter_misc":{"Written by":"Heyan Maurya","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#article","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/"},"author":{"name":"Heyan Maurya","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72"},"headline":"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache","datePublished":"2021-08-04T06:41:48+00:00","dateModified":"2021-08-04T07:02:13+00:00","mainEntityOfPage":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/"},"wordCount":904,"commentCount":0,"publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"image":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png","keywords":["phpmyadmin","rocky linux"],"articleSection":["Rocky Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#respond"]}],"copyrightYear":"2021","copyrightHolder":{"@id":"https:\/\/linux.how2shout.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/","url":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/","name":"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache - LinuxShout","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#primaryimage"},"image":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png","datePublished":"2021-08-04T06:41:48+00:00","dateModified":"2021-08-04T07:02:13+00:00","description":"Tutorial to Install phpMyAdmin on Rocky Linux 8 using Apache webserver without having any error to manage MySQL or MariaDB using web GUI","breadcrumb":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#primaryimage","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/08\/Install-phpMyAdmin-on-Rocky-Linux-8.png","width":1366,"height":592,"caption":"Install phpMyAdmin on Rocky Linux 8"},{"@type":"BreadcrumbList","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-rocky-linux-8-with-apache\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linux.how2shout.com\/"},{"@type":"ListItem","position":2,"name":"How to install phpMyAdmin\u00a0on Rocky Linux 8 with Apache"}]},{"@type":"WebSite","@id":"https:\/\/linux.how2shout.com\/#website","url":"https:\/\/linux.how2shout.com\/","name":"LinuxShout","description":"Find the open source solutions","publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"alternateName":"Linux how2shout","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linux.how2shout.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/linux.how2shout.com\/#organization","name":"LinuxShout","url":"https:\/\/linux.how2shout.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","width":503,"height":349,"caption":"LinuxShout"},"image":{"@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/how2shout","https:\/\/x.com\/h2smedia","https:\/\/instagram.com\/h2smedia","https:\/\/www.linkedin.com\/company\/h2smedia\/","https:\/\/www.pinterest.com\/how2shout","https:\/\/youtube.com\/h2smedia"]},{"@type":"Person","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72","name":"Heyan Maurya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","caption":"Heyan Maurya"},"description":"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...","sameAs":["https:\/\/www.how2shout.com\/"],"url":"https:\/\/linux.how2shout.com\/author\/heyan\/"}]}},"_links":{"self":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/6440","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/comments?post=6440"}],"version-history":[{"count":5,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/6440\/revisions"}],"predecessor-version":[{"id":6466,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/6440\/revisions\/6466"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media\/6448"}],"wp:attachment":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media?parent=6440"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/categories?post=6440"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/tags?post=6440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}