@girish Ah yes, sorry. Should've looked. At least maybe this will direct someone to the docs if they end up here again.
Latest posts made by kaxline
-
RE: Import data from another installation
-
Sish (ngrok alternative)
Re: Inlets (ngrok alternative)
https://github.com/antoniomika/sish
I haven't played with this myself, but I think some sort of ngrok alternative on Cloudron would be amazing. I'm not particular to which project or what kind of implementation -- I leave that to smarter people. Just wanted to give my vote for either Inlets or Sish, or a better alternative.
Has anyone heard of a more established solution that people seem to be rallying behind?
-
RE: Import data from another installation
I'm running into a different issue here where I'm able to run the mongo shell, but
mongorestore
can't find the instance.This works:
mongo -u "${CLOUDRON_MONGODB_USERNAME}" -p "${CLOUDRON_MONGODB_PASSWORD}" ${CLOUDRON_MONGODB_HOST}:${CLOUDRON_MONGODB_PORT}/${CLOUDRON_MONGODB_DATABASE}
This doesn't:
mongorestore -u "${CLOUDRON_MONGODB_USERNAME}" -p "${CLOUDRON_MONGODB_PASSWORD}" -h ${CLOUDRON_MONGODB_HOST} -p ${CLOUDRON_MONGODB_PORT} -d ${CLOUDRON_MONGODB_DATABASE} /tmp/rocketchat_backup
It gives the message:
Failed: error connecting to db server: server returned error on SASL authentication step: Authentication failed.
Any ideas on what I'm doing wrong? I tried
rs.initiate()
from inside the shell, but my user doesn't have permissions to run any commands. Can't even doshow dbs
.Thanks!