OpenMetadata/openmetadata-docs/content/partials/v1.1.2/deployment/postgresql-issue-permission-denied-extension-pgcrypto.md
Pere Miquel Brull 6e2fb1eca7
[Docs] - 1.1.2 Release (#12977)
* Prep 1.1.2 docs and remove 1.1.1

* Prep 1.1.2 release pages

* add missing links in menu.md

---------

Co-authored-by: Aniket Katkar <aniketkatkar97@gmail.com>
2023-08-25 08:49:58 +02:00

19 lines
671 B
Markdown

If you are facing the below issue with PostgreSQL as Database Backend for OpenMetadata Application,
```
Message: ERROR: permission denied to create extension "pgcrypto"
Hint: Must be superuser to create this extension.
```
It seems the Database User does not have sufficient privileges. In order to resolve the above issue, grant usage permissions to the PSQL User.
```sql
GRANT USAGE ON SCHEMA schema_name TO <openmetadata_psql_user>;
GRANT CREATE ON EXTENSION pgcrypto TO <openmetadata_psql_user>;
```
{%note%}
In the above command, replace `<openmetadata_psql_user>` with the sql user used by OpenMetadata Application to connect to PostgreSQL Database.
{%\note%}