Here is my vault.config file.
ui = true
backend "postgresql" {
connection_url = "postgres://user:pwd@192.168.1.1:5432/vault?sslmode=disable"
}
listener "tcp" {
address = "0.0.0.0:8200"
tls_disable = 1
}
disable_mlock = true
I have also created table vault_kv_store and vault_ha_locks under public schema in the vault database as per vault storage doc.
We need help to fix this problem.
Thank You.