{"id":2354,"date":"2025-07-15T12:30:00","date_gmt":"2025-07-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2354"},"modified":"2025-06-03T06:04:30","modified_gmt":"2025-06-03T11:04:30","slug":"how-to-install-phpmyadmin-on-debian-13","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/","title":{"rendered":"How to install phpMyAdmin on Debian 13"},"content":{"rendered":"\n<div id=\"linux-4250188489\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>This blog post explains how to install phpMyAdmin on the Debian 13 operating system. phpMyAdmin is an open-source, web-based tool used for administering MySQL and MariaDB database systems. phpMyAdmin is written in PHP and offers a great GUI that simplifies the processes for creating, modifying, and deleting databases and tables easily. The application works in the browser, and when accessed, it connects to the database server. To function correctly, phpMyAdmin requires the LAMP stack, so we must install it first before we set up phpMyAdmin.<\/p>\n\n\n\n<p>Installing phpMyAdmin with the LAMP stack is a straightforward process that may take up to 15 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running Debian 13 OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n\n\n\n<li>A valid domain with a pointed A record to the server<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Before we begin the LAMP stack installation, we will update the system packages to their latest versions. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Apache Web server<\/h2>\n\n\n\n<p>First, the LAMP stack for installation will be the Apache Web server. To install Apache, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install apache2 -y<\/pre>\n\n\n\n<p>Once installed, start and enable the Apache service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start apache2 &amp;&amp; sudo systemctl enable apache2<\/pre>\n\n\n\n<p>Check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2<\/pre>\n\n\n\n<p>You should get the following output:&lt;\/p<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status apache2\n\u25cf apache2.service - The Apache HTTP Server\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/apache2.service; enabled; preset: enabled)\n     Active: active (running) since Thu 2025-05-29 01:04:16 CDT; 3min 43s ago\n Invocation: 81c847d196544470b3ed34005618c02a\n       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/\n   Main PID: 10993 (apache2)\n      Tasks: 55 (limit: 4640)\n     Memory: 5.1M (peak: 5.4M)\n        CPU: 137ms\n     CGroup: \/system.slice\/apache2.service\n             \u251c\u250010993 \/usr\/sbin\/apache2 -k start\n             \u251c\u250010995 \/usr\/sbin\/apache2 -k start\n             \u2514\u250010997 \/usr\/sbin\/apache2 -k start\n\nMay 29 01:04:16 host.test.vps systemd[1]: Starting apache2.service - The Apache HTTP Server...\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install PHP with Modules<\/h2>\n\n\n\n<p>Next in the LAMP stack will be the PHP 8.4 version, along with its PHP extensions, which are necessary for phpMyAdmin to function correctly. To install PHP with its extensions, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install php php-cgi php-mysqli php-pear php-mbstring libapache2-mod-php php-common php-phpseclib php-mysql -y\n<\/pre>\n\n\n\n<p>Once installed, execute the following command to check the PHP version:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php -v<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# php -v\nPHP 8.4.6 (cli) (built: Apr 14 2025 16:59:47) (NTS)\nCopyright (c) The PHP Group\nZend Engine v4.4.6, Copyright (c) Zend Technologies\n    with Zend OPcache v8.4.6, Copyright (c), by Zend Technologies\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Install MariaDB Database Server<\/h2>\n\n\n\n<p>The last component of the LAMP stack is the MariaDB database service. To install it, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install mariadb-server -y<\/pre>\n\n\n\n<p>Once installed, start and enable the MariaDB service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start mariadb &amp;&amp; sudo systemctl enable mariadb<\/pre>\n\n\n\n<p>Check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status mariadb<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status mariadb\n\u25cf mariadb.service - MariaDB 11.8.1 database server\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/mariadb.service; enabled; preset: enabled)\n     Active: active (running) since Thu 2025-05-29 01:23:07 CDT; 13s ago\n Invocation: 7a90da2638434545bb8180ee1aad899e\n       Docs: man:mariadbd(8)\n             https:\/\/mariadb.com\/kb\/en\/library\/systemd\/\n   Main PID: 16726 (mariadbd)\n     Status: \"Taking your SQL requests now...\"\n      Tasks: 14 (limit: 30624)\n     Memory: 296.7M (peak: 386.8M)\n        CPU: 12.848s\n     CGroup: \/system.slice\/mariadb.service\n             \u2514\u250016726 \/usr\/sbin\/mariadbd\n<\/pre>\n\n\n\n<p>Now, let&#8217;s create a database and a user that we will use for logging into phpMyAdmin later. To do that, log into the MariaDB console using the <strong>mysql<\/strong> command in the terminal and execute the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CREATE USER 'user'@'localhost' IDENTIFIED BY 'YourStrongPassword';\n\nCREATE DATABASE database;\n\nGRANT ALL PRIVILEGES ON database.* TO 'user'@'localhost';\n\nFLUSH PRIVILEGES;\n\nEXIT;\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Download and install phpMyAdmin<\/h2>\n\n\n\n<p>The LAMP stack is already installed, so we can proceed with installing phpMyAdmin. First, we will download it into the Apache document root:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\n\nwget https:\/\/www.phpmyadmin.net\/downloads\/phpMyAdmin-latest-all-languages.tar.gz\n<\/pre>\n\n\n\n<p>Once downloaded, extract the archive, rename it, and set the correct permissions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar -xvzf phpMyAdmin-latest-all-languages.tar.gz\n\nrm phpMyAdmin-latest-all-languages.tar.gz\n\nmv phpMyAdmin-5.2.2-all-languages phpmyadmin\n\nchown -R www-data:www-data phpmyadmin\/\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Create Apache Virtual Host File<\/h2>\n\n\n\n<p>Now, the last step would be creating a Virtual Host file so we can configure the phpMyAdmin to be accessible via a domain name. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo touch \/etc\/apache2\/sites-available\/phpmyadmin.conf<\/pre>\n\n\n\n<p>Open the file and paste the following lines of code<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;\nServerName pma.yourdomain.com\nDocumentRoot \/var\/www\/html\/phpmyadmin\n\n&lt;Directory \/var\/www\/html\/phpmyadmin&gt;\nAllowOverride All\n&lt;\/Directory&gt;\n\nErrorLog ${APACHE_LOG_DIR}\/error.log\nCustomLog ${APACHE_LOG_DIR}\/access.log combined\n\n&lt;\/VirtualHost&gt;\n<\/pre>\n\n\n\n<p>Save the file and close it.<\/p>\n\n\n\n<p>Enable the Apache configuration files for WordPress along with the rewrite module.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2enmod rewrite\n\nsudo a2ensite phpmyadmin.conf\n<\/pre>\n\n\n\n<p>Check the Apache2 syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apachectl -t<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/var\/www\/html\/phpmyadmin# apachectl -t\nSyntax OK\n<\/pre>\n\n\n\n<p>If the syntax is OK, restart the Apache service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n\n\n\n<p>That&#8217;s it. Now you can access the phpMyAdmin at <strong>http:\/\/pma.yourdomain.com<\/strong> and log in with the database user and password created in step 4.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"653\" height=\"543\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma1.png\" alt=\"install phpMyAdmin on Debian 13\" class=\"wp-image-2355\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma1.png 653w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma1-300x249.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma1-150x125.png 150w\" sizes=\"(max-width: 653px) 100vw, 653px\" \/><\/figure>\n\n\n\n<p>Once logged in, you will be redirected to the phpMyAdmin GUI:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"436\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2-1024x436.png\" alt=\"phpMyAdmin GUI\" class=\"wp-image-2356\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2-1024x436.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2-300x128.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2-150x64.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2-768x327.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2-1536x653.png 1536w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma2.png 1831w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>As you can see, in the top left corner, the database called &#8220;database&#8221; that we created in step 4 is listed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"436\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3-1024x436.jpg\" alt=\"install phpMyAdmin database\" class=\"wp-image-2357\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3-1024x436.jpg 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3-300x128.jpg 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3-150x64.jpg 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3-768x327.jpg 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3-1536x653.jpg 1536w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/05\/pma3.jpg 1831w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>That&#8217;s it. You successfully installed phpMyAdmin with the LAMP stack on Debian 13.<\/p>\n\n\n\n<p>If you encounter difficulties with this installation, our Linux administrators will be happy to assist you with any aspect. You need to sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">monthly management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\" target=\"_blank\" rel=\"noreferrer noopener\">per-incident server support plans<\/a>. Please do not hesitate to contact us at your convenience. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post on how to install phpMyAdmin on Debian 13 OS, please share it with your friends or leave a comment below. Thanks.<\/p><div id=\"linux-1547829753\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This blog post explains how to install phpMyAdmin on the Debian 13 operating system. phpMyAdmin is an open-source, web-based tool used for administering MySQL and MariaDB database systems. phpMyAdmin is written in PHP and offers a great GUI that simplifies the processes for creating, modifying, and deleting databases and tables easily. The application works in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2369,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[318,199,223],"class_list":["post-2354","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-how-to-install","tag-phpmyadmin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install phpMyAdmin on Debian 13 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install phpMyAdmin on Debian 13 using our latest guide or just ask our Linux system admins to do it for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/\" \/>\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 13 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install phpMyAdmin on Debian 13 using our latest guide or just ask our Linux system admins to do it for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-phpmyadmin-on-debian-13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install phpMyAdmin on Debian 13\",\"datePublished\":\"2025-07-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/\"},\"wordCount\":614,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-phpmyadmin-on-debian-13.webp\",\"keywords\":[\"debian 13\",\"how to install\",\"phpmyadmin\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/\",\"name\":\"How to install phpMyAdmin on Debian 13 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-phpmyadmin-on-debian-13.webp\",\"datePublished\":\"2025-07-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install phpMyAdmin on Debian 13 using our latest guide or just ask our Linux system admins to do it for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-phpmyadmin-on-debian-13.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/how-to-install-phpmyadmin-on-debian-13.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Install phpMyAdmin on Debian 13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-phpmyadmin-on-debian-13\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install phpMyAdmin on Debian 13\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install phpMyAdmin on Debian 13 | LinuxHostSupport","description":"Learn how to install phpMyAdmin on Debian 13 using our latest guide or just ask our Linux system admins to do it for you.","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:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/","og_locale":"en_US","og_type":"article","og_title":"How to install phpMyAdmin on Debian 13 | LinuxHostSupport","og_description":"Learn how to install phpMyAdmin on Debian 13 using our latest guide or just ask our Linux system admins to do it for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-07-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-phpmyadmin-on-debian-13.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install phpMyAdmin on Debian 13","datePublished":"2025-07-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/"},"wordCount":614,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-phpmyadmin-on-debian-13.webp","keywords":["debian 13","how to install","phpmyadmin"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/","name":"How to install phpMyAdmin on Debian 13 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-phpmyadmin-on-debian-13.webp","datePublished":"2025-07-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install phpMyAdmin on Debian 13 using our latest guide or just ask our Linux system admins to do it for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-phpmyadmin-on-debian-13.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/07\/how-to-install-phpmyadmin-on-debian-13.webp","width":742,"height":410,"caption":"How to Install phpMyAdmin on Debian 13"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpmyadmin-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install phpMyAdmin on Debian 13"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2354","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2354"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2354\/revisions"}],"predecessor-version":[{"id":2366,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2354\/revisions\/2366"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2369"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2354"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2354"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2354"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}