{"id":9840,"date":"2020-07-04T11:20:28","date_gmt":"2020-07-04T11:20:28","guid":{"rendered":"https:\/\/www.milesweb.in\/hosting-faqs\/?p=9840"},"modified":"2020-07-04T11:20:28","modified_gmt":"2020-07-04T11:20:28","slug":"create-a-mysql-user-and-grant-permissions","status":"publish","type":"post","link":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/","title":{"rendered":"Learn to Create a MySQL User and Grant Permissions via Command Line"},"content":{"rendered":"<p>MySQL is open-source database management software that enables users to store, manage, and retrieve data later. It offers multiple options to grant specific users permissions within the tables and databases.<\/p>\n<p>In this tutorial, you will learn to create a MySQL user and several commands to grant permissions, revoke them and delete existing users.<\/p>\n<p>At first ensure that you have installed MySQL.<\/p>\n<p>When you start using, you are provided with a username and a password. These credentials will help you to get root access or full control of all your databases and tables.<\/p>\n<p>But sometimes you will need to grant the database access to someone else without giving them complete control.<\/p>\n<p>Suppose you hire developers for your database management but don\u2019t want them to delete or modify any sensitive information.<\/p>\n<p>In this case, you will need to provide them with the credentials of a non-root user. With this, you can keep a watch on the activity developers are doing with your data.<\/p>\n<h3>Create a New User Account in MySQL<\/h3>\n<p>At first, access the command line and enter your MySQL server using the below command:<\/p>\n<pre class=\"lang:default decode:true \">mysql<\/pre>\n<p>This will return the result below which confirms that you are accessing a MySQL server:<\/p>\n<pre class=\"lang:default decode:true \">mysql&gt;<\/pre>\n<p>Now execute the below command to create a new user:<\/p>\n<pre class=\"lang:default decode:true \">CREATE USER \u2018new_user\u2019@\u2018localhost\u2019 IDENTIFIED BY \u2018password\u2019;<\/pre>\n<p>Here the<strong> \u2018new_user\u2019<\/strong> represents the name of the user and <strong>IDENTIFIED BY \u2018password\u2019<\/strong> represents the password for that user. You can replace these values with your own.<\/p>\n<p>Execute the below command to grant all the privileges to the newly created user:<\/p>\n<pre class=\"lang:default decode:true \">GRANT ALL PRIVILEGES ON * . * TO 'new_user'@'localhost';<\/pre>\n<p>If you want the changes to take effect immediately, flush these privileges by running the below command:<\/p>\n<pre class=\"lang:default decode:true\">FLUSH PRIVILEGES;<\/pre>\n<p>Now, your new user account will have the same privileges as the root user has.<\/p>\n<h3>Grant Privileges Separately for a MySQL User<\/h3>\n<p>It is important that you mention the database name and table name and separate them with a . (period) and without spaces. With this, the root user will have more control over particular data.<\/p>\n<p>Also, replace the<strong> PERMISSION_TYPE<\/strong> value with the type of access you want to give to the new user account.<\/p>\n<p>Below are the commonly used commands in MySQL:<\/p>\n<ul>\n<li>CREATE \u2014 helps users to create a database or table<\/li>\n<li>SELECT \u2014 allows users to retrieve data<\/li>\n<li>INSERT \u2014 allows users to add new entries in tables<\/li>\n<li>UPDATE \u2014 allows users to modify existing entries in tables<\/li>\n<li>DELETE \u2014 enables users to erase table entries<\/li>\n<li>DROP \u2014 enables users delete entire database tables<\/li>\n<\/ul>\n<p><strong>Note:<\/strong> If you use ALL PRIVILEGES permission type, it will allow all of the permissions listed above to the new user.<\/p>\n<p>For using any option from the above list, just replace PERMISSION_TYPE with the appropriate keyword. To grant multiple privileges, separate them with a comma. For example, you can assign CREATE and SELECT to your non-root MySQL user account with the below command:<\/p>\n<pre class=\"lang:default decode:true \">GRANT CREATE, SELECT ON * . * TO 'user_name'@'localhost';<\/pre>\n<p>If there is a situation wherein you need to revoke given privileges from a user, use the below command:<\/p>\n<pre class=\"lang:default decode:true \">REVOKE PERMISSION_TYPE ON database_name.table_name FROM \u2018user_name\u2019@\u2018localhost\u2019;<\/pre>\n<p>For example, to remove all privileges for your non-root user run the below command:<\/p>\n<pre class=\"lang:default decode:true \">REVOKE ALL PRIVILEGES ON * . * FROM 'user_name'@'localhost';<\/pre>\n<p>Finally, to completely delete an existing user account run the following command:<\/p>\n<pre class=\"lang:default decode:true \">DROP USER \u2018user_name\u2019@\u2018localhost\u2019;<\/pre>\n<p><strong>Note:<\/strong> You should have root access to run any of these commands. Ensure to execute FLUSH PRIVILEGES; command after making the changes.<\/p>\n<h3>Display Account Privileges for a MySQL User<\/h3>\n<p>To find out the privileges already granted to a MySQL user, use the SHOW GRANTS command:<\/p>\n<pre class=\"lang:default decode:true \">SHOW GRANTS FOR 'user_name'@'localhost';<\/pre>\n<p>The output will look similar to the below one:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-9841\" src=\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png\" alt=\"\" width=\"1024\" height=\"118\" srcset=\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png 1024w, https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-300x34.png 300w, https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-768x88.png 768w, https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min.png 1071w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<h3>Conclusion<\/h3>\n<p>All user data is stored in the form of database and so, is a significant part of every website and web application. A database management system helps in managing and communicating with the database more efficiently. Therefore, you should use the most popular and recommended option \u2014 MySQL, because it is reliable as well as user-friendly.<\/p>\n<p>Hope the above commands will help you to create a new MySQL user and grant privileges to its account.<\/p>\n<p><strong>Also Read:<\/strong><\/p>\n<p><a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-delete-a-mysql-user\/\" target=\"_blank\" rel=\"noopener\"><strong>How to Delete a MySQL User?<\/strong><\/a><\/p>\n<p><a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/disable-ssh-login-for-the-root-user\/\" target=\"_blank\" rel=\"noopener\"><strong>Disable SSH Login for the Root User<\/strong><\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySQL is open-source database management software that enables users to store, manage, and retrieve data later. It offers multiple options to grant specific users permissions within the tables and databases. In this tutorial, you will learn to create a MySQL user and several commands to grant permissions, revoke them and delete existing users. At first [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[967],"tags":[1509,1508,1507,1506],"class_list":["post-9840","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-mysql","tag-grant-privileges-to-mysql-user","tag-mysql-user","tag-mysql-user-permssions","tag-mysql-user-privileges"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Learn to Create a MySQL User and Grant Permissions via Command Line<\/title>\n<meta name=\"description\" content=\"MySQL is open-source database management software that enables users to store, manage, and retrieve data later. Learn to grant privileges to the users.\" \/>\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.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learn to Create a MySQL User and Grant Permissions via Command Line\" \/>\n<meta property=\"og:description\" content=\"MySQL is open-source database management software that enables users to store, manage, and retrieve data later. Learn to grant privileges to the users.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-04T11:20:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png\" \/>\n<meta name=\"author\" content=\"Pallavi Godse\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pallavi Godse\" \/>\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\":\"Article\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\"},\"author\":{\"name\":\"Pallavi Godse\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\"},\"headline\":\"Learn to Create a MySQL User and Grant Permissions via Command Line\",\"datePublished\":\"2020-07-04T11:20:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\"},\"wordCount\":664,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png\",\"keywords\":[\"grant privileges to mysql user\",\"mysql user\",\"mysql user permssions\",\"mysql user privileges\"],\"articleSection\":[\"MySQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\",\"name\":\"Learn to Create a MySQL User and Grant Permissions via Command Line\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png\",\"datePublished\":\"2020-07-04T11:20:28+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\"},\"description\":\"MySQL is open-source database management software that enables users to store, manage, and retrieve data later. Learn to grant privileges to the users.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min.png\",\"contentUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min.png\",\"width\":1071,\"height\":123},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learn to Create a MySQL User and Grant Permissions via Command Line\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\",\"name\":\"Pallavi Godse\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g\",\"caption\":\"Pallavi Godse\"},\"description\":\"Pallavi is a Digital Marketing Executive at MilesWeb and has an experience of over 4 years in content development. She is interested in writing engaging content on business, technology, web hosting and other topics related to information technology.\",\"sameAs\":[\"https:\/\/www.milesweb.in\"],\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/author\/pallavi\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Learn to Create a MySQL User and Grant Permissions via Command Line","description":"MySQL is open-source database management software that enables users to store, manage, and retrieve data later. Learn to grant privileges to the users.","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.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/","og_locale":"en_US","og_type":"article","og_title":"Learn to Create a MySQL User and Grant Permissions via Command Line","og_description":"MySQL is open-source database management software that enables users to store, manage, and retrieve data later. Learn to grant privileges to the users.","og_url":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2020-07-04T11:20:28+00:00","og_image":[{"url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png","type":"","width":"","height":""}],"author":"Pallavi Godse","twitter_misc":{"Written by":"Pallavi Godse","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#article","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/"},"author":{"name":"Pallavi Godse","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945"},"headline":"Learn to Create a MySQL User and Grant Permissions via Command Line","datePublished":"2020-07-04T11:20:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/"},"wordCount":664,"commentCount":0,"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png","keywords":["grant privileges to mysql user","mysql user","mysql user permssions","mysql user privileges"],"articleSection":["MySQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/","name":"Learn to Create a MySQL User and Grant Permissions via Command Line","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min-1024x118.png","datePublished":"2020-07-04T11:20:28+00:00","author":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945"},"description":"MySQL is open-source database management software that enables users to store, manage, and retrieve data later. Learn to grant privileges to the users.","breadcrumb":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#primaryimage","url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min.png","contentUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/07\/show-grants-output-min.png","width":1071,"height":123},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/create-a-mysql-user-and-grant-permissions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.in\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"Learn to Create a MySQL User and Grant Permissions via Command Line"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.in\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945","name":"Pallavi Godse","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g","caption":"Pallavi Godse"},"description":"Pallavi is a Digital Marketing Executive at MilesWeb and has an experience of over 4 years in content development. She is interested in writing engaging content on business, technology, web hosting and other topics related to information technology.","sameAs":["https:\/\/www.milesweb.in"],"url":"https:\/\/www.milesweb.in\/hosting-faqs\/author\/pallavi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/9840","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=9840"}],"version-history":[{"count":1,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/9840\/revisions"}],"predecessor-version":[{"id":9842,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/9840\/revisions\/9842"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=9840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=9840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=9840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}