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
Copy file name to clipboardExpand all lines: apps/docs/content/postgresql/how-to/manage.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,14 +114,18 @@ You can list all available PostgreSQL plugins by running the following query *(s
114
114
SELECT*FROM pg_available_extensions ORDER BY name;
115
115
```
116
116
117
-
To install plugins, you must **connect as a superuser** (`postgres`) and run the appropriate CREATE EXTENSION command. For example:
117
+
To install plugins, you must **connect as a superuser** (see note below) and run the appropriate CREATE EXTENSION command. For example:
118
118
119
119
```sql
120
120
CREATE EXTENSION pg_stat_statements;
121
121
CREATE EXTENSION vector;
122
122
CREATE EXTENSION postgis;
123
123
```
124
124
125
+
:::info Superuser Credentials
126
+
The PostgreSQL superuser credentials can be found in the `superUser` and `superUserPassword` environment variables of your PostgreSQL service.
127
+
:::
128
+
125
129
:::warning
126
130
Currently, it is not possible to add new plugins that are not already listed in `pg_available_extensions`.
127
131
:::
@@ -170,4 +174,4 @@ unaccent.rules
170
174
```
171
175
</DropdownItem>
172
176
</Dropdown>
173
-
For more information on text search dictionaries, refer to the [PostgreSQL documentation](https://www.postgresql.org/docs/16/textsearch-dictionaries.html).
177
+
For more information on text search dictionaries, refer to the [PostgreSQL documentation](https://www.postgresql.org/docs/16/textsearch-dictionaries.html).
0 commit comments