{"id":11998,"date":"2024-09-16T06:21:39","date_gmt":"2024-09-16T06:21:39","guid":{"rendered":"https:\/\/www.how2shout.com\/linux\/?p=11998"},"modified":"2024-09-16T06:22:12","modified_gmt":"2024-09-16T06:22:12","slug":"how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts","status":"publish","type":"post","link":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/","title":{"rendered":"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS"},"content":{"rendered":"\n<p><em>Tutorial to learn the steps for installing phpMyAdmin on Ubuntu 24.04 Noble or 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL via web browser and graphical user interface.<\/em><\/p>\n\n\n\n<p>phpMyAdmin is a popular open-source software for managing databases that is available on almost all web hosting services. However, if you manage your hosting or cloud server yourself, then you have to install this Database management software yourself.<\/p>\n\n\n\n<p>The program offers a graphical interface with numerous options. These can refer to a complete database and include, for example:<\/p>\n\n\n\n<p><strong>\u2022<\/strong> Creating a new database<br>\n<strong>\u2022<\/strong> Delete an existing database<br>\n<strong>\u2022<\/strong> Copy the content to a new database<br>\n<strong>\u2022<\/strong> Backup in a backup<br>\n<strong>\u2022<\/strong> Restore from an existing backup<br>\n<strong>\u2022<\/strong> Transferring from one server to another<br>\n<strong>\u2022<\/strong> Changing users and passwords<br>\n<strong>\u2022<\/strong> Manipulation of access rights<\/p>\n\n\n\n<p>We can perform complex and time-consuming tasks without dealing with commands and their structure with the help of phpMyAdmin. These include, but are not limited to:<\/p>\n\n\n\n<p><strong>\u2022<\/strong> Find variable names or content in databases<br> <strong>\u2022<\/strong> Replacing Values<br> <strong>\u2022<\/strong> Encryption of plain text using different algorithms, e.g. passwords<br> <strong>\u2022<\/strong> Multiple selections of variables via the graphical interface<br> <strong>\u2022<\/strong> Checking databases for internal consistency and other errors<br> <strong>\u2022<\/strong> Create and delete entries, parameters, or values<br> <strong>\u2022<\/strong> Create, copy, or remove individual tables<br> <strong>\u2022<\/strong> Clear presentation of the structure of databases<\/p>\n\n\n\n<p>Let&#8217;s learn how to install phpMyAdmin on Ubuntu 24.04 or 22.04 Server. The steps given here will also be the same for other versions of this Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-steps-to-install-phpmyadmin-on-ubuntu-24-04-or-22-04-server\">Steps to install phpMyAdmin on Ubuntu 24.04 or 22.04 Server<\/h2>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"><svg aria-hidden=\"true\" focusable=\"false\" data-icon=\"clock\" width=\"20\" height=\"20\" fill=\"none\" stroke=\"currentColor\" style=\"display:inline-block;vertical-align:-0.1em\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z\"><\/path><\/svg><\/span><span class=\"yoast-reading-time__spacer\" style=\"display:inline-block;width:1em\"><\/span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time:  <\/span><span class=\"yoast-reading-time__reading-time\">37<\/span><span class=\"yoast-reading-time__time-unit\"> minutes<\/span><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-phpmyadmin-requirements\">1. phpMyAdmin Requirements<\/h3>\n\n\n\n<p>To perform this tutorial, we require a Ubuntu server, a non-root sudo user access, an Apache web server, a Database, PHP, and an active internet connection.<\/p>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-update-the-ubuntu-24-04-or-22-04-server\">2. Update the Ubuntu 24.04 or 22.04 Server<\/h3>\n\n\n\n<p>First, we should update our Linux server because most of the packages we need to set up phpMyAdmin will come from the default Ubuntu Jammy JellyFish repository.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt update &amp;&amp; sudo apt upgrade<\/code><\/pre>\n\n\n\n<p><strong>Also, install:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install wget nano<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-install-the-lamp-server\">3. Install the LAMP server<\/h3>\n\n\n\n<p>We need LAMP Stack, which refers to a software bundle comprised of Apache, MySQL\/MariaDB, and PHP  installed on a Linux server. For the Linux server, we are using Ubuntu; we will install the rest in this step.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-apache-webserver\">Apache Webserver<\/h4>\n\n\n\n<p>Apache is an open-source web server that is available to install directly using Ubuntu&#8217;s default repository:<\/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>Enable its server:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo systemctl enable apache2<\/code><\/pre>\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<h4 class=\"wp-block-heading\" id=\"h-setup-mariadb-server\">Setup MariaDB server<\/h4>\n\n\n\n<p>Next, install the MariaDB server, which is a fork of MySQL that works exactly like Apache. It is also available to set up using the default system repository.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install mariadb-server mariadb-client<\/code><\/pre>\n\n\n\n<p><strong>Enable and start&nbsp;<\/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>Also, secure your MariaDB installation:<\/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>You will get a text-based wizard to secure your database server as you run the above command. Here are the questions it will ask:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">Enter current password for root (enter for none): Press <strong>ENTER<\/strong>.\nSwitch to unix_socket authentication? Press <strong>N<\/strong>, then <strong>ENTER<\/strong>.\nChange the root password? Press <strong>Y<\/strong>, then <strong>ENTER<\/strong>.\nRemove anonymous users? Press <strong>Y<\/strong>, then <strong>ENTER<\/strong>.\nDisallow root login remotely? Press <strong>Y<\/strong>, then <strong>ENTER<\/strong>.\nRemove test database and access to it? Press <strong>Y<\/strong>, then <strong>ENTER<\/strong>.\nReload privilege tables now? Press <strong>Y<\/strong>, then <strong>ENTER<\/strong>.<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-install-php-and-its-extension\">Install PHP and its extension<\/h4>\n\n\n\n<p>phpMyAdmin is a PHP-based SQL database management software, hence we need this scripting language on our Ubuntu system and some common PHP extensions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo apt install php php-{fpm,mbstring,bcmath,xml,mysql,common,gd,cli,curl,zip}<\/code><\/pre>\n\n\n\n<p>Also, enable PHP fpm to start with FPM, if not already:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo systemctl enable php8.1-fpm --now<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-4-install-phpmyadmin-on-ubuntu-24-04-or-22-04\">4. Install phpMyAdmin on Ubuntu 24.04 or 22.04<\/h3>\n\n\n\n<p>Well, <span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">one way to install phpMyAdmin is to use the APT package manager to download and install it<a href=\"https:\/\/www.how2shout.com\/linux\/how-to-install-phpmyadmin-on-ubuntu-20-04-using-repository\/\" target=\"_blank\" rel=\"noopener\"><strong>\u00a0using Ubuntu&#8217;s repository.<\/strong>\u00a0<\/a>However, one should be aware that the version of phpMyAdmin installed using APT will not be the latest one. This is because the long-term version of Ubuntu uses extremely stable packages, so<\/span> you won&#8217;t get the latest release of the software. In such a situation, we can manually download the package of phpMyadmin to configure. Let&#8217;s see how to do that.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-download-phpmyadmin-s-latest-version\">Download phpMyAdmin&#8217;s latest version.<\/h4>\n\n\n\n<p>The command will automatically fetch and save the latest phpMyAdmin compressed file in Tar format. Just copy and execute it in your command terminal:<\/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<h4 class=\"wp-block-heading\" id=\"h-extract-and-configure\">Extract and configure<\/h4>\n\n\n\n<p>Once the file is downloaded to your system, extract it and move it to your webroot directory.<\/p>\n\n\n\n<p><strong>Extraction:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">tar xvf phpMyAdmin-*-all-languages.tar.gz<\/code><\/pre>\n\n\n\n<p><strong>Now, move it:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo mv phpMyAdmin-*\/ \/var\/www\/html\/phpmyadmin<\/code><\/pre>\n\n\n\n<p><span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">Also, <span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">remember to create a Temporary folder called &#8216;<strong>tmp<\/strong>&#8216; inside the extracted directory; otherwise, the phpMyAdmin interface will generate a warning<\/span>.<\/span><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo mkdir -p \/var\/www\/html\/phpmyadmin\/tmp<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-5-add-blowfish-cipher-string\">5. Add Blowfish cipher string<\/h3>\n\n\n\n<p>To work correctly, phpMyAdmin needs a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Blowfish_(cipher)\" target=\"_blank\" rel=\"noopener\">Blowfish cipher<\/a> string in the configuration file for cookie authentication. However, by default, there is no main configuration file because we manually set up the phpMyAdmin. Instead, there is a sample configuration file that we can rename and use. Here is a command for that:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo cp \/var\/www\/html\/phpmyadmin\/config.sample.inc.php \/var\/www\/html\/phpmyadmin\/config.inc.php<\/code><\/pre>\n\n\n\n<p>Now, generate a <strong>32-bit<\/strong> random string:<\/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<figure class=\"wp-block-image\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"521\" height=\"52\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2022\/03\/Generate-random-32-bit-string-for-BowlFish.png\" alt=\"Generate random 32 bit string for BowlFish\" class=\"wp-image-12003\" title=\"Generate random 32 bit string for BowlFish\"\/><\/figure>\n\n\n\n<p>Copy the string generated by the above command:<\/p>\n\n\n\n<p>Now, edit the&nbsp;<strong>phpMyAdmin configuration<\/strong>&nbsp;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\u00a0<strong>past it in the front of the line :<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$cfg[\u2018blowfish_secret\u2019] = \u2018<span style=\"color: #ffff99;\"><strong>your-key<\/strong><\/span>\u2018; \/* YOU MUST FILL IN THIS FOR COOKIE AUTH! *\/<\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<b>your key<\/b> with the generated code.<\/p>\n\n\n\n<p>Also, scroll down to the end and add this line.<\/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=\"912\" height=\"437\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2022\/03\/BowlFish-secret-key-for-phpMyAdmin.png\" alt=\"BowlFish secret key for phpMyAdmin\" class=\"wp-image-12002\" title=\"BowlFish secret key for phpMyAdmin\"\/><\/figure>\n\n\n\n<p>After that<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">, save your file by pressing\u00a0<strong>Ctrl+O<\/strong>, hit<\/span>ting the\u00a0Enter\u00a0key, and exiting the file editor- <strong>Ctrl+X<\/strong>.<\/p>\n\n\n\n<p><strong>Give Apache permission to access PHPMyAdmin 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>File and directory permission:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo find \/var\/www\/html\/phpmyadmin\/ -type d -exec chmod 755 {} \\;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo find \/var\/www\/html\/phpmyadmin\/ -type f -exec chmod 644 {} \\;<\/code><\/pre>\n\n\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-6-create-an-apache-vhost-configuration-file\">6. Create an Apache Vhost configuration file<\/h3>\n\n\n\n<p>We don&#8217;t want to serve the phpMyAdmin user interface on our root domain or IP address, so we either use a subdomain or a subfolder. Here, we are serving it in a subfolder. Thus, create a configuration file for it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo nano \/etc\/apache2\/conf-available\/phpmyadmin.conf<\/pre>\n\n\n\n<p><strong>Copy Paste the following lines:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">Alias \/phpmyadmin \/var\/www\/html\/phpmyadmin\n\n&lt;Directory \/var\/www\/html\/phpmyadmin&gt;\nOptions Indexes FollowSymLinks\nDirectoryIndex index.php\n\n&lt;IfModule mod_php8.c&gt;\nAddType application\/x-httpd-php .php\n\nphp_flag magic_quotes_gpc Off\nphp_flag track_vars On\nphp_flag register_globals Off\nphp_value include_path .\n&lt;\/IfModule&gt;\n\n&lt;\/Directory&gt;\n\n# Authorize for setup\n&lt;Directory \/var\/www\/html\/phpmyadmin\/setup&gt;\n&lt;IfModule mod_authn_file.c&gt;\nAuthType Basic\nAuthName \"phpMyAdmin Setup\"\nAuthUserFile \/etc\/phpmyadmin\/htpasswd.setup\n&lt;\/IfModule&gt;\nRequire valid-user\n&lt;\/Directory&gt;\n\n# Disallow web access to directories that don't need it\n&lt;Directory \/var\/www\/html\/phpmyadmin\/libraries&gt;\nOrder Deny,Allow\nDeny from All\n&lt;\/Directory&gt;\n&lt;Directory \/var\/www\/html\/phpmyadmin\/setup\/lib&gt;\nOrder Deny,Allow\nDeny from All\n&lt;\/Directory&gt;<\/code><\/pre>\n\n\n\n<p>Save the file-<strong> Ctrl+O,<\/strong> hit <strong>Enter<\/strong>, and exit using<strong> Ctrl+X.<\/strong><\/p>\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-7-access-the-phpmyadmin-web-interface\">7. Access the phpMyAdmin 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-domain.com\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>Enter the <strong>MySQL database root user <\/strong>and <strong>password <\/strong>to log in to phpMyAdmin.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"544\" src=\"https:\/\/www.how2shout.com\/linux\/wp-content\/uploads\/2022\/03\/Login-phpMyAdmin.png\" alt=\"Login phpMyAdmin on ubuntu 22.04 server\" class=\"wp-image-12007\" title=\"Login phpMyAdmin\"\/><\/figure>\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\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png\" alt=\"Install phpMyAdmin on Ubuntu 22.04 Jammy using Apache\" class=\"wp-image-12006\" title=\"Install phpMyAdmin on Ubuntu 22.04 Jammy using Apache\"\/><\/figure>\n\n\n\n<p><strong>Note<\/strong>: If you get this notification at the footer<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">,\u00a0<em>the phpMyAdmin configuration storage is not completely configured; some extended features have been deactivated. Find out why. Alternatively,<\/em><\/span><em> go to the &#8216;Operations&#8217; tab of any database to set it up there.<\/em><\/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\/2022\/03\/Create-Storage-space.png\" alt=\"Create Storage space\" class=\"wp-image-12005\" title=\"Create Storage space\"\/><\/figure>\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 create automatically <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\/2022\/03\/Create-Storage-space.png\" alt=\"Create Storage space phpmyadmin ubuntu 22.04\" class=\"wp-image-12005\" title=\"Create Storage space\"\/><\/figure>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>In this way, we can swiftly install the phpMyAdmin on Ubuntu 24.04 or 22.04 LTS Jammy to manage our MySQL or MariaDB database with the help of a web-based graphical user interface.\u00a0 Because of its security, extensive functionality, and comfortable operation, PhpMyAdmin is considered the standard for administering MySQL and MariaDB databases. It is included in web hosting offers at many Internet Service Providers (ISPs) and is usually part of the basic configuration of Dedicated and Linux Virtual Servers (VPS). The most common tasks include regularly creating a backup, transferring databases to other servers, and troubleshooting technical failures.<\/p>\n\n\n\n<p>For more, you can visit the <strong><a href=\"https:\/\/www.phpmyadmin.net\/docs\/\" target=\"_blank\" rel=\"noreferrer noopener\">official documentation<\/a><\/strong>.<\/p>\n\n\n\n<p><strong>Other Articles:<\/strong><\/p>\n\n\n\n<p><strong>\u2022<\/strong> <a class=\"LinkSuggestion__Link-sc-1gewdgc-4 iyHtHS\" 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><br> <strong>\u2022<\/strong> <a class=\"LinkSuggestion__Link-sc-1gewdgc-4 iyHtHS\" href=\"https:\/\/www.how2shout.com\/linux\/how-to-install-phpmyadmin-on-debian-11-bullseye-apache\/\" target=\"_blank\" rel=\"noopener\">How to Install phpMyAdmin on Debian 11 Bullseye (Apache)<\/a><br> <strong>\u2022<\/strong> <a title=\"Install Siege Benchmarking Tool on Ubuntu 22.04\" href=\"https:\/\/www.how2shout.com\/linux\/install-siege-benchmarking-tool-on-ubuntu-22-04\/\" target=\"_blank\" rel=\"noopener\">Install the Siege Benchmarking Tool on Ubuntu 24.04 or 22.04<\/a><br> <strong>\u2022<\/strong> <a title=\"How to Install PowerShell on Ubuntu 22.04 LTS\" href=\"https:\/\/www.how2shout.com\/linux\/how-to-install-powershell-on-ubuntu-22-04-lts\/\" target=\"_blank\" rel=\"noopener\">How to Install PowerShell on Ubuntu 24.04 or 22.04 LTS<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tutorial to learn the steps for installing phpMyAdmin on Ubuntu 24.04 Noble or 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL via web browser and graphical user interface. phpMyAdmin is a popular open-source software for managing databases that is available on almost all web hosting services. However, if you manage [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":12006,"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":[3],"tags":[2373,30,3172],"class_list":{"0":"post-11998","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-ubuntu","8":"tag-phpmyadmin","9":"tag-ubuntu-20-04","10":"tag-ubuntu-22-04"},"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 with Apache on Ubuntu 24.04 or 22.04 LTS<\/title>\n<meta name=\"description\" content=\"Tutorial for installing phpMyAdmin on Ubuntu 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL\" \/>\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-with-apache-on-ubuntu-22-04-lts\/\" \/>\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 with Apache on Ubuntu 24.04 or 22.04 LTS\" \/>\n<meta property=\"og:description\" content=\"Tutorial for installing phpMyAdmin on Ubuntu 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/\" \/>\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=\"2024-09-16T06:21:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-16T06:22:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.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=\"37 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-with-apache-on-ubuntu-22-04-lts\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/\"},\"author\":{\"name\":\"Heyan Maurya\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\"},\"headline\":\"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS\",\"datePublished\":\"2024-09-16T06:21:39+00:00\",\"dateModified\":\"2024-09-16T06:22:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/\"},\"wordCount\":1106,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png\",\"keywords\":[\"phpmyadmin\",\"ubuntu 20.04\",\"Ubuntu 22.04\"],\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#respond\"]}],\"copyrightYear\":\"2024\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/\",\"name\":\"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png\",\"datePublished\":\"2024-09-16T06:21:39+00:00\",\"dateModified\":\"2024-09-16T06:22:12+00:00\",\"description\":\"Tutorial for installing phpMyAdmin on Ubuntu 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png\",\"width\":1366,\"height\":592,\"caption\":\"Install phpMyAdmin on Ubuntu 22.04 Jammy using Apache\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linux.how2shout.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS\"}]},{\"@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 with Apache on Ubuntu 24.04 or 22.04 LTS","description":"Tutorial for installing phpMyAdmin on Ubuntu 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL","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-with-apache-on-ubuntu-22-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS","og_description":"Tutorial for installing phpMyAdmin on Ubuntu 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL","og_url":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/","og_site_name":"LinuxShout","article_publisher":"https:\/\/www.facebook.com\/how2shout","article_published_time":"2024-09-16T06:21:39+00:00","article_modified_time":"2024-09-16T06:22:12+00:00","og_image":[{"width":1366,"height":592,"url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.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":"37 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#article","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/"},"author":{"name":"Heyan Maurya","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72"},"headline":"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS","datePublished":"2024-09-16T06:21:39+00:00","dateModified":"2024-09-16T06:22:12+00:00","mainEntityOfPage":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/"},"wordCount":1106,"commentCount":11,"publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"image":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png","keywords":["phpmyadmin","ubuntu 20.04","Ubuntu 22.04"],"articleSection":["Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#respond"]}],"copyrightYear":"2024","copyrightHolder":{"@id":"https:\/\/linux.how2shout.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/","url":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/","name":"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#primaryimage"},"image":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png","datePublished":"2024-09-16T06:21:39+00:00","dateModified":"2024-09-16T06:22:12+00:00","description":"Tutorial for installing phpMyAdmin on Ubuntu 22.04 LTS Jammy JellyFish using Apache Web server for managing MariaDB or MySQL","breadcrumb":{"@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#primaryimage","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2022\/03\/Install-phpMyAdmin-on-Ubuntu-22.04-Jammy-using-Apache.png","width":1366,"height":592,"caption":"Install phpMyAdmin on Ubuntu 22.04 Jammy using Apache"},{"@type":"BreadcrumbList","@id":"https:\/\/linux.how2shout.com\/how-to-install-phpmyadmin-with-apache-on-ubuntu-22-04-lts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linux.how2shout.com\/"},{"@type":"ListItem","position":2,"name":"How to Install phpMyAdmin with Apache on Ubuntu 24.04 or 22.04 LTS"}]},{"@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\/11998","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=11998"}],"version-history":[{"count":10,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/11998\/revisions"}],"predecessor-version":[{"id":24622,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/11998\/revisions\/24622"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media\/12006"}],"wp:attachment":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media?parent=11998"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/categories?post=11998"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/tags?post=11998"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}