-
Controller Versionv5.15.6.7 Describe Your Issue or QuestionAs called out in the README, if you want custom certificates to be used that are mounted into your Container, you should NOT use the UI to install cerificates. For those (myself included) that did not pay attention, how can this be undone? Expected BehaviorA guide to explain how to uninstall certificates installed via UI would be nice 😄 Steps to Reproduce
How You're Launching the Container
Container Logs
MongoDB Logs
Additional ContextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I posted the above discussion, so I could also provide my answer! If certificates have been installed using the Omada Controller UI, they are (as documented here) stored in the MongoDB. To resolve this, we need to adjust some contents in the MongoDB Database, and restart the Omada Controller container. Here's what I did...
That's it - Omada Controller now respects the certificates I mount into the container (which I auto renew with |
Beta Was this translation helpful? Give feedback.
I posted the above discussion, so I could also provide my answer!
If certificates have been installed using the Omada Controller UI, they are (as documented here) stored in the MongoDB.
To resolve this, we need to adjust some contents in the MongoDB Database, and restart the Omada Controller container.
Here's what I did...
omada-controller
with the name of your container:docker exec -it omada-controller /bin/bash
apt-get update
mongodb-clients
so we can connect to the MongoDB Database:apt-get install mongodb-clients
We can now con…