I had redis installed without password. Then I tried to put password without success and decided to delete all related to redis from my server. After that, I've installed redis once again and set a password successfully. The problem is that now is creating a new database and not reading from the old one. I am running the same command from sabe directory. $~/ redis-server
I've also tried to check if is generating a new dump.rdb file with:
find / -type f -name "*.rdb"
But is only finding my correct dump.rdb
file that I'd like to use.
Is there a way to import my last database to this new one? Or, Is there a way to start my server using the correct dump.rdb
file?