
Ginkgo is a great framework for structuring your…
Redis
It took me a while to find the answer so I thought this could be helpful for you guys.
redis-cli --raw KEYS '*' | xargs redis-cli MIGRATE my.redis 6379 "" 0 5000 AUTH password-here KEYS
All credits go to this post in stackoverflow: https://stackoverflow.com/questions/37166947/copying-all-keys-in-redis-database-using-migrate
Thank you!
“SCRAM_SHA-1” so how to fix it.

- Before command
mongoexport --uri=mongodb://account:password@domain:port/db --collection collection_name --out output.json2021-11-20T17:04:01.983+0700 could not connect to server: connection() error occured during connection handshake: auth error: sasl conversation error: unable to authenticate using mechanism "SCRAM-SHA-1": (AuthenticationFailed) Authentication failed.
- After command and it works
mongoexport --uri=mongodb://account:password:port/db --collection collection_name --authenticationDatabase admin --out output.json…