{"id":57524,"date":"2020-07-21T15:27:18","date_gmt":"2020-07-21T19:27:18","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=57524"},"modified":"2020-07-21T15:27:19","modified_gmt":"2020-07-21T19:27:19","slug":"how-to-install-mongodb","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/","title":{"rendered":"How to Install MongoDB"},"content":{"rendered":"\n<p>While there are several different types of database software available, MongoDB is a popular and feature-rich alternative to other software such as MySQL. As this software is not frequently pre-installed on Linux-based hosts, you may find yourself needing to install MongoDB on your CentOS or Ubuntu server. In this guide, we will outline how to install MongoDB on your CentOS and Ubuntu machines. Please note that you will need <a href=\"https:\/\/www.inmotionhosting.com\/support\/amp\/obtain-root-access\/\" target=\"_blank\" rel=\"noreferrer noopener\">root SSH access<\/a> on your server to perform the actions in the following guide. <\/p>\n\n\n\n<p>Topics Include:<\/p>\n\n\n\n<p><a href=\"#installing\">Installing MongoDB on CentOS<\/a><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#addrepo\">Adding MongoDB Repo<\/a><\/li><li><a href=\"#install\">Installing MongoDB<\/a><\/li><li><a href=\"#test\">Testing MongoDB<\/a><\/li><\/ul>\n\n\n\n<p><a href=\"#installubuntu\">Installing MongoDB on Ubuntu<\/a><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#addrepoubuntu\">Adding MongoDB Repo<\/a><\/li><li><a href=\"#installmongodbubuntu\">Installing MongoDB<\/a><\/li><\/ul>\n\n\n\n<p class=\"alert alert-info\">Install MongoDB on your <a href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\" target=\"_blank\" rel=\"noreferrer noopener\">Dedicated Server<\/a> and start hosting your databases today! <\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installing\">Installing MongoDB on CentOS<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"addrepo\">Adding MongoDB Repo<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>By default, the <strong>MongoDB software repositories<\/strong> (repos) are not accessible to CentOS machines. To fix this, you will need to create a repo file that will allow your server to access the MongoDB repositories.<strong> Using the nano text editor command<\/strong>, you can create a new .repo file as follows:<br><br><code>sudo nano \/etc\/yum.repos.d\/mongodb-org.repo<\/code><br><\/li><li>Next, go to the <a rel=\"noreferrer noopener\" href=\"https:\/\/www.mongodb.com\/\" target=\"_blank\">MongoDB website<\/a> and find the version of the MongoDB server software for your particular version of CentOS as well as the gpgkey URL. Once these URLs are located, <strong>copy the link to the file<\/strong> as such: <br><br><code>[mongodb-org-3.4]name=MongoDB Repository<br>baseurl=URL_FROM_MONGODB<br>gpgcheck=1<br>enabled=1<br>gpgkey=https:\/\/www.mongodb.org\/static\/pgp\/server-3.4.asc <\/code><br><br><em>*Please make sure to replace URL_FROM_MONGODB with the URL you copied from the MongoDB page for your chosen version of MongoDB.*<\/em><br><\/li><li>Check to make sure the <strong>repo was added <\/strong>successfully with the following command:<br><br><code>yum repolist<\/code><br><br>If added successfully, you should see something like this in the list:<br><br><code>mongodb-org-3.2\/7\/x86_64 &nbsp; &nbsp; &nbsp; &nbsp; MongoDB Repository<\/code><\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install\">Installing MongoDB<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Now with the repo installed, we can <strong>start the installation<\/strong> process with the following command:&nbsp;<br><br><code>sudo yum install mongodb-org<\/code><br><\/li><li>Next, <strong>start the MongoDB service<\/strong> with the following command:<br><br><code>sudo systemctl start mongod<\/code><\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"test\">Testing MongoDB<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>To test if the installation was successful, you will need to <strong>use the tail command<\/strong> to search the end of the MongoDB log file:<br><br><code>sudo tail \/var\/log\/mongodb\/mongod.log<\/code><br><br>If the installation was successful, you should see that the service is listening on the database port and waiting for connections.<br><\/li><li>To make sure that the <strong>MongoDB utility daemon<\/strong> is enabled as well, use the following command:<br><br><code>systemctl is-enabled mongod; echo $?<\/code><br><br>If the returned output is <code>0<\/code>, that means the daemon is enabled and you can begin to connect your databases to MongoDB. If the output is <code>1<\/code>, then the daemon is not enabled and you may need to reinstall the software.&nbsp;If you need help with this task, we recommend contacting our <a href=\"https:\/\/www.inmotionhosting.com\/support\/amp\/how-to-get-great-technical-support\/\" target=\"_blank\" rel=\"noreferrer noopener\">Technical Support<\/a> team for direct assistance. <\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installubuntu\">Installing MongoDB on Ubuntu<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"addrepoubuntu\">Adding MongoDB Repo<\/h3>\n\n\n\n<p>Unlike CentOS, Ubuntu includes MongoDB package repositories by default. However, to get the most up-to-date packages, we will still want to manually add the latest version of the MongoDB repositories. To ensure the authenticity of packages, Ubuntu requires the package to be signed with a gpg key.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>First, we will need to <strong>add the gpg key<\/strong> for MongoDB using the following command:<br><br><code>sudo apt-key adv --keyserver hkp:\/\/keyserver.ubuntu.com:80 --recv EA312927<br><\/code><br>After importing the key, you should see the following output:<br><br><code>gpg: Total number processed: 1<br>gpg: imported: 1&nbsp; (RSA: 1)<br><\/code><\/li><li>Next, we will need to <strong>add the repo<\/strong> to the packages list using the following command:<br><br><code>echo \"deb http:\/\/repo.mongodb.org\/apt\/ubuntu xenial\/mongodb-org\/3.2 multiverse\" | sudo tee \/etc\/apt\/sources.list.d\/mongodb-org-3.2.list<\/code><\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"installmongodbubuntu\">Installing MongoDB<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>With the Repo now added, we can now <strong>install MongoDB<\/strong> itself:<br><br><code>sudo apt-get install -y mongodb-org<\/code><br><\/li><li>Next, start the service:<br><br><code>sudo systemctl start mongod<\/code><br><\/li><li>To <strong>check that the service started<\/strong> successfully, use the following command:<br><br><code>sudo systemctl status mongod<\/code><br><\/li><li>Finally, <strong>enable the MongoDB utility daemon<\/strong>:&nbsp;<br><br><code>sudo systemctl enable mongod<\/code><\/li><\/ol>\n\n\n\n<p>Congratulations, you now know how to install MongoDB! <\/p>\n\n\n\n<p class=\"alert alert-info\">Use MongoDB on your InMotion Hosting <a rel=\"noreferrer noopener\" href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\" target=\"_blank\">Dedicated Server<\/a> for high-performance database storage and management!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>While there are several different types of database software available, MongoDB is a popular and feature-rich alternative to other software such as MySQL. As this software is not frequently pre-installed on Linux-based hosts, you may find yourself needing to install MongoDB on your CentOS or Ubuntu server. In this guide, we will outline how to<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4305],"tags":[],"class_list":["post-57524","post","type-post","status-publish","format-standard","hentry","category-databases"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install MongoDB | InMotion Hosting Support Center<\/title>\n<meta name=\"description\" content=\"In this guide, we will outline how to install MongoDB, a popular database server software, on your CentOS and Ubuntu machines via command-line.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install MongoDB | InMotion Hosting Support Center\" \/>\n<meta property=\"og:description\" content=\"In this guide, we will outline how to install MongoDB, a popular database server software, on your CentOS and Ubuntu machines via command-line.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-21T19:27:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-21T19:27:19+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Install MongoDB\",\"datePublished\":\"2020-07-21T19:27:18+00:00\",\"dateModified\":\"2020-07-21T19:27:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\"},\"wordCount\":564,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Working with Databases\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\",\"name\":\"How to Install MongoDB | InMotion Hosting Support Center\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2020-07-21T19:27:18+00:00\",\"dateModified\":\"2020-07-21T19:27:19+00:00\",\"description\":\"In this guide, we will outline how to install MongoDB, a popular database server software, on your CentOS and Ubuntu machines via command-line.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install MongoDB\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install MongoDB | InMotion Hosting Support Center","description":"In this guide, we will outline how to install MongoDB, a popular database server software, on your CentOS and Ubuntu machines via command-line.","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:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/","og_locale":"en_US","og_type":"article","og_title":"How to Install MongoDB | InMotion Hosting Support Center","og_description":"In this guide, we will outline how to install MongoDB, a popular database server software, on your CentOS and Ubuntu machines via command-line.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-07-21T19:27:18+00:00","article_modified_time":"2020-07-21T19:27:19+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Install MongoDB","datePublished":"2020-07-21T19:27:18+00:00","dateModified":"2020-07-21T19:27:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/"},"wordCount":564,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Working with Databases"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/","name":"How to Install MongoDB | InMotion Hosting Support Center","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2020-07-21T19:27:18+00:00","dateModified":"2020-07-21T19:27:19+00:00","description":"In this guide, we will outline how to install MongoDB, a popular database server software, on your CentOS and Ubuntu machines via command-line.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/databases\/how-to-install-mongodb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Install MongoDB"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/57524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=57524"}],"version-history":[{"count":12,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/57524\/revisions"}],"predecessor-version":[{"id":57685,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/57524\/revisions\/57685"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=57524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=57524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=57524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}