• STSS↗︎-72.2986%
  • MIST↗︎-60.8889%
  • WOLF↗︎-52.0446%
  • LGMK↗︎-50.1961%
  • XTIA↗︎-50.0%
  • ICON↗︎-48.0%
  • LKCO↗︎-46.3576%
  • DRCT↗︎-45.1278%
  • SBEV↗︎-45.0%
  • CCGWW↗︎-42.9769%
  • MSSAR↗︎-41.9795%
  • COOTW↗︎-40.8571%
  • COEPW↗︎-39.3939%
  • RCT↗︎-38.2051%
  • CYCUW↗︎-37.5%
  • AGMH↗︎-36.6091%
  • MOBBW↗︎-33.8636%
  • ECX↗︎-33.6283%
  • TDTH↗︎-33.5412%
  • FGIWW↗︎-33.3778%
  • STSS↘︎-72.2986%
  • MIST↘︎-60.8889%
  • WOLF↘︎-52.0446%
  • LGMK↘︎-50.1961%
  • XTIA↘︎-50.0%
  • ICON↘︎-48.0%
  • LKCO↘︎-46.3576%
  • DRCT↘︎-45.1278%
  • SBEV↘︎-45.0%
  • CCGWW↘︎-42.9769%
  • MSSAR↘︎-41.9795%
  • COOTW↘︎-40.8571%
  • COEPW↘︎-39.3939%
  • RCT↘︎-38.2051%
  • CYCUW↘︎-37.5%
  • AGMH↘︎-36.6091%
  • MOBBW↘︎-33.8636%
  • ECX↘︎-33.6283%
  • TDTH↘︎-33.5412%
  • FGIWW↘︎-33.3778%

mongosh | Ubuntu | Add User To Database With Read And Write Permissions

mongosh | Ubuntu | Add User To Database With Read And Write Permissions
mongosh | Ubuntu | Add User To Database With Read And Write Permissions

This article covers the process of adding a new user to a MongoDB database using mongosh in Ubuntu. It provides clear instructions on how to grant read and write permissions for that user, ensuring they can interact with the database effectively while maintaining security. By following these steps, you will learn how to manage user roles and permissions in MongoDB.

Published:

  • Introduction to User Management in MongoDB

    In MongoDB, managing users is essential for maintaining security and effective database access control. This article will guide you through the process of adding a new user to a MongoDB database using the MongoDB shell (mongosh) on an Ubuntu system. By granting specific permissions, you can ensure that users can interact with the database as needed while keeping sensitive data secure.

  • Prerequisites

    Before starting, make sure that MongoDB is installed on your Ubuntu system and that you have administrative access to the database. You should also have the mongosh command-line interface installed. If MongoDB is not installed, you can follow the official installation guide to set it up.

  • Starting mongosh

    To interact with your MongoDB database, open a terminal on your Ubuntu machine and start the mongosh shell by typing mongosh. This will connect you to the local MongoDB server running on default port 27017.

    mongosh
  • Selecting the Database

    Once in the mongosh shell, select the database to which you want to add the user. Use the use command followed by the database name. If the database doesn’t exist, MongoDB will create it for you when you insert the first document.

    use yourDatabaseName
  • Creating a New User

    To create a new user, you'll use the db.createUser() method. This method takes an object with parameters defining the username, password, and the roles assigned to the user. For instance, to create a user with read and write access, specify the roles accordingly.

    db.createUser({
      user: 'newUser',
      pwd: 'password123',
      roles: [{ role: 'readWrite', db: 'yourDatabaseName' }]
    })
  • Understanding Roles and Permissions

    In the command used to create a new user, the roles array defines the permissions that the user will have. The readWrite role allows the user to both read and write data in the specified database. You can assign multiple roles if needed to customize the user's access level further. MongoDB has various built-in roles for different permission levels, such as dbAdmin, read, and readWriteAnyDatabase.

  • Verifying User Creation

    After creating the user, it’s a good practice to verify that the user has been added successfully. You can do this by running the command db.getUsers(), which lists all users in the current database along with their roles.

    db.getUsers()
  • Conclusion

    Adding users to a MongoDB database and managing their roles and permissions is crucial for database security and functionality. By following the above steps, you should now be able to create a new user with specific access rights, ensuring efficient yet secure interactions with your database. Always remember to follow the principle of least privilege when assigning roles to users to maintain your database's security.

Technology

Programming

Virtual Machine

Artificial Intelligence

Data Management

General

Gaming