You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deploying REANA on an external DB system admins might not have permissions to create the __reana schema
Possible solutions to be documented
Grant schema creation privilege
$ pgcli -h reana.external.db -p 6666 -U admin reanareanaqa> GRANT CREATE ON DATABASE reana TO reana;
Create schema manually with admin user
$ pgcli -h reana.external.db -p 6666 -U admin reana
reanaqa> CREATE SCHEMA __reana
reanaqa> GRANT ALL ON SCHEMA __reana TO postgres;
reanaqa> GRANT ALL ON SCHEMA __reana TO public;
When deploying REANA on an external DB system admins might not have permissions to create the
__reana
schemaPossible solutions to be documented
Stems from reanahub/reana-db#81.
The text was updated successfully, but these errors were encountered: