Appsmith runs it's own instances of MongoDB database for storing all application data, and Redis for storing session information. It's easy to switch to externally running instances of these services, by just changing the relevant environment variables.
To point to a custom MongoDB, update the env variable called APPSMITH_MONGODB_URI
to point to your custom MongoDB server. For example, if you are using MongoDB Cloud, you can change this to something like the following:
APPSMITH_MONGODB_URI=mongodb+srv://<username>:<password>@mongo.host.name/databasename
The exact URI to be set here can be obtained from MongoDB Cloud's web interface.
Note that to use a MongoDB database with Appsmith, replicaSet needs to be configured on the database. This can be done by connecting to the database as admin, and running rs.initiate()
. If you are using MongoDB Cloud, this is always done for you.
To use a custom Redis with Appsmith, please change the env variable APPSMITH_REDIS_URL
. For example,
APPSMITH_REDIS_URL=redis://hostname:6379
Please remember to restart the Appsmith instance to apply the changes.