mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-14 17:50:21 +00:00
Merge pull request #642 from ninoppp/patch-2
Fix migration doc by changing PGDP_PASS to PG_PASSWORD
This commit is contained in:
commit
09c0e435ff
1 changed files with 2 additions and 2 deletions
|
|
@ -36,13 +36,13 @@ The procedure for migrating the files and the database works like this:
|
||||||
export PG_PASSWORD="my-temporary-password"
|
export PG_PASSWORD="my-temporary-password"
|
||||||
export PG_DATABASE="nextcloud_db"
|
export PG_DATABASE="nextcloud_db"
|
||||||
sudo -u postgres psql <<END
|
sudo -u postgres psql <<END
|
||||||
CREATE USER $PG_USER WITH PASSWORD '$PGDB_PASS';
|
CREATE USER $PG_USER WITH PASSWORD '$PG_PASSWORD';
|
||||||
CREATE DATABASE $PG_DATABASE WITH OWNER $PG_USER TEMPLATE template0 ENCODING 'UTF8';
|
CREATE DATABASE $PG_DATABASE WITH OWNER $PG_USER TEMPLATE template0 ENCODING 'UTF8';
|
||||||
END
|
END
|
||||||
```
|
```
|
||||||
1. Run the following command to start the conversion:
|
1. Run the following command to start the conversion:
|
||||||
```
|
```
|
||||||
occ db:convert-type --all-apps --password "$PGDB_PASS" pgsql "$PG_USER" 127.0.0.1 "$PG_DATABASE"
|
occ db:convert-type --all-apps --password "$PG_PASSWORD" pgsql "$PG_USER" 127.0.0.1 "$PG_DATABASE"
|
||||||
```
|
```
|
||||||
**Please note:** You might need to change the ip-address `127.0.0.1` based on your exact installation.<br>
|
**Please note:** You might need to change the ip-address `127.0.0.1` based on your exact installation.<br>
|
||||||
Further information on the conversion is additionally available here: https://docs.nextcloud.com/server/stable/admin_manual/configuration_database/db_conversion.html#converting-database-type
|
Further information on the conversion is additionally available here: https://docs.nextcloud.com/server/stable/admin_manual/configuration_database/db_conversion.html#converting-database-type
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue