MongoDB Community Server
Setting up a MongoDB Community Server for your IntelliAsk database.
Download MongoDB Community Server
- Go to the official MongoDB website: https://www.mongodb.com/try/download/community
- Select your operating system and download the appropriate package.
Install MongoDB Community Server
Follow the installation instructions for your operating system to install MongoDB Community Server.
Create a Data Directory
MongoDB requires a data directory to store its data files. Create a directory on your system where you want to store the MongoDB data files (e.g., /path/to/data/directory).
Start the MongoDB Server
- Open a terminal or command prompt.
- Navigate to the MongoDB installation directory (e.g.,
/path/to/mongodb/bin). - Run the following command to start the MongoDB server, replacing
/path/to/data/directorywith the path to the data directory you created in the previous step:
Configure MongoDB for Remote Access (Optional)
If you plan to access the MongoDB server from a remote location (e.g., a different machine or a IntelliAsk instance hosted elsewhere), you need to configure MongoDB for remote access:
- Create a configuration file (e.g.,
/path/to/mongodb/config/mongodb.conf) with the following content:
- Stop the MongoDB server if it's running.
- Start the MongoDB server with the configuration file:
Get the Connection String
The connection string for your MongoDB Community Server will be in the following format:
Replace [hostname] with the IP address or hostname of the machine where MongoDB is running, and [port] with the port number (usually 27017).
Update the .env File
- In your IntelliAsk project, open the
.envfile. - Find the
MONGO_URIvariable and paste your connection string:
That's it! You've now set up a MongoDB Community Server for IntelliAsk. Your IntelliAsk application should be able to connect to the local MongoDB instance using the connection string you provided.
Note about Docker
Docker
Note: If you're using IntelliAsk with Docker, you'll need to utilize the docker-compose.override.yml file. This override file allows you to prevent the installation of the included MongoDB instance. Instead, your IntelliAsk Docker container will use the local MongoDB Community Server database you've just set up. For more information on using the override file, please refer to our Docker Override Guide.
Example:
Last updated on