{"id":9179,"date":"2021-06-19T09:48:44","date_gmt":"2021-06-19T06:48:44","guid":{"rendered":"https:\/\/kifarunix.com\/?p=9179"},"modified":"2024-03-18T20:54:45","modified_gmt":"2024-03-18T17:54:45","slug":"install-phpmyadmin-on-rocky-linux-8","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-phpmyadmin-on-rocky-linux-8\/","title":{"rendered":"Install phpMyAdmin on Rocky Linux 8"},"content":{"rendered":"\n<p>Follow through this tutorial to learn how to install phpMyAdmin on Rocky Linux 8. <a rel=\"noreferrer noopener\" href=\"https:\/\/www.phpmyadmin.net\/\" target=\"_blank\">phpMyAdmin<\/a>&nbsp;is a free and opensource application written in PHP that facilitates the administration and management of MySQL and MariaDB over the Web.<\/p>\n\n\n\n<p>phpMyAdmin allows administrators to;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>browse through databases and tables;<\/li>\n\n\n\n<li>create, copy, rename, alter and drop databases;<\/li>\n\n\n\n<li>create, copy, rename, alter and drop tables;<\/li>\n\n\n\n<li>perform table maintenance;<\/li>\n\n\n\n<li>add, edit and drop fields;<\/li>\n\n\n\n<li>execute any SQL-statement, even multiple queries;<\/li>\n\n\n\n<li>create, alter and drop indexes;<\/li>\n\n\n\n<li>load text files into tables;<\/li>\n\n\n\n<li>create and read dumps of tables or databases;<\/li>\n\n\n\n<li>export data to SQL, CSV, XML, Word, Excel, PDF and LaTeX formats;<\/li>\n\n\n\n<li>administer multiple servers;<\/li>\n\n\n\n<li>manage MySQL users and privileges;<\/li>\n\n\n\n<li>check server settings and runtime information with configuration hints;<\/li>\n\n\n\n<li>check referential integrity in MyISAM tables;<\/li>\n\n\n\n<li>create complex queries using Query-by-example (QBE), automatically<br>connecting required tables;<\/li>\n\n\n\n<li>create PDF graphics of database layout;<\/li>\n\n\n\n<li>search globally in a database or a subset of it;<\/li>\n\n\n\n<li>transform stored data into any format using a set of predefined<br>functions, such as displaying BLOB-data as image or download-link;<\/li>\n\n\n\n<li>manage InnoDB tables and foreign keys;<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Installing phpMyAdmin on Rocky Linux 8<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p class=\"has-drop-cap\"><p class=\"has-drop-cap dropcapp2\" style=\"margin-top:-3px\"><strong>Note<\/strong>: In this guide, we are going to install&nbsp;<strong>phpMyAdmin v5.1.1,<\/strong>&nbsp;which the current stable release version as of this writing. This version supports&nbsp;<strong>PHP 7.1.3 and MySQL 5.5 or newer<\/strong>. Note this while installing your LAMP\/LEMP stack. You can check more requirements including the required PHP modules&nbsp;<a href=\"https:\/\/docs.phpmyadmin.net\/en\/latest\/require.html\" target=\"_blank\" rel=\"noreferrer noopener\">on PHP requirements page<\/a>.<\/p><\/p>\n\n\n\n<p>Update your system packages.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf update<\/code><\/pre>\n\n\n\n<p>Install LEMP\/LAMP Stack on Rocky Linux 8 by following the links provided below;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-lamp-stack-on-rocky-linux-8\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install LAMP Stack on Rocky Linux 8<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-lemp-stack-on-rocky-linux-8\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install LEMP Stack on Rocky Linux 8<\/a><\/p>\n\n\n\n<p>In this guide,<strong>&nbsp;PHP 7.4, MariaDB 10.5<\/strong>&nbsp;and&nbsp;<strong>Nginx<\/strong>&nbsp;are used.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>php -v<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>PHP 7.4.20 (cli) (built: Jun  1 2021 15:41:56) ( NTS )\nCopyright (c) The PHP Group\nZend Engine v3.4.0, Copyright (c) Zend Technologies\n    with Zend OPcache v7.4.20, Copyright (c), by Zend Technologies<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql -V<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql  Ver 15.1 Distrib 10.5.10-MariaDB, for Linux (x86_64) using readline 5.1<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl status nginx<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\u25cf nginx.service - The nginx HTTP and reverse proxy server\n   Loaded: loaded (\/usr\/lib\/systemd\/system\/nginx.service; disabled; vendor preset: disabled)\n  Drop-In: \/usr\/lib\/systemd\/system\/nginx.service.d\n           \u2514\u2500php-fpm.conf\n   Active: active (running) since Sat 2021-06-19 00:13:03 EAT; 8s ago\n  Process: 51988 ExecStart=\/usr\/sbin\/nginx (code=exited, status=0\/SUCCESS)\n  Process: 51987 ExecStartPre=\/usr\/sbin\/nginx -t (code=exited, status=0\/SUCCESS)\n  Process: 51985 ExecStartPre=\/usr\/bin\/rm -f \/run\/nginx.pid (code=exited, status=0\/SUCCESS)\n Main PID: 51990 (nginx)\n    Tasks: 2 (limit: 11391)\n   Memory: 4.0M\n   CGroup: \/system.slice\/nginx.service\n           \u251c\u250051990 nginx: master process \/usr\/sbin\/nginx\n           \u2514\u250051991 nginx: worker process\n\nJun 19 00:13:03 localhost.localdomain systemd[1]: Starting The nginx HTTP and reverse proxy server...\nJun 19 00:13:03 localhost.localdomain nginx[51987]: nginx: the configuration file \/etc\/nginx\/nginx.conf syntax is ok\nJun 19 00:13:03 localhost.localdomain nginx[51987]: nginx: configuration file \/etc\/nginx\/nginx.conf test is successful\nJun 19 00:13:03 localhost.localdomain systemd[1]: nginx.service: Failed to parse PID from file \/run\/nginx.pid: Invalid argument\nJun 19 00:13:03 localhost.localdomain systemd[1]: Started The nginx HTTP and reverse proxy server.\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Install Required PHP Modules on Rocky Linux 8<\/h3>\n\n\n\n<p>If not already installed, run the command below to install other required PHP extensions for phpMyAdmin.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf install php-{spl,hash,ctype,json,mbstring,zip,gd,curl,xml,common}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Install phpMyAdmin<\/h3>\n\n\n\n<p>Once you have setup your LAMP\/LEMP stack, databases, your WordPress or whatever your web application is, proceed to install phpMyAdmin.<\/p>\n\n\n\n<p>As of this writing, phpMyAdmin is not available on the default Rocky Linux 8 repos.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf whatprovides phpmyadmin<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>Error: No Matches found<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Download phpMyAdmin<\/h4>\n\n\n\n<p>Therefore, to install phpMyAdmin, download the latest source tarball from\u00a0<a href=\"https:\/\/www.phpmyadmin.net\/downloads\/\" target=\"_blank\" rel=\"noreferrer noopener\">phpMyAdmin downloads page<\/a>.<\/p>\n\n\n\n<p>You can download phpMyAdmin kits for English or All languages. This guide is using phpMyAdmin English version only. Make the download easy by using wget command.<\/p>\n\n\n\n<p>To download the latest stable release version, check the versions on the downloads page and simply create a variable to hold the latest version number.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>VER=5.1.1<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>wget https:\/\/files.phpmyadmin.net\/phpMyAdmin\/<strong>$VER<\/strong>\/phpMyAdmin-<strong>$VER<\/strong>-english.tar.gz<\/code><\/pre>\n\n\n\n<p>Well, you can as well download phpMyAdmin that supports all the languages to enable you run a version of phpMyAdmin with language of your preference;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>https:\/\/files.phpmyadmin.net\/phpMyAdmin\/<strong>$VER<\/strong>\/phpMyAdmin-<strong>$VER<\/strong>-all-languages.tar.gz<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Verify phpMyAdmin Tarball Integrity<\/h4>\n\n\n\n<p>To ensure that you are installing a genuine version of phpMyAdmin, you need to verify the integrity of the downloaded archive.<\/p>\n\n\n\n<p>Download and import phpMyAdmin PGP fingerprint key from the key servers.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>gpg --keyserver hkp:\/\/pgp.mit.edu --recv-keys 3D06A59ECE730EB71B511C17CE752F178259BD92<\/code><\/pre>\n\n\n\n<p>Download the PGP signature for your specific version of phpMyAdmin from&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.phpmyadmin.net\/downloads\/\" target=\"_blank\">phpMyAdmin downloads page<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>wget https:\/\/files.phpmyadmin.net\/phpMyAdmin\/$VER\/phpMyAdmin-$VER-english.tar.gz.asc<\/code><\/pre>\n\n\n\n<p>Run the signature verification.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>gpg --verify phpMyAdmin-$VER-english.tar.gz.asc<\/code><\/pre>\n\n\n\n<p>Keyword in the output;&nbsp;<strong>Good signature<\/strong>.<\/p>\n\n\n\n<pre class=\"scroll-box\"><code>\ngpg: assuming signed data in 'phpMyAdmin-5.1.1-english.tar.gz'\ngpg: Signature made Fri 04 Jun 2021 07:26:25 AM EAT\ngpg:                using RSA key 3D06A59ECE730EB71B511C17CE752F178259BD92\ngpg: Good signature from \"Isaac Bennetch <bennetch@gmail.com>\" [unknown]\ngpg:                 aka \"Isaac Bennetch <isaac@bennetch.org>\" [unknown]\ngpg: WARNING: This key is not certified with a trusted signature!\ngpg:          There is no indication that the signature belongs to the owner.\nPrimary key fingerprint: 3D06 A59E CE73 0EB7 1B51  1C17 CE75 2F17 8259 BD92\n<\/code><\/pre>\n\n\n\n<p>You can as well verify the checksum of the downloaded archive. Download the SHA256 hash for&nbsp;<strong><code>phpMyAdmin-$VER-english.tar.gz<\/code><\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>wget https:\/\/files.phpmyadmin.net\/phpMyAdmin\/<strong>$VER<\/strong>\/phpMyAdmin-$VER-english.tar.gz.sha256<\/code><\/pre>\n\n\n\n<p>Calculate the SHA256 hash for downloaded file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sha256sum phpMyAdmin-$VER-english.tar.gz<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>f01e0095661dbc45f6f136e35efe55823f8a9715a25afce71fa94f3bb93bcc29  phpMyAdmin-5.1.1-english.tar.gz<\/code><\/pre>\n\n\n\n<p>Compare the calculated hash with the downloaded hash.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cat phpMyAdmin-$VER-english.tar.gz.sha256<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>f01e0095661dbc45f6f136e35efe55823f8a9715a25afce71fa94f3bb93bcc29  phpMyAdmin-5.1.1-english.tar.gz<\/code><\/pre>\n\n\n\n<p>If all is well, you are good to proceed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install phpMyAdmin<\/h3>\n\n\n\n<p>Since phpMyAdmin comes as a standalone application ready for installation, simply extract it to your Web root directory. In this guide, we are using Nginx as the web server.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Extract phpMyAdmin Tarball<\/h4>\n\n\n\n<p>Create your phpMyAdmin web root directory. <\/p>\n\n\n\n<p>Note that we are using Nginx web server in this setup. Replace the document root folder as per your web server type.<\/p>\n\n\n\n<p>You can choose to use a different directory instead of the one created below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mkdir \/usr\/share\/nginx\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>Next, extract the phpMyAdmin to the directory created above.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>tar xzf phpMyAdmin-$VER-english.tar.gz -C \/usr\/share\/nginx\/phpmyadmin --strip-components=1<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Create phpMyAdmin Nginx Server Block<\/h4>\n\n\n\n<p>You can now create a basic Nginx Server block for phpMyAdmin as shown below. Be sure to replace the directories accordingly.<\/p>\n\n\n\n<pre class=\"scroll-box\"><code>\ncat > \/etc\/nginx\/conf.d\/phpmyadmin.conf << 'EOL'\nserver {\n    listen       80;\n    server_name  pma.kifarunix-demo.com;\n    root         \/usr\/share\/nginx\/phpmyadmin;\n    \n    access_log \/var\/log\/nginx\/pma.kifarunix-demo.com_access.log;\n    error_log \/var\/log\/nginx\/pma.kifarunix-demo.com_error.log;\n\n    index   index.php;\n\n    location \/ {\n        try_files    $uri $uri\/ \/index.php?$args;\n    }\n    location ~ \\.php$ {\n         try_files $uri =404;\n         fastcgi_intercept_errors on;\n         include        fastcgi_params;\n         fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;\n         fastcgi_pass unix:\/run\/php-fpm\/www.sock;\n     }\n}\nEOL\n<\/code><\/pre>\n\n\n\n<p>Save the configuration file and run Nginx syntax verification.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>nginx -t<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>nginx: the configuration file \/etc\/nginx\/nginx.conf syntax is ok\nnginx: configuration file \/etc\/nginx\/nginx.conf test is successful<\/code><\/pre>\n\n\n\n<p>Restart Nginx<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configure phpMyAdmin<\/h3>\n\n\n\n<p>Rename the sample phpMyAdmin configuration file;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cp \/usr\/share\/nginx\/phpmyadmin\/config{.sample,}.inc.php<\/code><\/pre>\n\n\n\n<p>Create a blowfish secret required for cookie based authentication to encrypt password in cookie. You can generate the&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/phpsolved.com\/phpmyadmin-blowfish-secret-generator\/?g=[insert_php]echo%20$code;[\/insert_php]\" target=\"_blank\">blowfish secret online<\/a>&nbsp;and paste as follows;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vi \/usr\/share\/nginx\/phpmyadmin\/config.inc.php<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>\/** $cfg['blowfish_secret'] = ''; \/* YOU MUST FILL IN THIS FOR COOKIE AUTH! *\/\n<strong>$cfg['blowfish_secret'] = '{yqiCcF\/-1G8WE9LE,dD{3mQDBnv[]bN';<\/strong><\/code><\/pre>\n\n\n\n<p>Restart Nginx and PHP-FPM for the changes to take effect.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart nginx php-fpm<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Accessing phpMyAdmin<\/h3>\n\n\n\n<p>You can now access your phpMyAdmin from the browser by navigating to browser and using the the address,&nbsp;<code><strong>http:\/\/server-host-name<\/strong><\/code>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1184\" height=\"509\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-rocky-linux-8.png\" alt=\"Install phpMyAdmin on Rocky Linux 8\" class=\"wp-image-9201\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-rocky-linux-8.png?v=1624084585 1184w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-rocky-linux-8-768x330.png?v=1624084585 768w\" sizes=\"(max-width: 1184px) 100vw, 1184px\" \/><\/figure>\n\n\n\n<p>Login as database administrative user.<\/p>\n\n\n\n<p>If you get the error:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysqli::real_connect(): (HY000\/1698): Access denied for user 'root'@'localhost'<\/code><\/pre>\n\n\n\n<p>It is because, you havent enabled MySQL Native password authentication. See how to on the link below;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-mariadb-10-x-on-rocky-linux-8\/#mysql-native-password-auth\" target=\"_blank\" rel=\"noreferrer noopener\">Set Native Password Authentication Method as Default on MariaDB\/MySQL<\/a><\/p>\n\n\n\n<p>Upon successful authentication, you will land on the phpMyAdmin dashboard.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1901\" height=\"954\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-dashboard.png\" alt=\"\" class=\"wp-image-9200\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-dashboard.png?v=1624084495 1901w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-dashboard-768x385.png?v=1624084495 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/06\/phpmyadmin-dashboard-1536x771.png?v=1624084495 1536w\" sizes=\"(max-width: 1901px) 100vw, 1901px\" \/><\/figure>\n\n\n\n<p>There you go. You have successfully setup phpMyAdmin. You can now proceed to manage your databases using phpMyAdmin.<\/p>\n\n\n\n<p>That marks the end of our guide on how to install phpMyAdmin.<\/p>\n\n\n\n<p>Read more on&nbsp;<a href=\"https:\/\/docs.phpmyadmin.net\/en\/latest\/user.html\" target=\"_blank\" rel=\"noreferrer noopener\">phpMyAdmin user guide<\/a>.<\/p>\n\n\n\n<p>Other Tutorials<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-phpmyadmin-on-ubuntu-20-04\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install phpMyAdmin on Ubuntu 20.04<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-latest-phpmyadmin-on-centos-8\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install latest phpMyAdmin on CentOS 8<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-phpmyadmin-with-nginx-on-debian-10-buster\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install phpMyAdmin with Nginx on Debian 10 Buster<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Follow through this tutorial to learn how to install phpMyAdmin on Rocky Linux 8. phpMyAdmin&nbsp;is a free and opensource application written in PHP that facilitates<\/p>\n","protected":false},"author":1,"featured_media":9202,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[299,121,201,235,342,938],"tags":[3711,281,3713,3587,3712],"class_list":["post-9179","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database","category-howtos","category-lamp-stack","category-lemp-stack","category-php","category-phpmyadmin","tag-install-phpmyadmin-rocky-linux","tag-phpmyadmin","tag-phpmyadmin-rocky-linux","tag-rocky-linux-8","tag-rocky-linux-8-phpmyadmin","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","resize-featured-image"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/9179"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=9179"}],"version-history":[{"count":8,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/9179\/revisions"}],"predecessor-version":[{"id":21783,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/9179\/revisions\/21783"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/9202"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=9179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=9179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=9179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}