Logo

dev-resources.site

for different kinds of informations.

Iniciar sesion en mongodb con usuario y contraseña | Mongodb

Published at
10/12/2023
Categories
mongodb
connection
db
espanol
Author
fynio
Categories
4 categories in total
mongodb
open
connection
open
db
open
espanol
open
Author
5 person written this
fynio
open
Iniciar sesion en mongodb con usuario y contraseña | Mongodb

Hola a todos

Hoy les traigo un nuevo minitutorial de como crear usuario y contrasena en mongodb

primero que nada entramos a la base de datos que deseamos colocarle la contreana para ello ejecutamos el comando

mongo
Enter fullscreen mode Exit fullscreen mode

o

mongosh
Enter fullscreen mode Exit fullscreen mode

una vez dentro de mongo seleccionamos el nombre de la base de datos donde queremos crear el usuario

para ello ejecutamos el comando


use NOMBRE_DE_LA_BASE_DE_DATOS

Enter fullscreen mode Exit fullscreen mode

Una vez dentro ejecutamos el siguiente comando:

db.createUser(
{
user: "AQUI VA EL NOMBRE DEL USUARIO",
pwd: "AQUI VA LA CONTRASEÑA",
roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
}
)
Enter fullscreen mode Exit fullscreen mode

Ahora solo resta activar la opcion para que permita usar la contrasena para ello nos vamos a la configuracion de mongo

En el caso de mac debería de estar en

/usr/local/etc/mongod.conf
Enter fullscreen mode Exit fullscreen mode

en el caso de Ubuntu

/etc/mongodb.conf
Enter fullscreen mode Exit fullscreen mode

agregamos las siguientes lineas:

security:
  authorization:enabled 
Enter fullscreen mode Exit fullscreen mode

Posteriormente reiniciarmos el servicio de mongodb-community

en el caso de mac

brew services restart mongodb-community
Enter fullscreen mode Exit fullscreen mode

o

sudo systemctl restart mongod
Enter fullscreen mode Exit fullscreen mode

ahora para poder conectarnos ejecutamos el siguiente comando

mongodb://NOMBRE_DEL_USUARIO:CONTRASENA@localhost:27017/NOMBRE_DE_LA_BASE_DE_DATOS

Enter fullscreen mode Exit fullscreen mode

ESO ES TODO

LOS QUIERO

SALE BYE

db Article's
30 articles in total
Favicon
🛠️ DB Migration For Golang Services, Why it matters? 🐹
Favicon
MongoDb Atlas: manual backup and restore data
Favicon
Import the database from the Heroku dump
Favicon
Why MongoDB? Exploring the Benefits and Use Cases of a Leading NoSQL Database
Favicon
Database Pool Management with Sidekiq and load_async
Favicon
HyperGraphs In Relation Model
Favicon
ACID in DB
Favicon
Use EXISTS instead of COUNT > 0 when checking if records exist
Favicon
Converting MongoDB ObjectId to Timestamp in Snowflake: A Friendly Guide
Favicon
Level UP your RDBMS Productivity in GO
Favicon
Iniciar sesion en mongodb con usuario y contraseña | Mongodb
Favicon
DB POOL
Favicon
Exploring String Field Types in Databases: CHAR, VARCHAR, and TEXT
Favicon
How to connect to MySQL DB
Favicon
How to provision an AWS RDS MySQL Database
Favicon
Amazon RDS for MySQL
Favicon
Amazon Aurora
Favicon
Amazon RDS
Favicon
Understanding the Differences Between SQL and NoSQL Databases
Favicon
Advantages of Relational DB, Graph DB, and RGDB
Favicon
Understanding Foreign Keys in PostgreSQL
Favicon
What's behind scenes of PostgreSQL from Apache AGE?
Favicon
Spring Boot 3 with H2 database example
Favicon
Basic MongoDB Commands
Favicon
Guide to Apache AGE 1.3.0 Release for PostgreSQL 13
Favicon
Laravel useful DB/Eloquent functions:
Favicon
Docker/DB - Isn't it better to set share directory between host and db container?
Favicon
Alojar Wordpress en la nube (Google Cloud)
Favicon
IceFireDB:A database that supports IPFS storage and Redis protocol, interesting direction.
Favicon
MongoDB Complete Backup And Restore Command With Atlas

Featured ones: