06 May 2019 01:18 PM - last edited on 18 May 2023 04:34 PM by Michal_Gebacki
I want to configure the Dynatrace MongoDB plugin but it requires a valid username & password. Does anyone have an idea of what that is for a vanilla EaysTravel install, or is it something one would have to custom set up?
Solved! Go to Solution.
06 May 2019 01:55 PM
HI Andre,
Do you have a MongoDB instance running that you will like to feed data into Dynatrace from? Dynatrace needs the credentials for this instance to pull the metrics.
Thanks
NJ
06 May 2019 08:09 PM
Hi @Ugochukwu N. yes I have easyTravel running (Docker) and there is a valid MongoDB instance associated with it - I'm looking for the default credentials for that MongoDB instance.
06 May 2019 08:37 PM
I also found those articles but I assumed someone might've done this on the easyTravel Docker system already - thanks for the help, off I go to fiddle with this some more 🙂
06 May 2019 09:33 PM
This might be a clue.
C:\Program Files\Dynatrace\easyTravel (x64)\resources\easyTravelConfig.properties:
# MongoDB Authentication parameters
#################################################################################
config.mongoDbUser=labuser
config.mongoDbPassword=labpass
config.mongoDbAuthDatabase=admin
07 May 2019 10:56 AM - edited 02 Jul 2023 09:57 PM
I always forget about that file, thanks @Dave M. 🙂
Note: I had to expose the MongoDB port to the Docker host before the plugin connection tested and saved successfully.
The command I used to expose the port:
docker run -d -p 27017:27017 dynatrace/easytravel-mongodb
07 May 2019 12:02 PM - edited 02 Jul 2023 09:54 PM