{"id":5194,"date":"2018-06-29T18:31:16","date_gmt":"2018-06-29T14:31:16","guid":{"rendered":"https:\/\/www.howtoforge.com\/tutorial\/centos-rancher-docker-container-management-platform\/"},"modified":"2018-06-29T18:31:16","modified_gmt":"2018-06-29T14:31:16","slug":"how-to-install-rancher-docker-container-manager-on-centos-7","status":"publish","type":"post","link":"https:\/\/afaghhosting.net\/blog\/how-to-install-rancher-docker-container-manager-on-centos-7\/","title":{"rendered":"How to Install Rancher Docker Container Manager on CentOS 7"},"content":{"rendered":"<p>Rancher is an open source container management platform. It allows you to run and manage Docker and Kubernetes with ease. Rancher provides infrastructure services such as multi-host networking, load balancing, and volume snapshots.<\/p>\n<p>In this tutorial, I will guide you to step-by-step install and configure Rancher Server and Agent on CentOS 7 server. We will install Docker and Rancher on the CentOS server, enable local authentication Rancher server, add the rancher host, and then try to deploy container application &#8216;Ghost&#8217; from Rancher Dashboard.<\/p>\n<h2 id=\"prerequisites\">Prerequisites<\/h2>\n<ul>\n<li>CentOS 7<\/li>\n<ul>\n<li><em>host01 &#8211; 192.168.33.10<\/em><\/li>\n<li><em>host02 &#8211; 192.168.33.11<\/em><\/li>\n<\/ul>\n<li>Root privileges<\/li>\n<\/ul>\n<h2 id=\"what-we-will-do\">What we will do?<\/h2>\n<ol>\n<li>Install Docker on CentOS 7<\/li>\n<li>Install Rancher Server<\/li>\n<li>Enable Local Authentication Rancher Server<\/li>\n<li>Add New Host<\/li>\n<li>Deploy New Container<\/li>\n<\/ol>\n<h2 id=\"step-install-docker-on-centos-\">Step 1 &#8211; Install Docker on CentOS 7<\/h2>\n<p>Rancher can be installed as a set of Docker Containers, one container as a management server and another as an agent. And we need Docker installed on all our rancher host and agent.<\/p>\n<p>Install Docker on CentOS 7 using the yum command below.<\/p>\n<p class=\"command\">yum -y install docker<\/p>\n<p>After the installation is complete, start the service and add it to the boot time.<\/p>\n<p class=\"command\">systemctl start docker<br \/>systemctl enable docker<\/p>\n<p>Docker installed on the rancher host server &#8211; check it using commands below.<\/p>\n<p class=\"command\">systemctl status docker<br \/>docker &#8211;version<\/p>\n<p>And you will get the result as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-1\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/1.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7.png\" alt=\"Install Docker on CentOS 7\" width=\"500\" height=\"291\" title=\"\"><\/a><\/p>\n<h2 id=\"step-install-rancher-server\">Step 2 &#8211; Install Rancher Server<\/h2>\n<p>To run and install Rancher, we just need to run the Rancher container on our server host. In this step, we will install Rancher Server single container on our &#8216;host01&#8217; server.<\/p>\n<p>Before installing Rancher server on &#8216;host01&#8217; server, we will create and define a new directory as a Rancher database volume.<\/p>\n<p>Run the commands below.<\/p>\n<p class=\"command\">HOST_VOLUME=$HOME\/rancher-data\/mysql<br \/>mkdir -p $HOST_VOLUME<\/p>\n<p>Now install Rancher server using the docker command below.<\/p>\n<p class=\"command\">sudo docker run -d \\<br \/>-v $HOST_VOLUME:\/var\/lib\/mysql \\<br \/>&#8211;restart=unless-stopped \\<br \/>-p 8080:8080 \\<br \/>rancher\/server<\/p>\n<p>Wait for the Rancher server installation.<\/p>\n<p><a class=\"fancybox\" id=\"img-2\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/2.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-1.png\" alt=\"Install Rancher Server\" width=\"500\" height=\"181\" title=\"\"><\/a><\/p>\n<p>When the installation is complete, Rancher server is accessible from the web browser.<\/p>\n<p>Open your web browser and type the server IP address with port 8080.<\/p>\n<p><em><strong>http:\/\/192.168.33.10:8080\/<\/strong><\/em><\/p>\n<p>And you will get the Rancher first page installation as below.<\/p>\n<p><a class=\"fancybox\" id=\"img-3\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/3.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-2.png\" alt=\"Rancher installation - first page\" width=\"500\" height=\"289\" title=\"\"><\/a><\/p>\n<p>Rancher server has been installed on CentOS 7 server and is now running on default port 8080.<\/p>\n<h2 id=\"step-enable-local-authentication-on-rancher-server\">Step 3 &#8211; Enable Local Authentication on Rancher Server<\/h2>\n<p>After the Rancher installation, we need to configure the Rancher Access Control. The Access Control allows you to manage users who have the access permissions to your Rancher server.<\/p>\n<p>Rancher supports many access control providers, including Active Directory, Azure AD, Github, OpenLDAP, SAML, and Local Authentication.<\/p>\n<p>For this guide, we will enable the local authentication for our Rancher server installation.<\/p>\n<p>Open your web browser and type the server IP address with port 8080.<\/p>\n<p><em><strong>http:\/\/192.168.33.10:8080\/<\/strong><\/em><\/p>\n<p>Move your cursor to the &#8216;ADMIN&#8217; menu drop-down and click the &#8216;Access Control&#8217;.<\/p>\n<p><a class=\"fancybox\" id=\"img-4\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/4.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-3.png\" alt=\"Enable Local Authentication on Rancher Server\" width=\"500\" height=\"194\" title=\"\"><\/a><\/p>\n<p>Now we want to use the &#8216;Local Authentication&#8217; method. Click &#8216;LOCAL&#8217; on the page, then type your username and password.<\/p>\n<p><a class=\"fancybox\" id=\"img-5\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/5.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-4.png\" alt=\"Configure authentication\" width=\"500\" height=\"286\" title=\"\"><\/a><\/p>\n<p>Click &#8216;Enable Local Auth&#8217; button and you will be redirected to the Rancher admin dashboard.<\/p>\n<p>Access Control for the Rancher server has been setup with Local Authentication enabled.<\/p>\n<h2 id=\"step-add-new-host\">Step 4 &#8211; Add New Host<\/h2>\n<p>Hosts are the most basic unit of resource within Rancher and represented as any Linux server (a virtual or physical server with Docker installed on it).<\/p>\n<p>In this step, we will add new host &#8216;host02&#8217; with Ubuntu as an operating system and with the 2GB of RAM.<\/p>\n<p>Connect to the &#8216;host02&#8217; server using the ssh.<\/p>\n<p class=\"command\">ssh <a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"92e0fdfde6d2f5fde1e6a2a0\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a><\/p>\n<p>Now install Docker on it using yum command.<\/p>\n<p class=\"command\">yum -y install docker<\/p>\n<p>And when the installation is complete, start docker and enable it to launch everytime at system start.<\/p>\n<p class=\"command\">systemctl start docker<br \/>systemctl enable docker<\/p>\n<p>Docker has been installed on the &#8216;host02&#8217; server.<\/p>\n<p><a class=\"fancybox\" id=\"img-10(6)\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/10(6).png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-5.png\" alt=\"Install Docker\" width=\"500\" height=\"289\" title=\"\"><\/a><\/p>\n<p>Next, we will add host02 to the Rancher as a host.<\/p>\n<p>Open the Rancher Dashboard, move your cursor to the &#8216;INFRASTRUCTURE&#8217; menu and click &#8216;Hosts&#8217;.<\/p>\n<p><a class=\"fancybox\" id=\"img-6(7)\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/6(7).png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-6.png\" alt=\"Open the Rancher Dashboard\" width=\"500\" height=\"205\" title=\"\"><\/a><\/p>\n<p>Now click the &#8216;Add Host&#8217; button.<\/p>\n<p><a class=\"fancybox\" id=\"img-7(8)\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/7(8).png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-7.png\" alt=\"Add new host\" width=\"500\" height=\"181\" title=\"\"><\/a><\/p>\n<p>For the Host Registration URL, we will use default as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-8(9)\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/8(9).png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-8.png\" alt=\"Enter host URL\" width=\"500\" height=\"250\" title=\"\"><\/a><\/p>\n<p>Click &#8216;Save button&#8217;.<\/p>\n<p>Now select the Host type, Rancher support for many type of hosts including Amazon EC2, Azure, DigitalOcean, Rackspace Hosts.<\/p>\n<p>Select the &#8216;Custom&#8217; host, type the &#8216;hots02&#8217; IP address, and copy the docker command on the box.<\/p>\n<p><a class=\"fancybox\" id=\"img-9(10)\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/9(10).png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-9.png\" alt=\"Custom host type\" width=\"500\" height=\"282\" title=\"\"><\/a><\/p>\n<p>Now open the host02 terminal shell and paste the following command.<\/p>\n<p class=\"command\">sudo docker run -e CATTLE_AGENT_IP=&#8221;192.168.33.11&#8243;\u00a0 &#8211;rm &#8211;privileged -v \/var\/run\/docker.sock:\/var\/run\/docker.sock -v \/var\/lib\/rancher:\/var\/lib\/rancher rancher\/agent:v1.2.10 http:\/\/192.168.33.10:8080\/v1\/scripts\/BCF2EFCA73A02954EBDF:1514678400000:OdRDdvnEUbV2hUMAFIS3oQxcTt4<\/p>\n<p>The command will download and run new container for Rancher Agent.<\/p>\n<p><a class=\"fancybox\" id=\"img-11\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/11.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-10.png\" alt=\"download and run new container for Rancher Agent\" width=\"500\" height=\"82\" title=\"\"><\/a><\/p>\n<p>And when it&#8217;s complete, you will get the result as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-12\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/12.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-11.png\" alt=\"container download completed\" width=\"500\" height=\"223\" title=\"\"><\/a><\/p>\n<p>Now back to the Rancher Dashboard Host Add page and click the &#8216;Close&#8217; button.<\/p>\n<p>And you will see the &#8216;host02&#8217; on the page as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-13\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/13.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-12.png\" alt=\"Host 2 shown in Rancher\" width=\"500\" height=\"163\" title=\"\"><\/a><\/p>\n<p>host02 has been added to the Rancher server, and we&#8217;re now ready to run container managed by Rancher server.<\/p>\n<h2 id=\"step-test-create-new-container\">Step 5 &#8211; Test Create New Container<\/h2>\n<p>Rancher provides a catalog for applications. The available application templates make deployment easier.<\/p>\n<p>Rancher provides two types of catalogs. The Library catalog that contains templates from the Rancher certified catalog, and the Community catalog that contains templates from the Rancher Community-catalog.<\/p>\n<p>In this step, we will try to deploy a simple blog platform &#8216;Ghost&#8217; as a container through the Rancher Catalog Community Templates.<\/p>\n<p>On the Rancher Dashboard, move the cursor to the &#8216;CATALOG&#8217; menu and click the Community Catalog.<\/p>\n<p><a class=\"fancybox\" id=\"img-14\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/14.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-13.png\" width=\"500\" height=\"184\" alt=\"Rancher catalog\" title=\"\"><\/a><\/p>\n<p>In the &#8216;Search&#8217; box, type the application name that we want to install (&#8216;Ghost&#8217;).<\/p>\n<p><a class=\"fancybox\" id=\"img-15\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/15.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-14.png\" alt=\"search application\" width=\"500\" height=\"195\" title=\"\"><\/a><\/p>\n<p>Click the &#8216;View Details&#8217; button.<\/p>\n<p>Give the new Ghost container a name and description.<\/p>\n<p><a class=\"fancybox\" id=\"img-16\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/16.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-15.png\" alt=\"enter name and description for container\" width=\"500\" height=\"289\" title=\"\"><\/a><\/p>\n<p>Then click the &#8216;Launch&#8217; button.<\/p>\n<p>When it&#8217;s complete, you will get the result as below.<\/p>\n<p><a class=\"fancybox\" id=\"img-17\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/17.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-16.png\" alt=\"Launch container\" width=\"500\" height=\"142\" title=\"\"><\/a><\/p>\n<p>The &#8216;Ghost&#8217; container has been created and is now running on Rancher agent server.<\/p>\n<p>Now move your cursor to the &#8216;INFRASTRUCTURE&#8217; menu and click &#8216;Host&#8217;. Now make sure you get the &#8216;ghost&#8217; container is running on the &#8216;host2&#8217; server.<\/p>\n<p><a class=\"fancybox\" id=\"img-18\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/18.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-17.png\" alt=\"Host infrastructure\" width=\"500\" height=\"190\" title=\"\"><\/a><\/p>\n<p>To verify the Ghost container installation, open your web browser and type the &#8216;host02&#8217; IP address and you will get the ghost blog default homepage.<\/p>\n<p><em><strong>http:\/\/192.168.33.11\/<\/strong><\/em><\/p>\n<p><a class=\"fancybox\" id=\"img-19\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_rancher_server_on_centos_7\/big\/19.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-18.png\" alt=\"Ghost blog is working\" width=\"500\" height=\"285\" title=\"\"><\/a><\/p>\n<p>Rancher server and Rancher agent installation on Ubuntu 16.04 has been completed successfully.<\/p>\n<h2 id=\"reference\">Reference<\/h2>\n<div>\n<p><b>Share this page:<\/b><\/p>\n<p>\n<a href=\"https:\/\/www.facebook.com\/sharer.php?u=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fcentos-rancher-docker-container-management-platform%2F\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-19.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fcentos-rancher-docker-container-management-platform%2F&amp;text=How+to+Install+Rancher+Docker+Container+Manager+on+CentOS+7&amp;via=howtoforgecom&amp;related=howtoforgecom\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-20.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/twitter.com\/howtoforgecom\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-21.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/plus.google.com\/share?url=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fcentos-rancher-docker-container-management-platform%2F\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-rancher-docker-container-manager-on-centos-7-22.png\" height=\"20\" alt=\"\" title=\"\"><\/a>\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Rancher is an open source container management platform. It allows you to run and manage Docker and Kubernetes with ease. Rancher provides infrastructure services such as multi-host networking, load balancing, and volume snapshots. In this tutorial, I will guide you to step-by-step install and configure Rancher Server and Agent on CentOS 7 server. We will &hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36],"tags":[],"class_list":["post-5194","post","type-post","status-publish","format-standard","hentry","category-36"],"_links":{"self":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts\/5194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/comments?post=5194"}],"version-history":[{"count":0,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts\/5194\/revisions"}],"wp:attachment":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/media?parent=5194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/categories?post=5194"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/tags?post=5194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}