MongoDump / Mongo database backup
To export mongo database Run this command in system command line not the mongo shell You may get this error if you don’t have correct permission to export database in that directory To avoid...
To export mongo database Run this command in system command line not the mongo shell You may get this error if you don’t have correct permission to export database in that directory To avoid...
Step 1: Open Mongo Shell Step 2: To open existing db Step 3: To create new db Step 4: shows all existing dbs Step 5: Insert new row in mynewdb Step 6: List all...
.net / Authentication / JWT / mongodb
Step 1: Create .net core auth project Step 2: Add Microsoft.AspNetCore.Authentication.JwtBearer and mongodb package Step 3: Create Model UserDetails Step 4: Create Model Auth Step 5: Create IMongoDbData interface Step 6: Create MongoDbData class...
.net / Authentication / JWT / mongodb
Today almost all company try to use JWT authentication to exchange information between services. Each company use different approach to protect their data. 1. Symmetric JWT Signing2. Asymmetric JWT Signing In Symmetric JWT Signing...