AdminLogin After Install

Hello,
i have tried to manual install of Billrun on 3 times on ubuntu server.
installation was runing well without any issues.

the problem is that login to ui with admin account is impossible.

billrun log:
Error message: Failed to parse MongoDB URI: ‘mongodb://’. Invalid host string in URI.

Maybe check if MongoDB is running?

Mongodb is running well.
security:
authorization: enabled

Hello @omrec,

Seems like you didn’t configure the db connection in the configuration files. you can find them in //conf/(prod|test|dev).ini
the actual file you will use will depend on the APPLICATION_ENV environment variable whuch can be prod/dev/test/etc… co responding with the configuration file.

the needed db configuration should be something like this :

db.host=mongodb_host
db.port=mongodb_port
db.user=mongodb_application_user
db.password=user_db_password
db.name=dbname
db.options.connect=1
....