According to MongoDB Backup manual, mongodump is a very handy tools for MongoDB administrator to backup and restore full mongodb cluster or single database or single collection. mongodump usage Here is a very simple command to take backup or restore mongodb system. Backup sudo mongodump --host hostName -d databaseName --port portNumber --username userName --password passWord --out directoryLocation with the above command you can take backup of your database. I don’t need to explain all parameters as I wrote variable name …
Category: General
If you have a MikroTik router, then it’s sometimes difficult to create simple queue with one by one IP address. It’s a difficult task. Also if you need to change bulk IP address in the queue, it sounds more terrific. So I wrote this article to make your life easier to maintain your MikroTik router easily. To add all IPs in your MikroTik Simple queue, just open your MikroTik RouterOS terminal and run the following script. What is MikroTik Script? …
Since I started to planning international tour, it was little bit hard to get foreign country visa in your blank passport. So I planned to go to India first to kick the pain of blank passport. And here it is how I achieved and explored Kolkata, India. I had a very good relationship with United Consultancy & Tours who arrange your India Visa Application with e-Token and prepare papers for other country visa as well. Recent days it takes a …
I guess, you want to make your Ubuntu server UP & running within few minutes with one click that will install all the essential packages for your web server. I created the following script that you can run right after installing your Ubuntu OS in your machine. I tested this script over Ubuntu 14.04 LTS and nGinx as web server. I created the following shell script for (a) Installing Common packages, (b) Configuring Virtual Host You just need to run …
Case Scenario Want to prevent default HTML form submission behavior and want to post form data via jquery & ajax to any URL. Solution Very simple solution. just with e.preventDefault() prevent default form submission and write down the following jquery code and enjoy! Thanks. Post a comment if you face any problem.