{"id":7628,"date":"2024-05-31T16:09:26","date_gmt":"2024-05-31T23:09:26","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=7628"},"modified":"2024-05-31T16:09:26","modified_gmt":"2024-05-31T23:09:26","slug":"install-cpanel-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-cpanel-linux\/","title":{"rendered":"Installing cPanel | Linux Server Management Made Easy"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2024\/05\/Technicians-interacting-with-a-terminal-displaying-install-cPanel-linux-in-a-brightly-colored-datacenter-filled-with-server-racks-300x300.jpg\" alt=\"Technicians interacting with a terminal displaying install cPanel linux in a brightly colored datacenter filled with server racks\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Installing cPanel on Linux servers at <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/ioflood.com\/\">IOFLOOD<\/a> is a ask we commonly perform for our <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/ioflood.com\/bare-metal-cloud-server.php\">bare metal cloud server<\/a> customer. CPanel is a popular web hosting control panel that offers a user-friendly interface for managing websites, domains, databases, and more. We have filled this helpful article with our tips and processes from years of experience, to empower our customers and fellow developers with the knowledge needed to manage their web hosting environments with cPanel.<\/p>\n<p><strong>In this tutorial, we will guide you on how to install the <code>cPanel<\/code> on your Linux system.<\/strong> We will show you methods for both APT and YUM-based distributions, delve into compiling <code>cPanel<\/code> from source, installing a specific version, and finally, how to use the <code>cPanel<\/code> command and ensure it&#8217;s installed correctly.<\/p>\n<p>So, let&#8217;s dive in and begin installing <code>cPanel<\/code> on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install cPanel on Linux?<\/h2>\n<blockquote><p>\n  You can install cPanel on your Linux server by first downloading the installation script using the command <code>wget -N http:\/\/httpupdate.cPanel.net\/latest<\/code>. Once the script is downloaded, you can run it as the root user with the command <code>sh latest<\/code>.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\">wget -N http:\/\/httpupdate.cPanel.net\/latest\nsh latest\n\n# Output:\n# 'Installing cPanel &amp; WHM 11.92 LTS (Long Term Support)'\n# 'Installation process completed'\n<\/code><\/pre>\n<p>This is the most straightforward way to install cPanel on Linux. However, the process can vary depending on your specific Linux distribution and the configuration of your server. For a more detailed guide, including how to handle potential issues and alternative installation methods, keep reading.<\/p>\n<h2>Getting Started with cPanel on Linux<\/h2>\n<p><code>cPanel<\/code> is a web-based hosting control panel provided by many hosting providers to website owners, allowing them to manage their websites from a web-based interface. This program gives users a graphical interface from which they can control their portion of the Unix server. It&#8217;s a convenient tool for non-technical people who want to manage a server.<\/p>\n<p>Now, let&#8217;s get started with the installation process. We will guide you through the installation of <code>cPanel<\/code> on your Linux server using two popular package managers: <code>apt<\/code> and <code>yum<\/code>.<\/p>\n<h3>Installing cPanel with APT<\/h3>\n<p>If you are using a Debian-based distribution like Ubuntu, you will likely be using the <code>apt<\/code> package manager. Here&#8217;s how to install <code>cPanel<\/code> with <code>apt<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install cpanel\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# cPanel is already the newest version.\n<\/code><\/pre>\n<p>In this code block, we first update our local package index to ensure we have the most up-to-date information from the repositories we have configured. Then, we install <code>cPanel<\/code> using <code>apt-get install<\/code>.<\/p>\n<h3>Installing cPanel with YUM<\/h3>\n<p>If you are using a Red Hat-based distribution like CentOS, you will likely be using the <code>yum<\/code> package manager. Here&#8217;s how to install <code>cPanel<\/code> with <code>yum<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install cpanel\n\n# Output:\n# Loaded plugins: fastestmirror\n# Loading mirror speeds from cached hostfile\n# cPanel is already the newest version.\n<\/code><\/pre>\n<p>In this code block, we first update our local package index to ensure we have the most up-to-date information from the repositories we have configured. Then, we install <code>cPanel<\/code> using <code>yum install<\/code>.<\/p>\n<p>By following these steps, you should have <code>cPanel<\/code> installed on your Linux server. In the next section, we will discuss more advanced installation methods.<\/p>\n<h2>Advanced cPanel Installation Methods<\/h2>\n<h3>Installing cPanel from Source Code<\/h3>\n<p>Sometimes, you may need to install <code>cPanel<\/code> from its source code. This could be due to the unavailability of a precompiled package, the need for a specific version, or the desire to customize the installation.<\/p>\n<p>Here&#8217;s how you can install <code>cPanel<\/code> from source:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget http:\/\/layer1.cpanel.net\/latest\nsh latest\n\n# Output:\n# 'Downloading latest cPanel installer...'\n# 'Installation process completed'\n<\/code><\/pre>\n<p>This command downloads the installation script directly from the cPanel servers and then runs it.<\/p>\n<h3>Installing Different cPanel Versions<\/h3>\n<p>There might be scenarios where you need to install a specific version of <code>cPanel<\/code>, either from source or using a package manager.<\/p>\n<h4>Installing Specific cPanel Version from Source<\/h4>\n<p>To install a specific version of <code>cPanel<\/code> from source, you would need to find the URL for the version you want to install. Once you have that, the process is similar to installing the latest version from source.<\/p>\n<h4>Installing Specific cPanel Version with APT and YUM<\/h4>\n<p>To install a specific version of <code>cPanel<\/code> using <code>apt<\/code> or <code>yum<\/code>, you can specify the version number in the install command. For instance:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install cpanel=11.92\nsudo yum install cpanel-11.92\n\n# Output:\n# 'cPanel version 11.92 installed successfully'\n<\/code><\/pre>\n<h3>Why Choose One Version Over Another?<\/h3>\n<p>Different versions of <code>cPanel<\/code> may have different features, performance improvements, or bug fixes. Here&#8217;s a comparison of some recent versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Features<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>11.94<\/td>\n<td>Improved DNSSEC support, MySQL 8 compatibility<\/td>\n<\/tr>\n<tr>\n<td>11.92<\/td>\n<td>LTS version, improved AutoSSL<\/td>\n<\/tr>\n<tr>\n<td>11.90<\/td>\n<td>New user interface, increased security<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using and Verifying cPanel<\/h2>\n<p>Once you&#8217;ve installed <code>cPanel<\/code>, you can verify its installation by running the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">\/usr\/local\/cpanel\/cpanel -V\n\n# Output:\n# '11.92 (build 11)'\n<\/code><\/pre>\n<p>This command will output the installed <code>cPanel<\/code> version, confirming that the installation was successful. To use <code>cPanel<\/code>, you can access it via your web browser by navigating to <code>http:\/\/your_server_IP:2082<\/code> or <code>https:\/\/your_server_IP:2083<\/code> for a secure connection.<\/p>\n<h2>Alternative Server Management Tools<\/h2>\n<p>While <code>cPanel<\/code> is a popular choice for server management, there are other tools that you might find suit your needs better. Let&#8217;s explore two such alternatives: <code>Plesk<\/code> and <code>Webmin<\/code>.<\/p>\n<h3>Plesk: A Windows-friendly Alternative<\/h3>\n<p><code>Plesk<\/code> is a control panel available for both Windows and Linux servers. It offers a user-friendly interface and is particularly popular among Windows users.<\/p>\n<p>Here&#8217;s how you can install <code>Plesk<\/code> on Linux:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/autoinstall.plesk.com\/plesk-installer\nchmod +x plesk-installer\n.\/plesk-installer\n\n# Output:\n# 'Downloading Plesk installer...'\n# 'Installation process completed'\n<\/code><\/pre>\n<p>This command downloads the <code>Plesk<\/code> installer, makes it executable, and then runs it.<\/p>\n<h3>Webmin: A Powerful, Open-Source Alternative<\/h3>\n<p><code>Webmin<\/code> is an open-source control panel for system administration on Unix-like systems. It&#8217;s more powerful but also more complex than <code>cPanel<\/code>.<\/p>\n<p>Here&#8217;s how you can install <code>Webmin<\/code> on Linux:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python\nwget http:\/\/prdownloads.sourceforge.net\/webadmin\/webmin_1.941_all.deb\nsudo dpkg --install webmin_1.941_all.deb\n\n# Output:\n# 'Downloading Webmin installer...'\n# 'Installation process completed'\n<\/code><\/pre>\n<p>This command installs the necessary dependencies, downloads the <code>Webmin<\/code> installer, and then runs it.<\/p>\n<h3>Manual Server Management<\/h3>\n<p>While control panels like <code>cPanel<\/code>, <code>Plesk<\/code>, and <code>Webmin<\/code> make server management easier, they are not necessary. You can manage your server manually using command-line tools. This approach gives you the most control but also requires the most technical knowledge.<\/p>\n<p>Here&#8217;s an example of how you might manage a web server manually:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install apache2\nsudo systemctl start apache2\n\n# Output:\n# 'Apache server started'\n<\/code><\/pre>\n<p>This command installs the <code>Apache<\/code> web server and then starts it.<\/p>\n<h3>Making the Right Choice<\/h3>\n<p>When choosing a server management tool, consider your needs and capabilities. If you&#8217;re comfortable with the command line, manual server management might be the best choice. If you prefer a graphical interface, <code>cPanel<\/code>, <code>Plesk<\/code>, or <code>Webmin<\/code> could be better. Here&#8217;s a comparison of the four approaches we discussed:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>cPanel<\/td>\n<td>Easy to use, widely supported<\/td>\n<td>Not free, limited customization<\/td>\n<\/tr>\n<tr>\n<td>Plesk<\/td>\n<td>Easy to use, supports Windows servers<\/td>\n<td>Not free, less powerful than Webmin<\/td>\n<\/tr>\n<tr>\n<td>Webmin<\/td>\n<td>Powerful, open-source<\/td>\n<td>Complex, steep learning curve<\/td>\n<\/tr>\n<tr>\n<td>Manual<\/td>\n<td>Most control, no additional cost<\/td>\n<td>Requires technical knowledge, time-consuming<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Troubleshooting Installations: cPanel<\/h2>\n<p>Even with the best preparations, you might encounter issues when installing <code>cPanel<\/code> on your Linux server. Here, we will discuss common problems and their solutions.<\/p>\n<h3>Issue 1: Installation Fails Due to Missing Dependencies<\/h3>\n<p>Sometimes, the <code>cPanel<\/code> installation might fail due to missing dependencies. In this case, the error message will usually tell you which packages are missing. You can install them using your package manager.<\/p>\n<p>Here&#8217;s an example of how you might resolve a missing dependency issue:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install perl\nwget http:\/\/layer1.cpanel.net\/latest\nsh latest\n\n# Output:\n# 'Downloading latest cPanel installer...'\n# 'Installation process completed'\n<\/code><\/pre>\n<p>In this example, the <code>perl<\/code> package was missing. We installed it using <code>apt-get install<\/code>, and then the <code>cPanel<\/code> installation succeeded.<\/p>\n<h3>Issue 2: Installation Fails Due to Insufficient Disk Space<\/h3>\n<p><code>cPanel<\/code> requires at least 20GB of free disk space. If the installation fails due to insufficient disk space, you will need to free up some space or add more storage to your server.<\/p>\n<p>Here&#8217;s an example of how you might check your disk space and clean up unnecessary files:<\/p>\n<pre><code class=\"language-bash line-numbers\">df -h\nsudo apt-get autoremove\nsudo apt-get clean\n\n# Output:\n# 'Filesystem      Size  Used Avail Use% Mounted on'\n# '\/dev\/vda1        25G  5.0G   20G  21% \/'\n<\/code><\/pre>\n<p>In this example, we first checked our disk space using <code>df -h<\/code>. Then, we removed unnecessary packages and cleaned up the package cache to free up space.<\/p>\n<h3>Issue 3: cPanel Service Fails to Start<\/h3>\n<p>After installing <code>cPanel<\/code>, the service might fail to start. This could be due to a variety of reasons, such as incorrect permissions or a misconfigured firewall.<\/p>\n<p>Here&#8217;s an example of how you might check the <code>cPanel<\/code> service status and restart it:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo \/usr\/local\/cpanel\/cpanel -V\nsudo systemctl restart cpanel\n\n# Output:\n# 'cPanel &amp; WHM 11.92 (build 11)'\n# 'Restarting cPanel services...'\n<\/code><\/pre>\n<p>In this example, we first checked the <code>cPanel<\/code> version to verify that it&#8217;s installed correctly. Then, we restarted the <code>cPanel<\/code> service.<\/p>\n<p>Remember, troubleshooting is a systematic process. If you encounter an issue, start by reading the error message carefully. Then, research the issue, test potential solutions, and repeat the process until the issue is resolved.<\/p>\n<h2>What is cPanel Used For?<\/h2>\n<p><code>cPanel<\/code> is a web-based hosting control panel that provides a graphical interface and automation tools designed to simplify the process of hosting a website. It&#8217;s a Linux-based tool that has become one of the most popular web hosting control panels in the industry.<\/p>\n<p>So, why do web hosts, administrators, and users love <code>cPanel<\/code> so much?<\/p>\n<h3>The Role of cPanel in Server Management<\/h3>\n<p>Managing a server can be a daunting task, especially for those without a strong technical background. <code>cPanel<\/code> bridges the gap, providing an easy-to-use interface that allows you to manage your server without needing to understand complex Linux commands.<\/p>\n<p>With <code>cPanel<\/code>, you can manage your website files, databases, email accounts, security settings, and more, all from one place. It&#8217;s like the dashboard of your car, providing all the controls you need at your fingertips.<\/p>\n<h3>The Benefits of Using cPanel<\/h3>\n<p>There are several reasons why <code>cPanel<\/code> has become the go-to choice for many when it comes to server management:<\/p>\n<ul>\n<li><strong>User-friendly:<\/strong> <code>cPanel<\/code> is designed with a focus on user-friendliness. Its graphical interface makes it easy to manage your server, even if you&#8217;re not technically inclined.<\/p>\n<\/li>\n<li>\n<p><strong>Feature-rich:<\/strong> <code>cPanel<\/code> comes packed with features. From file and database management to email and security settings, it covers all the bases of server management.<\/p>\n<\/li>\n<li>\n<p><strong>Extensible:<\/strong> With <code>cPanel<\/code>, you can install and manage additional software on your server with ease. Whether you need to install a CMS like WordPress or a custom application, <code>cPanel<\/code> makes the process straightforward.<\/p>\n<\/li>\n<li>\n<p><strong>Reliable:<\/strong> <code>cPanel<\/code> is a tried and tested software that&#8217;s been around for over two decades. It&#8217;s trusted by millions of users worldwide.<\/p>\n<\/li>\n<\/ul>\n<p>Here&#8217;s an example of how you can use <code>cPanel<\/code> to create a new database:<\/p>\n<pre><code class=\"language-bash line-numbers\">\/usr\/local\/cpanel\/bin\/uapi --user=username Mysql create_database name=new_database\n\n# Output:\n# 'Created new database \"new_database\"'\n<\/code><\/pre>\n<p>In this example, we used <code>cPanel<\/code>&#8216;s <code>uapi<\/code> command to create a new database. This is just a glimpse of what you can do with <code>cPanel<\/code>.<\/p>\n<p>In the next section, we&#8217;ll look at the future of server management and how <code>cPanel<\/code> fits into it.<\/p>\n<h2>Server Management and cPanel<\/h2>\n<p>As the digital world continues to evolve, server management becomes increasingly crucial. Whether it&#8217;s web hosting, IT infrastructure, or cloud services, effective server management is at the heart of these operations.<\/p>\n<h3>The Role of cPanel in Modern Server Management<\/h3>\n<p><code>cPanel<\/code> plays a significant role in this landscape. It simplifies server management, making it accessible to a wider range of users. As we move towards a more digital future, tools like <code>cPanel<\/code> will continue to be vital.<\/p>\n<h3>Expanding Your Knowledge: DNS Management, Email Server Setup, and Security<\/h3>\n<p>As you continue your journey in server management, there are other areas you might want to explore. DNS management, email server setup, and security considerations are all integral parts of managing a server.<\/p>\n<p>For example, you can use <code>cPanel<\/code> to manage DNS records for your websites:<\/p>\n<pre><code class=\"language-bash line-numbers\">\/usr\/local\/cpanel\/bin\/uapi --user=username DNS add_zone domain=example.com\n\n# Output:\n# 'Added DNS zone for \"example.com\"'\n<\/code><\/pre>\n<p>In this example, we added a DNS zone for <code>example.com<\/code> using <code>cPanel<\/code>&#8216;s <code>uapi<\/code> command.<\/p>\n<h3>Further Resources for Mastering cPanel and Server Management<\/h3>\n<p>To deepen your understanding of <code>cPanel<\/code> and server management, here are some resources you might find helpful:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/docs.cpanel.net\/\" target=\"_blank\" rel=\"noopener\">The Official cPanel Documentation<\/a>: A comprehensive resource covering all aspects of <code>cPanel<\/code>, from installation to advanced features.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.digitalocean.com\/community\/tutorials\" target=\"_blank\" rel=\"noopener\">DigitalOcean&#8217;s Community Tutorials<\/a>: A collection of tutorials on various topics, including server management and <code>cPanel<\/code>.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"http:\/\/www.tldp.org\/\" target=\"_blank\" rel=\"noopener\">The Linux Documentation Project<\/a>: An old but gold resource for all things Linux, including server management.<\/p>\n<\/li>\n<\/ol>\n<p>By leveraging these resources and continuously learning, you can become proficient in server management and make the most out of tools like <code>cPanel<\/code>.<\/p>\n<h2>Recap: cPanel Installation Guide<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the process of installing <code>cPanel<\/code> on a Linux server. <code>cPanel<\/code> is a robust tool that simplifies server management, making it accessible even to those without a strong technical background. Its user-friendly interface and feature-rich environment make it a popular choice among web hosts, administrators, and users alike.<\/p>\n<p>We began with the basics, guiding you through the process of installing <code>cPanel<\/code> on Linux using popular package managers like <code>apt<\/code> and <code>yum<\/code>. We then explored more advanced methods, such as installing <code>cPanel<\/code> from source and installing specific versions of <code>cPanel<\/code>. We also discussed alternative server management tools like <code>Plesk<\/code> and <code>Webmin<\/code>, and even touched on manual server management for those who prefer a hands-on approach.<\/p>\n<p>Along the way, we tackled common issues you might face when installing <code>cPanel<\/code>, such as missing dependencies, insufficient disk space, and service startup failures. For each issue, we provided potential solutions and workarounds to help you overcome these challenges.<\/p>\n<p>Here&#8217;s a quick comparison of the server management methods we&#8217;ve discussed:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>cPanel<\/td>\n<td>User-friendly, feature-rich<\/td>\n<td>Not free, requires Linux server<\/td>\n<\/tr>\n<tr>\n<td>Plesk<\/td>\n<td>Supports Windows servers, user-friendly<\/td>\n<td>Not free, less powerful than <code>cPanel<\/code><\/td>\n<\/tr>\n<tr>\n<td>Webmin<\/td>\n<td>Powerful, open-source<\/td>\n<td>Complex, steep learning curve<\/td>\n<\/tr>\n<tr>\n<td>Manual<\/td>\n<td>Most control, no additional cost<\/td>\n<td>Requires technical knowledge, time-consuming<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with <code>cPanel<\/code> or you&#8217;re looking to deepen your understanding of server management, we hope this guide has been a valuable resource. Server management is a crucial skill in today&#8217;s digital world, and with tools like <code>cPanel<\/code>, it&#8217;s more accessible than ever. Happy managing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Installing cPanel on Linux servers at IOFLOOD is a ask we commonly perform for our bare metal cloud server customer. CPanel is a popular web hosting control panel that offers a user-friendly interface for managing websites, domains, databases, and more. We have filled this helpful article with our tips and processes from years of experience, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":20798,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-7628","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","cat-3-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7628","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=7628"}],"version-history":[{"count":10,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7628\/revisions"}],"predecessor-version":[{"id":20865,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7628\/revisions\/20865"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/20798"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=7628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=7628"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=7628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}