{"id":2430,"date":"2025-02-18T15:15:33","date_gmt":"2025-02-18T15:15:33","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=2430"},"modified":"2025-03-26T04:47:19","modified_gmt":"2025-03-26T04:47:19","slug":"create-new-group-in-linux","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html","title":{"rendered":"How to Create a New Group in Linux? (With Examples)"},"content":{"rendered":"\n<p>Linux is a multi-user operating system, which means multiple users can work on the same system simultaneously. To manage users efficiently, Linux provides a concept called groups. A group is a collection of users that share common permissions and access rights to files and directories. This makes it easier to manage user access rather than setting permissions individually for each user.<\/p>\n\n\n\n<p>For example, if you manage a team of developers, you can create a group called <strong>developers<\/strong> and add all team members. This way, you can grant or restrict access to files and directories for the entire group instead of managing individual users separately.<\/p>\n\n\n\n<p>In this detailed article, we will walk you through creating a new group in Linux using simple commands. Understanding group management is essential for maintaining security and efficiency, whether you manage a personal system or an enterprise-level server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before proceeding, ensure that you:<\/p>\n\n\n\n<p>\u2794 Have access to a Linux system.<\/p>\n\n\n\n<p>\u2794 Are logged in as a root user or a user with sudo privileges.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\"><strong>Create Zip File With Command in Linux With Examples<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Steps to Create a Group in Linux With Examples<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Step 1: Check Existing Groups<\/strong><\/h3>\n\n\n\n<p>Before you start creating a new group, checking the existing groups on your system is good practice. To do this, you have to run the following command:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>cat \/etc\/group<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will display a list of all existing groups on the system.<\/p>\n\n\n\n<p>Alternatively, you can use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupmod &#8211;list<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Now that you know the existing groups, let\u2019s create a new one!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Step 2: Create a New Group<\/strong><\/h3>\n\n\n\n<p>To create a new group in Linux, you have to use the <strong>groupadd<\/strong> command followed by the group name.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupadd group_name<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>Let&#8217;s say you want to create a group called <strong>developers<\/strong>. You can do this by following this:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupadd developers<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The group will be created if the command runs successfully without any error messages.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Step 3: Verify the Newly Created Group<\/strong><\/h3>\n\n\n\n<p>To confirm that the group was created, you can check the <strong>\/etc\/group<\/strong> file again by running:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>grep developers \/etc\/group<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This should output a line similar to:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>developers:x:1001:<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The <strong>1001<\/strong> is the Group ID (GID) assigned to the group.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Step 4: Add a User to the Group<\/strong><\/h3>\n\n\n\n<p>Once your group is created, you can add users to it. To do so, you must use the <strong>usermod<\/strong> command.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>usermod -aG group_name username<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>To add a user named <strong>john<\/strong> to the <strong>developers<\/strong> group:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>usermod -aG developers john<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>To verify if the user was successfully added to the group, run the following:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groups john<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will display all groups that <strong>john<\/strong> is a member of.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/401\/how-to-create-sudo-user-in-linux.html\"><strong>How to Create a User in Linux &amp; Add it to the sudoer File?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Modifying Groups in Linux<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Delete a Group (If Needed)<\/strong><\/h3>\n\n\n\n<p>If you no longer need a particular group, you can delete it using the <strong>groupdel <\/strong>command.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupdel group_name<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to delete the <strong>developers<\/strong> group:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupdel developers<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>It is important to ensure that no user is dependent on the group before deleting it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Rename a Group<\/strong><\/h3>\n\n\n\n<p>If you are looking to rename a group, use the <strong>groupmod<\/strong> command.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupmod -n new_group_name old_group_name<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to rename <strong>developers<\/strong> to <strong>dev_team<\/strong>:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>groupmod -n dev_team developers<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Setting a Group Password<\/strong><\/h3>\n\n\n\n<p>You can set a password for a group using the <strong>gpasswd<\/strong> command. This allows users to join the group temporarily with the password.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>gpasswd group_name<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to set a password for the developers group:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>gpasswd developers<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>After running this command, you will be prompted to enter and confirm the new password.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Remove Users from a Group<\/strong><\/h3>\n\n\n\n<p>If you want to remove a user from a group, use the <strong>gpasswd<\/strong> command.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>gpasswd -d username group_name<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to remove john from the developers group:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>gpasswd -d john developers<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/425\/remove-directory-in-linux.html\"><strong>How To Remove Directory in Linux With Command?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Groups in Linux make user management much easier by allowing administrators to assign permissions collectively. Instead of setting access control for each user individually, you can assign them to groups and manage permissions at the group level.<\/p>\n\n\n\n<p>This guide covered the basics of creating and managing groups in Linux. You learned how to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check existing groups<\/li>\n\n\n\n<li>Create a new group using groupadd<\/li>\n\n\n\n<li>Verify group creation<\/li>\n\n\n\n<li>Add users to a group<\/li>\n\n\n\n<li>Delete a group if needed<\/li>\n<\/ul>\n\n\n\n<p>Understanding how to create and manage groups is essential for Linux administrators and even regular users who want to manage their systems efficiently.\u00a0<\/p>\n\n\n\n<p>Keep exploring, and happy learning!<\/p>\n\n\n    <div class=\"blg-advrt-main blg-prm-bx\">\n        <div class=\"row\" style=\"display: flex; justify-content: space-evenly; align-items: center;\">\n            <div class=\"col-md-5\">\n                <div class=\"blg-advrt-first blg-advrt-right\">\n                    <img decoding=\"async\" src=\"https:\/\/www.hostitsmart.com\/assets\/images\/blog\/Poor-Performance-During-High-Traffic.png\" alt=\"Poor-Performance-During-High-Traffic\" \/>\n                <\/div>\n            <\/div>\n            <div class=\"col-md-7\">\n                <div class=\"blg-advrt-first blg-advrt-left\">\n                    <div class=\"blg_advrt_cnt\">\n                        Don\u2019t Let Poor Performance Ruin Your Business!                    <\/div>\n                    <p>\n                        Upgrade to Host IT Smart and Supercharge your site today!                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/web-hosting\">\n                            Get Best Web Hosting                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    ","protected":false},"excerpt":{"rendered":"<p>Linux is a multi-user operating system, which means multiple users can work on the same system simultaneously. To manage users efficiently, Linux provides a concept called groups. A group is a collection of users that share common permissions and access rights to files and directories. This makes it easier to manage user access rather than [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-2430","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create a New Group in Linux? (With Examples)<\/title>\n<meta name=\"description\" content=\"Learn to create and manage groups in Linux with this beginner-friendly guide. Also, know about adding users, renaming groups, setting group passwords, and more!\" \/>\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.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a New Group in Linux? (With Examples)\" \/>\n<meta property=\"og:description\" content=\"Learn to create and manage groups in Linux with this beginner-friendly guide. Also, know about adding users, renaming groups, setting group passwords, and more!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-18T15:15:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-26T04:47:19+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html\",\"name\":\"How to Create a New Group in Linux? (With Examples)\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-02-18T15:15:33+00:00\",\"dateModified\":\"2025-03-26T04:47:19+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn to create and manage groups in Linux with this beginner-friendly guide. Also, know about adding users, renaming groups, setting group passwords, and more!\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create a New Group in Linux? (With Examples)","description":"Learn to create and manage groups in Linux with this beginner-friendly guide. Also, know about adding users, renaming groups, setting group passwords, and more!","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.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html","og_locale":"en_US","og_type":"article","og_title":"How to Create a New Group in Linux? (With Examples)","og_description":"Learn to create and manage groups in Linux with this beginner-friendly guide. Also, know about adding users, renaming groups, setting group passwords, and more!","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-02-18T15:15:33+00:00","article_modified_time":"2025-03-26T04:47:19+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html","name":"How to Create a New Group in Linux? (With Examples)","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-02-18T15:15:33+00:00","dateModified":"2025-03-26T04:47:19+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn to create and manage groups in Linux with this beginner-friendly guide. Also, know about adding users, renaming groups, setting group passwords, and more!","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2430","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2430"}],"version-history":[{"count":2,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2430\/revisions"}],"predecessor-version":[{"id":2638,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2430\/revisions\/2638"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2430"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2430"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}