- nodejs 6+
- screeps 2.10+
- mongodb
- redis
- Ensure both mongodb and redis are already installed and running
npm install screepsmod-mongo
inside your server's mods folder- Start server!
- DB Population
mongo.importDB()
in the screeps cli imports your existing DBsystem.resetAllData()
in the screeps cli for a completely fresh DB
- Once done restart the server
- Done!
With this mod installed you can continue to manage the server as usual, all CLI commands still function and bahave functionally identical. The original storage module will still run, but is completely ignored.
Keep in mind that RAM requirements are slightly higher, by default mongo uses 50% - 1G of your system RAM. Redis on the other hand, uses very little.
Mongo and Redis CLIs can be used to see and modify the data as usual, backups and restores should be done via normal mongo and redis tools.
https://docs.mongodb.com/manual/tutorial/backup-and-restore-tools/
https://redis.io/topics/persistence
All options and defaults are listed below
- host: localhost
- port: 27017
- database: screeps
- host: localhost
- port: 6379
Config can be applied in several ways:
Add to the bottom of your .screepsrc file
[mongo]
host = 192.168.0.222
[redis]
host = 192.168.0.222
Please note that this method only works when launching modules directly, when launched via the default launcher they will be ignored.
MONGO_HOST='192.168.0.222'