You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi Atlassian,
I am trying to create a confluence database in Aurora Postgresql and I am getting this error
postgres=> create role confluenceuser with password 'secret' login;
CREATE ROLE
postgres=> create database confluence with encoding 'utf-8' lc_collate 'en_US.utf8' LC_CTYPE 'en_US.utf8' TEMPLATE template0 owner confluenceuser;
ERROR: must be member of role "confluenceuser"
Any suggestion on what I am doing wrong? I am trying to follow this link https://confluence.atlassian.com/doc/database-setup-for-postgresql-173244522.html
Thanks,
Asif
Here is a guide to creating a postgresql user.
Our issue was adding ownership of the database to a user and that was failing.
We found a fix. So create the database without the owner. And then alter the database to the owner. That worked.
postgres=> create database confluence with encoding 'utf-8' lc_collate 'en_US.utf8' LC_CTYPE 'en_US.utf8' TEMPLATE template0;
CREATE DATABASE
postgres=> alter database confluence owner to confluenceuser;
ALTER DATABASE
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.