{"id":8348,"date":"2021-11-24T09:23:33","date_gmt":"2021-11-24T09:23:33","guid":{"rendered":"https:\/\/www.how2shout.com\/linux\/?p=8348"},"modified":"2022-10-06T07:50:18","modified_gmt":"2022-10-06T07:50:18","slug":"how-to-install-phpmyadmin-on-debian-11-bullseye-apache","status":"publish","type":"post","link":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/","title":{"rendered":"How to Install phpMyAdmin on Debian 11 Bullseye (Apache)"},"content":{"rendered":"\n<p><em>Have a look at the commands in this tutorial for the installation of PhpMyAdmin on Debian 11 Bullseye using Apache webserver.&nbsp;<\/em><\/p>\n\n\n\n<p>PhpMyAdmin is an open-source web-based application that offers a web interface to directly manage and access MySQL or MariaDB databases from anywhere\/remotely using a web browser. The user can use the web graphical user interface provided by it to interact with databases without having extensive knowledge of the commands. Hence, even a newbie with some knowledge of computers can manage database tables for querying data and manipulating individual parameters.<\/p>\n\n\n\n<p>Well, like any other popular CMS platform such as WordPress, PhpMyAdmin is also written in PHP programming language used to create dynamic websites by calling up various scripts. This allows the users to not only easily install PhpMyAdmin but also access it locally and remotely. The web interface uses the combination of user and password to authenticate the user &#8211; two-factor authentication can increase security.<\/p>\n\n\n\n<p>With this tool, numerous procedures can be carried out using a convenient interface that would otherwise have to be carried out by an administrator using a command line with text input.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-steps-to-install-phpmyadmin-on-debian-11-bullseye\">Steps to install phpMyAdmin on Debian 11 Bullseye<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-update-your-server-desktop\">1. Update your server\/desktop<\/h3>\n\n\n\n<p>If your Debian 11 server is already up to date then leave this step; otherwise, it is recommended to run one of the system update commands to not only get the latest version of the already installed packages but also refresh the system repository cache along with some needed tools.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt udpate<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install nano wget<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-install-apache-php-mariadb\">2. Install Apache, PHP &amp; MariaDB<\/h3>\n\n\n\n<p>Well, phpMyAdmin requires an Apache web server to get served over a web browser using the local or internet network. Hence, we need to install the same on your Debian 11 server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install apache2<\/code><\/pre>\n\n\n\n<p><strong>Start<\/strong> and <strong>enable<\/strong> and check the status of the web server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo systemctl enable --now apache2<\/code><\/pre>\n\n\n\n<p>to check the <strong>status<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">systemctl status apache2<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-install-php\">Install PHP<\/h4>\n\n\n\n<p>As <strong>phpMyAdmin<\/strong> is based on PHP, hence we need to install it along with common extensions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt -y install wget php php-cgi php-mysqli php-pear php-mbstring libapache2-mod-php php-common php-phpseclib php-mysql<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-install-database\">Install Database<\/h4>\n\n\n\n<p>If you <strong>already<\/strong> have a <strong>database<\/strong> installed on your Debian 11 server where you are installing phpMyAdmin or you have a Database on any other server which you want to manage using phpMyAdmin then leave these steps otherwise install<strong> MariaDB\/MySQL.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install mariadb-server<\/code><\/pre>\n\n\n\n<p><strong>Start and enable:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo systemctl enable --now mariadb<\/code><\/pre>\n\n\n\n<p><strong>Check Status:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">systemctl status mariadb<\/code><\/pre>\n\n\n\n<p><strong>Secure Database server:<\/strong><\/p>\n\n\n\n<p>Once the installation is completed, run the given command to secure your database server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<p>Go through the guided text-based wizard to secure the MariaDB\/MySQL.<\/p>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-create-database-user-for-phpmyadmin-on-debian-11\">3. Create Database User for phpMyAdmin on Debian 11<\/h3>\n\n\n\n<p>Although it is not necessary to create a separate user to access with phpMyAdmin, however, it is recommended to improve the overall security, moreover, after disabling the remote root login, we have to create a new user to access all databases.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo mysql<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">CREATE USER '<strong>user<\/strong>'@localhost IDENTIFIED BY '<strong>password<\/strong>';<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">GRANT ALL PRIVILEGES ON *.* TO '<strong>user<\/strong>'@localhost IDENTIFIED BY '<strong>password<\/strong>';<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">FLUSH PRIVILEGES;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">exit;<\/code><\/pre>\n\n\n\n<p><strong>Note<\/strong>: Replace the <strong>user<\/strong> and <strong>password<\/strong> with whatever you want to set.<\/p>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-4-download-the-latest-phpmyadmin-package\">4. Download the latest phpMyAdmin package<\/h3>\n\n\n\n<p>Although we can install PHPMyAdmin directly using the default repository of Debian 11 Bullseye, however, the version will be old. Hence to get the latest one, download its archive file manually using the given command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">wget https:\/\/www.phpmyadmin.net\/downloads\/phpMyAdmin-latest-all-languages.tar.gz<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-5-configure-phpmyadmin-on-debian-11-bullseye\">5. Configure phpMyAdmin on Debian 11 Bullseye<\/h3>\n\n\n\n<p>Once you have the zipped phpMyAdmin file on your server or system, create some required directories and move the file to an appropriate location for accessing it through the Apache webserver.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo tar xvf phpMyAdmin-latest-all-languages.tar.gz\nsudo mv phpMyAdmin-*-all-languages\/ \/var\/www\/html\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>Now, <strong>create a configuration file<\/strong> by copying the one already present in the phpMyAdmin folder;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">cd \/var\/www\/html\n\nsudo cp phpmyadmin\/config.sample.inc.php phpmyadmin\/config.inc.php<\/code><\/pre>\n\n\n\n<p>Also <strong>create a Temporary folder for storage,<\/strong> if not exist.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo mkdir \/var\/www\/html\/phpmyadmin\/tmp<\/code><\/pre>\n\n\n\n<p><strong>Generate a secret key to use with phpMyadmin:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">openssl rand -base64 32<\/code><\/pre>\n\n\n\n<p><strong>Copy the generated<\/strong> key for cookie authentication.<\/p>\n\n\n\n<p>Now, edit the <strong>phpMyAdmin configuration<\/strong> file<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo nano \/var\/www\/html\/phpmyadmin\/config.inc.php<\/code><\/pre>\n\n\n\n<p>and <strong>past it in the front of the line :<\/strong><\/p>\n\n\n\n<p>$cfg[&#8216;blowfish_secret&#8217;] = &#8216;<strong>your-key<\/strong>&#8216;; \/* YOU MUST FILL IN THIS FOR COOKIE AUTH! *\/<\/p>\n\n\n\n<p>Replace <b>your key<\/b>&nbsp;with the generated one.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"815\" height=\"461\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/11\/Add-cute-fish-bowl-key-in-phpMyADmin-Debian-11.png\" alt=\"Add cute fish bowl key in phpMyADmin Debian 11\" class=\"wp-image-8351\" title=\"Add cute fish bowl key in phpMyADmin Debian 11\"\/><\/figure>\n\n\n\n<p><strong>Also, scroll down and add this line.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$cfg['TempDir'] = '\/var\/www\/html\/phpmyadmin\/tmp';<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"775\" height=\"434\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/11\/Create-Temp-storage-file-for-PhpMyAdmin.png\" alt=\"Create Temp storage file for PhpMyAdmin\" class=\"wp-image-8353\" title=\"Create Temp storage file for PhpMyAdmin\"\/><\/figure>\n\n\n\n<p>After all, this, <strong>Save<\/strong> the file by pressing <strong>Ctrl+O<\/strong>, hitting the <strong>Enter<\/strong> key, and then <strong>Ctrl+X<\/strong> to exit.<\/p>\n\n\n\n<p><strong>Change file permissions:<\/strong><\/p>\n\n\n\n<p><strong>Given access to Apache user to read the files:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo chown -R www-data:www-data \/var\/www\/html\/phpmyadmin<\/code><\/pre>\n\n\n\n<p><strong>Create an Apache configuration file<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo nano \/etc\/apache2\/conf-available\/phpmyadmin.conf<\/code><\/pre>\n\n\n\n<p><strong>Copy Paste the following lines:<\/strong><\/p>\n\n\n\n<pre id=\"crayon-61095e8c96cc2046184276-1\" class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\"><span class=\"crayon-r\">Alias<\/span> \/<span class=\"crayon-i \">phpmyadmin<\/span> \/var\/www\/html\/<span class=\"crayon-i \">phpmyadmin<\/span>\n\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">Directory<\/span> <span class=\"crayon-e \">\/var\/www\/html\/phpmyadmin\/<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-r\"> &nbsp; AddDefaultCharset<\/span> <span class=\"crayon-i \">UTF-8<\/span>\n<span class=\"crayon-h\"> &nbsp; <\/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>\n<span class=\"crayon-h\"> &nbsp;&nbsp; <\/span>&nbsp;<span class=\"crayon-h\"> &nbsp;&nbsp;&nbsp; <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-r\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Require<\/span> <span class=\"crayon-i \">all<\/span> <span class=\"crayon-i \">granted<\/span>\n<span class=\"crayon-h\"> &nbsp;&nbsp;&nbsp; <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-h\"> &nbsp; <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/IfModule<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/Directory<\/span><span class=\"crayon-r \">&gt;\n<\/span>\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">Directory<\/span> <span class=\"crayon-e \">\/var\/www\/html\/phpmyadmin\/setup\/<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-h\"> &nbsp; <\/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>\n<span class=\"crayon-h\"> &nbsp;&nbsp;&nbsp; <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-r\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Require<\/span> <span class=\"crayon-i \">all<\/span> <span class=\"crayon-i \">granted<\/span>\n<span class=\"crayon-h\"> &nbsp;&nbsp;&nbsp; <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/RequireAny<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-h\"> &nbsp; <\/span><span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/IfModule<\/span><span class=\"crayon-r \">&gt;<\/span>\n<span class=\"crayon-r \">&lt;<\/span><span class=\"crayon-r \">\/Directory<\/span><span class=\"crayon-r \">&gt;<\/span><\/code><\/pre>\n\n\n\n<p><strong>Activate new configuration:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo a2enconf phpmyadmin.conf<\/code><\/pre>\n\n\n\n<p><strong>Restart the Apache Webserver<\/strong><\/p>\n\n\n\n<p>To make the changes apply successfully, restart the Apache webserver.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-6-access-web-interface\">6. Access web interface<\/h3>\n\n\n\n<p>Enter the server IP address or domain name along with <code>\/phpmyadmin<\/code> folder in the browser URL to access this web database management platform.<\/p>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">https:\/\/server-ipaddress\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>or<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">http:\/\/your-comain.com\/phpmyadmin<\/code><\/pre>\n\n\n\n<p><strong>Note<\/strong>: If you get this notification-\u00a0<em> The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. Find out why. Or Alternatively, go to the &#8216;Operations&#8217; tab of any database to set it up there.<\/em><\/p>\n\n\n\n<p>Then simply click on the <strong>Find out why<\/strong> link and click the &#8220;<strong>Create<\/strong>&#8221; link to automatically create <code>phpmyadmin<\/code> database.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1366\" height=\"592\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png\" alt=\"PHPMYADMIn installation on Debian 11 Bullseye\" class=\"wp-image-8354\" title=\"PHPMYADMIn installation on Debian 11 Bullseye\"\/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Have a look at the commands in this tutorial for the installation of PhpMyAdmin on Debian 11 Bullseye using Apache webserver.&nbsp; PhpMyAdmin is an open-source web-based application that offers a web interface to directly manage and access MySQL or MariaDB databases from anywhere\/remotely using a web browser. The user can use the web graphical user [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":8354,"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":[145],"tags":[155,3145,3146],"class_list":{"0":"post-8348","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-debian","8":"tag-debian","9":"tag-debian-11","10":"tag-debian-bullseye"},"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 on Debian 11 Bullseye (Apache) - LinuxShout<\/title>\n<meta name=\"description\" content=\"Learn the commands to install the latest phpMyAdmin on Debian 11 Bullseye using Apache to manager mariaFB or MySQL database remotely.\" \/>\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-debian-11-bullseye-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 on Debian 11 Bullseye (Apache)\" \/>\n<meta property=\"og:description\" content=\"Learn the commands to install the latest phpMyAdmin on Debian 11 Bullseye using Apache to manager mariaFB or MySQL database remotely.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-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-11-24T09:23:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-06T07:50:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.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=\"5 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-debian-11-bullseye-apache\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/\"},\"author\":{\"name\":\"Heyan Maurya\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\"},\"headline\":\"How to Install phpMyAdmin on Debian 11 Bullseye (Apache)\",\"datePublished\":\"2021-11-24T09:23:33+00:00\",\"dateModified\":\"2022-10-06T07:50:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/\"},\"wordCount\":759,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png\",\"keywords\":[\"Debian\",\"Debian 11\",\"Debian bullseye\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#respond\"]}],\"copyrightYear\":\"2021\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/\",\"name\":\"How to Install phpMyAdmin on Debian 11 Bullseye (Apache) - LinuxShout\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png\",\"datePublished\":\"2021-11-24T09:23:33+00:00\",\"dateModified\":\"2022-10-06T07:50:18+00:00\",\"description\":\"Learn the commands to install the latest phpMyAdmin on Debian 11 Bullseye using Apache to manager mariaFB or MySQL database remotely.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png\",\"width\":1366,\"height\":592,\"caption\":\"PHPMYADMIn installation on Debian 11 Bullseye\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linux.how2shout.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install phpMyAdmin on Debian 11 Bullseye (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 on Debian 11 Bullseye (Apache) - LinuxShout","description":"Learn the commands to install the latest phpMyAdmin on Debian 11 Bullseye using Apache to manager mariaFB or MySQL database remotely.","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-debian-11-bullseye-apache\/","og_locale":"en_US","og_type":"article","og_title":"How to Install phpMyAdmin on Debian 11 Bullseye (Apache)","og_description":"Learn the commands to install the latest phpMyAdmin on Debian 11 Bullseye using Apache to manager mariaFB or MySQL database remotely.","og_url":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/","og_site_name":"LinuxShout","article_publisher":"https:\/\/www.facebook.com\/how2shout","article_published_time":"2021-11-24T09:23:33+00:00","article_modified_time":"2022-10-06T07:50:18+00:00","og_image":[{"width":1366,"height":592,"url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#article","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/"},"author":{"name":"Heyan Maurya","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72"},"headline":"How to Install phpMyAdmin on Debian 11 Bullseye (Apache)","datePublished":"2021-11-24T09:23:33+00:00","dateModified":"2022-10-06T07:50:18+00:00","mainEntityOfPage":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/"},"wordCount":759,"commentCount":8,"publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"image":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png","keywords":["Debian","Debian 11","Debian bullseye"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#respond"]}],"copyrightYear":"2021","copyrightHolder":{"@id":"https:\/\/linux.how2shout.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/","url":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/","name":"How to Install phpMyAdmin on Debian 11 Bullseye (Apache) - LinuxShout","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#primaryimage"},"image":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png","datePublished":"2021-11-24T09:23:33+00:00","dateModified":"2022-10-06T07:50:18+00:00","description":"Learn the commands to install the latest phpMyAdmin on Debian 11 Bullseye using Apache to manager mariaFB or MySQL database remotely.","breadcrumb":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#primaryimage","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2021\/11\/PHPMYADMIn-installation-on-Debian-11-Bullseye.png","width":1366,"height":592,"caption":"PHPMYADMIn installation on Debian 11 Bullseye"},{"@type":"BreadcrumbList","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linux.how2shout.com\/"},{"@type":"ListItem","position":2,"name":"How to Install phpMyAdmin on Debian 11 Bullseye (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\/8348","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=8348"}],"version-history":[{"count":14,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/8348\/revisions"}],"predecessor-version":[{"id":15861,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/8348\/revisions\/15861"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media\/8354"}],"wp:attachment":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media?parent=8348"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/categories?post=8348"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/tags?post=8348"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}