How to export from Redis to MongoDB? (My database got wiped)
-
You're going to have to help us out here, there is a lot of variability in how to install various parts of nodebb, being hand wavy and saying "it doesn't work" helps no one.
- what provider are you on?
- what versions of nodebb and redis?
- are you using nginx? Do you have ports open to the db from the outside world?
- can you give logs from the database / nodebb / system?
Etc. etc.
-
No Nginx or Apache... I find that hard to beleave. Are you running NodeBB on port 80?
-
If there are really no logs it makes me think you might have forgotten to turn a config off, something that would have the database written to disk every once in a while. Did you import a community by any chance?
-
@BDHarrington7 said:
If there are really no logs it makes me think you might have forgotten to turn a config off, something that would have the database written to disk every once in a while. Did you import a community by any chance?
There are logs but nothing useful. They just stop before the crash happened.
Several months ago I imported messages from SMF but that's it.
-
@Pilvinen I encountered a similar issue as yours. The logs showed no problem at all nor NodeBB ones as it is not the softwares fold.
This issue is 100% related to a config issue as it showed out for me.First of all, are you sure that Redis hat R/W access to the directory /var/lib/redis and its files?
Yes. -> Post config file.
No. -> chown -R redis:redis /var/lib/redis -
Of course it has write access there, I've been running the forums for many months and I have taken backups along the way every now and then and the dump.rdb has been alive and well.
When the crash happened -> dump.rdb was suddenly 4 bytes in size instead of the usual ~13 mb.
Which config do you wish to see? /etc/redis/redis.conf?
It's 100% default except now after the second crash I switched appendonly to yes, ie. I'm now using appendonly.aof + dump.rdb both.
Do you still want to see it ... ?
-
We want to see all the configs!
-
Here is /etc/redis/redis.conf:
http://pastie.org/private/rehppriwl3yfgcmkk4gtqAnd it would be a lot more productive to say exactly which configs instead of "all of them" since I'm not power user - I don't know what you're talking about.
Like I said I have default settings except those which I've configured through ACP.
So tell me the config file names and paths and I'll see what I can pull up.
-
@Pilvinen I hope you have a password for Redis...
Otherwise I haven't found any issue.What you can also try is the following:
service redis-server stop
apt-get remove redis*
apt-get purge redis*apt-get install redis-server
So you have a fresh reinstall.
-
@AOKP said:
@Pilvinen I hope you have a password for Redis...
Otherwise I haven't found any issue.Well, since you can only connect to the database from the local machine I don't really see the point. If someone would compromise my system so far that they have access to the server's account then password protecting the database wouldn't really help at that point.
-
If there's no firewall it's completely possible
-
Hi @Pilvinen
I hope you didn't
purge
redis, already. That could have deleted the log file, as well.I'm curious about the contents of two files:
- /var/log/redis/redis-server.log
- /path/to/nodebb/log/nodebb.log
Like all the others, I suspect redis itself to be the source of failure here. NodeBB uses the DB's
flush
(wipe all data) only in its tests; even there on a test-databse you'd have to set up explicitly.