Related Topics
3. Shell comparison operator & reference
CommandDescriptionExample&Run the previous command in the backgroundls &&&Logical ANDif [ “$X” -ge “0” ] && [ “$X” -le “9”]||Logical ORif [ “$X” -lt “0” ] || [ “$X” -gt “9” ]^Start of linegrep “^X”$End of linegrep “X$”=String equality (cf. -eq)if Continue reading3. Shell comparison operator & reference→
MongoDB installation and upgradation in Ubuntu
Installation of MongoDB is not my goal, while installation mongodb on ubuntu we need to remember that, It should be easily upgraded to its latest version. In this article, 1. How do you easily install mongodb in your ubuntu and Continue readingMongoDB installation and upgradation in Ubuntu→
MongoDB performance tuning
I have faced many projects which are facing performance issue with MongoDB and I do call for tuning up the performance. What I do apparently in a quick succession, that I listed below the steps. Hardware Resource Firstly, quantify already Continue readingMongoDB performance tuning→
MongoDB Collection-Level Access Control
MongoDB has RBAC (Role Based Access Control) enabled that we all know. Different teams having integration with their separate collection, we might have to create collection specific access control by defining userDefine Role. How to create user define role and Continue readingMongoDB Collection-Level Access Control→
MongoDB export (mongoexport) using aggregation
When we are thinking for exporting data in csv, tsv or json format from MongoDB then probably one tool we are using that is mongoexport. This is pretty straight forward and setting up all parameters will get back your desired Continue readingMongoDB export (mongoexport) using aggregation→
Suggestions