How to connect to the mango database (for resetting admin password)?
-
I've got the Web Console running (sudo)
Web Console server running at http://127.0.1.1:8081 (others can connect)
But it cannot find the DB. The path is correct, there is a
/opt/mango/databases/mah2.199.h2.db
-
@till When using this tool it is best to use an absolute path to the database and also note it doesn't want the extension. So on my system the file in the Mango databases folder is named
mah2.200.mv.db
So the URL I'm using is:
jdbc:h2:/opt/mango/databases/mah2.200
-
@terrypacker Cool that works. Removing both .h2 and .db was the key. I'll
Thanks