Docker connection mongodb implementation process and code examples

Docker connection mongodb implementation process and code examples

After the container is started

Log in to admin first and create a new user

$ docker exec -it mongo mongo admin
# Create a user named admin with a password of 123456.
>db.createUser({user:"duser",pwd:"test1mongodb23","roles" : [{"role" : "dbAdmin","db" : "cpeducloud2"},
{"role" : "dbOwner","db" : "cpeducloud2"},{"role" : "readWrite","db" : "cpeducloud2"},
{"role" : "userAdmin","db" : "cpeducloud2"}],"mechanisms" : ["SCRAM-SHA-1","SCRAM-SHA-256"]});

 # Try to connect using the user information created above.

> db.auth('duser', 'test1mongodb23')

The creation is successful here, so create a new library and account here (note that this is the case of admin login)

For example, the library created here is sboot,

After creating the user, log out and log in again with the new user in the new database (sboot)

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker builds cluster MongoDB implementation steps
  • How to install the latest version of MongoDB using Docker
  • Springboot integrates MongoDB Docker development tutorial
  • Docker container deployment attempt - multi-container communication (node+mongoDB+nginx)
  • Implementation code for using mongodb database in Docker
  • How to use MongoDB to store Docker logs
  • Detailed explanation of using mongodb database in docker (access in LAN)
  • Method for implementing authorized access to MongoDB based on Docker

<<:  JS Difficulties Synchronous and Asynchronous and Scope and Closure and Detailed Explanation of Prototype and Prototype Chain

>>:  MySQL bypasses granting information_schema objects and reports ERROR 1044 (4200) error

Recommend

9 Practical CSS Properties Web Front-end Developers Must Know

1. Rounded Corners Today's web designs are con...

How to get the size of a Linux system directory using the du command

Anyone who has used the Linux system should know ...

Eight common SQL usage examples in MySQL

Preface MySQL continued to maintain its strong gr...

Proxy realizes the principle of two-way binding of Vue3 data

Table of contents 1. Advantages of proxy vs. Obje...

A complete explanation of MySQL high availability architecture: MHA architecture

Table of contents 1. Introduction 2. Composition ...

Linux file and user management practice

1. Display the files or directories in the /etc d...

Web form creation skills

In fact, the three tables above all have three ro...

Summary of @ usage in CSS (with examples and explanations)

An at-rule is a declaration that provides instruc...

JS implements jQuery's append function

Table of contents Show Me The Code Test the effec...

Some indicators of excellent web front-end design

The accessibility of web pages seems to be somethi...

Detailed tutorial on distributed operation of jmeter in docker environment

1. Build the basic image of jmeter The Dockerfile...

How to install suPHP for PHP5 on CentOS 7 (Peng Ge)

By default, PHP on CentOS 7 runs as apache or nob...

A brief discussion on several ways to pass parameters in react routing

The first parameter passing method is dynamic rou...

Introduction and tips for using the interactive visualization JS library gojs

Table of contents 1. Introduction to gojs 2. Gojs...