Hello.
I've added kaui.db.adapter=postgresql to my config file and then I was able to get the authentication dialog. However, when I entered default credentials, I've got "We're sorry, but something went wrong." error.
There are some errors in kaui.out, in particular this one:
KillBillClient::API::InternalServerError (<!doctype html><html lang="en"><head><title>HTTP Status 500 – Internal Server Error</title><style type="text/css">body {font-family:Tahoma,Arial,sans-serif;} h1, h2, h3, b {color:white;background-color:#525D76;} h1 {font-size:22px;} h2 {font-size:16px;} h3 {font-size:14px;} p {font-size:12px;} a {color:black;} .line {height:1px;background-color:#525D76;border:none;}</style></head><body><h1>HTTP Status 500 – Internal Server Error</h1><hr class="line" /><p><b>Type</b> Exception Report</p><p><b>Message</b> org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException: org.postgresql.util.PSQLException: ERROR: permission denied for sequence sessions_record_id_seq [statement:"create", located:"insert into sessions (</p><p><b>Description</b> The server encountered an unexpected condition that prevented it from fulfilling the request.</p><p><b>Exception</b></p><pre>javax.servlet.ServletException: org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException: org.postgresql.util.PSQLException: ERROR: permission denied for sequence sessions_record_id_seq [statement:"create", located:"insert into sessions (
id
, start_timestamp
, last_access_time
, timeout
, host
, session_data
) values (
:id
, :startTimestamp
, :lastAccessTime
, :timeout
, :host
, :sessionData
);", rewritten:"insert into sessions (
id
, start_timestamp
, last_access_time
, timeout
, host
, session_data
) values (
?
, ?
, ?
, ?
, ?
, ?
);", arguments:{ positional:{}, named:{recordId:null,sessionData:[-84, -19, 0, 5, 115, 114, 0, 17, 106, 97, 118, 97, 46, 117, 116, 105, 108, 46, 72, 97, 115, 104, 77, 97, 112, 5, 7, -38, -63, -61, 22, 96, -47, 3, 0, 2, 70, 0, 10, 108, 111, 97, 100, 70, 97, 99, 116, 111, 114, 73, 0, 9, 116, 104, 114, 101, 115, 104, 111, 108, 100, 120, 112, 63, 64, 0, 0, 0, 0, 0, 0, 119, 8, 0, 0, 0, 16, 0, 0, 0, 0, 120],lastAccessTime:DateTimeArgument{value=2021-05-18T14:23:49.210Z},host:'127.0.0.1',id:'524e57fc-4fb5-4b2f-b2dc-d91d40e2ca5c',class:class org.killbill.billing.util.security.shiro.dao.SessionModelDao,startTimestamp:DateTimeArgument{value=2021-05-18T14:23:49.210Z},timeout:3600000}, finder:[]}]
Is there something wrong with my postgresql configuration?