{"id":111812,"date":"2021-03-08T11:32:04","date_gmt":"2021-03-08T06:02:04","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?page_id=111812"},"modified":"2024-04-12T14:31:36","modified_gmt":"2024-04-12T09:01:36","slug":"user-and-role-management","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/","title":{"rendered":"User and Role Management"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>User and Role Management<\/strong><\/h4>\n\n\n\n<p><strong>Create a User Administrator<\/strong> &#8211; User administrators create users and create and assigns roles. A user administrator can grant any privilege in the database and can create new ones. In a MongoDB deployment, create the user administrator as the first user. Then let this user create all other users. To provide user administrators, MongoDB has userAdmin and userAdminAnyDatabase roles, which grant access to actions that support user and role management. Following the policy of least privilege userAdmin and userAdminAnyDatabase confer no additional privileges.<\/p>\n\n\n\n<p>Carefully control access to these roles. A user with either of these roles can grant itself unlimited additional privileges. Specifically, a user with the userAdmin role can grant itself any privilege in the database. A user assigned either the userAdmin role on the admin database or the userAdminAnyDatabase can grant itself any privilege in the system. The prerequisites are<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You must have the createUser action on a database to create a new user on that database.<\/li>\n\n\n\n<li>You must have the grantRole action on a role\u2019s database to grant the role to another user.<\/li>\n\n\n\n<li>If you have the userAdmin or userAdminAnyDatabase role, or if you are authenticated using the localhost exception, you have those actions.<\/li>\n<\/ul>\n\n\n\n<p><strong>Procedure<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Connect to MongoDB with the appropriate privileges- Connect to the mongod or mongos as a user with the privileges required in the Prerequisites section. The following example operation connects to MongoDB as an authenticated user named manager:<\/li>\n<\/ul>\n\n\n\n<p>mongo &#8211;port 27017 -u manager -p 12345678 &#8211;authenticationDatabase admin<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Verify your privileges &#8211; Use the usersInfo command with the showPrivileges option. The following example operation checks privileges for a user connected as manager:<\/li>\n<\/ul>\n\n\n\n<p>db.runCommand(&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp; usersInfo:&#8221;manager&#8221;,<\/p>\n\n\n\n<p>showPrivileges:true<\/p>\n\n\n\n<p>} )<\/p>\n\n\n\n<p>The resulting user\u2019s document displays the privileges granted to manager.<\/p>\n\n\n\n<p>Create the system user administrator &#8211; Add the user with the userAdminAnyDatabase role, and only that role. The following example creates the user siteUserAdmin user on the admin database:<\/p>\n\n\n\n<p>use admin<\/p>\n\n\n\n<p>db.createUser(&nbsp;&nbsp; {<\/p>\n\n\n\n<p>user: &#8220;siteUserAdmin&#8221;,<\/p>\n\n\n\n<p>pwd: &#8220;password&#8221;,<\/p>\n\n\n\n<p>roles:<\/p>\n\n\n\n[&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>role: &#8220;userAdminAnyDatabase&#8221;,<\/p>\n\n\n\n<p>db: &#8220;admin&#8221;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;&nbsp;&nbsp; ]&nbsp;&nbsp; } )<\/p>\n\n\n\n<p>Create a user administrator for a single database &#8211; Optionally, you may want to create user administrators that only have access to administer users in a specific database by way of the userAdmin role. The following example creates the user recordsUserAdmin on the records database:<\/p>\n\n\n\n<p>use products<\/p>\n\n\n\n<p>db.createUser(<\/p>\n\n\n\n<p>{&nbsp;&nbsp;&nbsp;&nbsp; user: &#8220;recordsUserAdmin&#8221;,<\/p>\n\n\n\n<p>pwd: &#8220;password&#8221;,<\/p>\n\n\n\n<p>roles:<\/p>\n\n\n\n[&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>role: &#8220;userAdmin&#8221;,<\/p>\n\n\n\n<p>db: &#8220;records&#8221;<\/p>\n\n\n\n<p>}&nbsp;&nbsp;&nbsp;&nbsp; ]&nbsp;&nbsp; } )<\/p>\n\n\n\n<p><strong>Add a User to a Database<\/strong> &#8211; Each application and user of a MongoDB system should map to a distinct application or administrator. This access isolation facilitates access revocation and ongoing user maintenance. At the same time users should have only the minimal set of privileges required to ensure a system of least privilege. To create a user, you must define the user\u2019s credentials and assign that user roles. Credentials verify the user\u2019s identity to a database, and roles determine the user\u2019s access to database resources and operations. Create the user in the database to which the user will belong. Pass a well formed user document to the db.createUser() method. The following operation creates a user with the specified name, password, and roles:<\/p>\n\n\n\n<p>db.createUser(<\/p>\n\n\n\n<p>{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; user: &#8220;reportsUser&#8221;,<\/p>\n\n\n\n<p>pwd: &#8220;12345678&#8221;,<\/p>\n\n\n\n<p>roles: [ &#8220;reportingRole&#8221;, &#8220;readWriteAnyDatabase&#8221; ]\n\n\n\n<p>}<\/p>\n\n\n\n<p>)<\/p>\n\n\n\n<p><strong>Create an Administrative User with Unrestricted Access <\/strong>&#8211; Most users should have only the minimal set of privileges required for their operations, in keeping with the policy of least privilege. However, some authorization architectures may require a user with unrestricted access. To support these super users, you can create users with access to all database resources and actions. For many deployments, you may be able to avoid having any users with unrestricted access by having an administrative user that with the createUser and grantRole actions as needed to support operations. If users truly need unrestricted access to a MongoDB deployment, MongoDB provides a built-in role named root that grants the combined privileges of all built-in roles. This document describes how to create an administrative user with the root role. In the admin database, create a new user using the db.createUser() method. Give the user the built-in root role. For example:<\/p>\n\n\n\n<p>use admin<\/p>\n\n\n\n<p>db.createUser(<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>user: &#8220;superuser&#8221;,<\/p>\n\n\n\n<p>pwd: &#8220;12345678&#8221;,<\/p>\n\n\n\n<p>roles: [ &#8220;root&#8221; ]\n\n\n\n<p>}<\/p>\n\n\n\n<p>)<\/p>\n\n\n\n<p>Authenticate against the admin database to test the new user account. Use db.auth() while using the admin database or use the mongo shell with the &#8211;authenticationDatabase option.<\/p>\n\n\n\n<p><strong>Create a Role<\/strong> &#8211; Roles grant users access to MongoDB resources. By default, MongoDB provides a number of built-in roles that administrators may use to control access to a MongoDB system. However, if these roles cannot describe the desired privilege set of a particular user type in a deployment, you can define a new, customized role. A role\u2019s privileges apply to the database where the role is created. The role can inherit privileges from other roles in its database. A role created on the admin database can include privileges that apply to all databases or to the cluster and can inherit privileges from roles in other databases. The combination of the database name and the role name uniquely defines a role in MongoDB. The pre-requisites are<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You must have the createRole action on a database to create a role on that database.<\/li>\n\n\n\n<li>You must have the grantRole action on the database that a privilege targets in order to grant that privilege to a role. If the privilege targets multiple databases or the cluster resource , you must have the grantRole action on the admin database.<\/li>\n\n\n\n<li>You must have the grantRole action on a role\u2019s database to grant the role to another role.<\/li>\n\n\n\n<li>To view a role\u2019s information, you must be explicitly granted the role or must have the viewRole action on the role\u2019s database.<\/li>\n<\/ul>\n\n\n\n<p><strong>Define the privileges to grant to the role <\/strong>&#8211; Decide which resources to grant access to and which actions to grant on each resource. When creating the role, you will enter the resource-action pairings as documents in the privileges array, as in the following example:<\/p>\n\n\n\n<p>{ db: &#8220;products&#8221;, collection: &#8220;electronics&#8221; }<\/p>\n\n\n\n<p><strong>Check whether an existing role provides the privileges <\/strong>&#8211; If an existing role contains the exact set of privileges, the new role can inherit those privileges. To view the privileges provided by existing roles, use the rolesInfo command, as in the following:<\/p>\n\n\n\n<p>db.runCommand( { rolesInfo: 1, showPrivileges: 1 } )<\/p>\n\n\n\n<p><strong>Create the role <\/strong>&#8211; To create the role, use the createRole command. Specify privileges in the privileges array and inherited roles in the roles array. The following example creates the myClusterwideAdmin role in the admin database:<\/p>\n\n\n\n<p>use admin<\/p>\n\n\n\n<p>db.createRole(<\/p>\n\n\n\n<p>{ role: &#8220;myClusterwideAdmin&#8221;,<\/p>\n\n\n\n<p>privileges:<\/p>\n\n\n\n[<\/p>\n\n\n\n<p>{ resource: { cluster: true }, actions: [ &#8220;addShard&#8221; ] },<\/p>\n\n\n\n<p>{ resource: { db: &#8220;config&#8221;, collection: &#8220;&#8221; }, actions: [ &#8220;find&#8221;, &#8220;update&#8221;, &#8220;insert&#8221; ] },<\/p>\n\n\n\n<p>{ resource: { db: &#8220;users&#8221;, collection: &#8220;usersCollection&#8221; }, actions: [ &#8220;update&#8221; ] },<\/p>\n\n\n\n<p>{ resource: { db: &#8220;&#8221;, collection: &#8220;&#8221; }, actions: [ &#8220;find&#8221; ] }<\/p>\n\n\n\n<p>],<\/p>\n\n\n\n<p>roles:<\/p>\n\n\n\n[<\/p>\n\n\n\n<p>{ role: &#8220;read&#8221;, db: &#8220;admin&#8221; }<\/p>\n\n\n\n<p>],<\/p>\n\n\n\n<p>writeConcern: { w: &#8220;majority&#8221; , wtimeout: 5000 }<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>)<\/p>\n\n\n\n<p>The operation defines myClusterwideAdmin role\u2019s privileges in the privileges array. In the roles array, myClusterwideAdmin inherits privileges from the admin database\u2019s read role.<\/p>\n\n\n\n<p><strong>Assign a User a Role<\/strong> &#8211; A role provides a user privileges to perform a set of actions on a resource. A user can have multiple roles. In MongoDB systems with authorization enforced, you must grant a user a role for the user to access a database resource. To assign a role, first determine the privileges the user needs and t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hen determine the role that grants those privileges. The steps are<\/p>\n\n\n\n<p>Identify the user\u2019s roles and privileges &#8211; To display the roles and privileges of the user to be modified, use the db.getUser() and db.getRole() methods. To display the privileges granted by siteRole01 on the current database, issue:<\/p>\n\n\n\n<p>db.getRole( &#8220;siteRole01&#8221;, { showPrivileges: true } )<\/p>\n\n\n\n<p><strong>Identify the privileges to grant or revoke <\/strong>&#8211; Determine which role contains the privileges and only those privileges. If such a role does not exist, then to grant the privileges will require creating a new role with the specific set of privileges. To revoke a subset of privileges provided by an existing role: revoke the original role, create a new role that contains the privileges to keep, and then grant that role to the user.<\/p>\n\n\n\n<p><strong>Grant a role to a user <\/strong>&#8211; Grant the user the role using the db.grantRolesToUser() method. For example:<\/p>\n\n\n\n<p>use admin<\/p>\n\n\n\n<p>db.grantRolesToUser(<\/p>\n\n\n\n<p>&#8220;accountAdmin01&#8221;,<\/p>\n\n\n\n[&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; role: &#8220;readWrite&#8221;, db: &#8220;products&#8221;<\/p>\n\n\n\n<p>},<\/p>\n\n\n\n<p>{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; role: &#8220;readAnyDatabase&#8221;, db:&#8221;admin&#8221;<\/p>\n\n\n\n<p>} &nbsp;&nbsp;]\n\n\n\n<p>)<\/p>\n\n\n\n<p><strong>Modify a User\u2019s Access<\/strong> &#8211; When a user\u2019s responsibilities change, modify the user\u2019s access to include only those roles the user requires. This follows the policy of least privilege. To change a user\u2019s access, first determine the privileges the user needs and then determine the roles that grants those privileges. Grant and revoke roles using the method:db.grantRolesToUser() and db.revokeRolesFromUser methods. The steps are<\/p>\n\n\n\n<p><strong>Identify the privileges to grant or revoke <\/strong>&#8211; Determine which role contains the privileges and only those privileges. If such a role does not exist, then to grant the privileges will require creating a new role with the specific set of privileges. To revoke a subset of privileges provided by an existing role: revoke the original role, create a new role that contains the privileges to keep, and then grant that role to the user.<\/p>\n\n\n\n<p><strong>Modify the user\u2019s access<\/strong><\/p>\n\n\n\n<p>Revoke a Role &#8211; Revoke a role with the db.revokeRolesFromUser() method. Access revocations apply as soon as the user tries to run a command. On a mongos revocations are instant on the mongos on which the command ran, but there is up to a 10-delay before the user cache is updated on the other mongos instances in the cluster. The following example operation removes the readWrite role on the accounts database from the accountUser01 user\u2019s existing roles:<\/p>\n\n\n\n<p>use accounts<\/p>\n\n\n\n<p>db.revokeRolesFromUser(<\/p>\n\n\n\n<p>&#8220;accountUser01&#8221;,<\/p>\n\n\n\n[<\/p>\n\n\n\n<p>{ role: &#8220;readWrite&#8221;, db: &#8220;accounts&#8221; }<\/p>\n\n\n\n<p>]\n\n\n\n<p>)<\/p>\n\n\n\n<p><strong>Grant a Role<\/strong> &#8211; Grant a role using the db.grantRolesToUser() method. For example, the following operation grants the accountUser01 user the read role on the records database:<\/p>\n\n\n\n<p>use accounts<\/p>\n\n\n\n<p>db.grantRolesToUser(<\/p>\n\n\n\n<p>&#8220;accountUser01&#8221;,<\/p>\n\n\n\n[<\/p>\n\n\n\n<p>{ role: &#8220;read&#8221;, db: &#8220;records&#8221; }<\/p>\n\n\n\n<p>]\n\n\n\n<p>)<\/p>\n\n\n\n<p><strong>Change a User\u2019s Password<\/strong> &#8211; Strong passwords help prevent unauthorized access, and all users should have strong passwords. You can use the openssl program to generate unique strings for use in passwords, as in the following command:<\/p>\n\n\n\n<p>openssl rand -base64 48<\/p>\n\n\n\n<p>Pass the user\u2019s username and the new password to the db.changeUserPassword() method. The following operation changes the reporting user\u2019s password to Oh3TbYhxuLiW8ypJPxmt1oOfL:<\/p>\n\n\n\n<p>db.changeUserPassword(&#8220;reporting&#8221;, &#8220;SOh3TbYhxuLiW8ypJPxmt1oOfL&#8221;)<\/p>\n\n\n\n<p><strong>Change Your Password and Custom Data<\/strong> &#8211; Users with appropriate privileges can change their own passwords and custom data. Custom data stores optional user information. Pass your username, new password, and new custom data to the updateUser command. For example, the following operation changes a user\u2019s password to KNlZmiaNUp0B and custom data to { title: &#8220;Senior Manager&#8221; }:<\/p>\n\n\n\n<p>db.runCommand(<\/p>\n\n\n\n<p>{ updateUser: &#8220;manager&#8221;,<\/p>\n\n\n\n<p>pwd: &#8220;KNlZmiaNUp0B&#8221;,<\/p>\n\n\n\n<p>customData: { title: &#8220;Senior Manager&#8221; }<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Apply for MongoDB Certification Now!!<\/h3>\n\n\n\n<p><a href=\"https:\/\/www.vskills.in\/certification\/databases\/mongodb-server-administrator\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.vskills.in\/certification\/databases\/mongodb-server-administrator<\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/www.vskills.in\/certification\/tutorial\/certified-mongodb-professional\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Back to Tutorial<\/strong><\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>User and Role Management Create a User Administrator &#8211; User administrators create users and create and assigns roles. A user administrator can grant any privilege in the database and can create new ones. In a MongoDB deployment, create the user administrator as the first user. Then let this user create all other users. To provide&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[73],"tags":[],"class_list":["post-111812","page","type-page","status-publish","hentry","category-mongodb"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>User and Role Management - Tutorial<\/title>\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.vskills.in\/certification\/tutorial\/user-and-role-management\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"User and Role Management - Tutorial\" \/>\n<meta property=\"og:description\" content=\"User and Role Management Create a User Administrator &#8211; User administrators create users and create and assigns roles. A user administrator can grant any privilege in the database and can create new ones. In a MongoDB deployment, create the user administrator as the first user. Then let this user create all other users. To provide...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T09:01:36+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/\",\"name\":\"User and Role Management - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2021-03-08T06:02:04+00:00\",\"dateModified\":\"2024-04-12T09:01:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"User and Role Management\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"User and Role Management - Tutorial","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.vskills.in\/certification\/tutorial\/user-and-role-management\/","og_locale":"en_US","og_type":"article","og_title":"User and Role Management - Tutorial","og_description":"User and Role Management Create a User Administrator &#8211; User administrators create users and create and assigns roles. A user administrator can grant any privilege in the database and can create new ones. In a MongoDB deployment, create the user administrator as the first user. Then let this user create all other users. To provide...","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T09:01:36+00:00","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/","name":"User and Role Management - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2021-03-08T06:02:04+00:00","dateModified":"2024-04-12T09:01:36+00:00","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/user-and-role-management\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"User and Role Management"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/111812","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=111812"}],"version-history":[{"count":3,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/111812\/revisions"}],"predecessor-version":[{"id":132115,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/111812\/revisions\/132115"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=111812"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=111812"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=111812"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}