Security is very important in production deployment, so i was
wondering if is there some option in mongodump for protecting the
credentials?
For instance, this is a normal use of mongodump:
./mongodump --host
dbh46.excelsys.com --db mydb --collection user -u
userbank -p secretpass
In this case we expose username and password, that's not good.
Is there something like this?--->
http://blog.gazzang.com/blog/bid/
87472/Running-a-Secure-Encrypted-MySQL-Backup-Using-mysqldump-on-Linux
where the credentials are encrypted and a file is used as follow:
mysqldump –defaults-extra-file=/home/mfrank/protectedlogin.cnf –all-
databases
I would like to schedule the backups, so it's important to us protect
the credentials.
Thanks