Yedidyah Bar David has uploaded a new change for review. Change subject: packaging: engine-backup: align db creation instructions with dwh ......................................................................
packaging: engine-backup: align db creation instructions with dwh Replace 'create user' with 'create role'. Also add a missing quote. Change-Id: Id11a2746ced31a2731a8f8d76a29b3ea4b6a5478 Bug-Url: https://bugzilla.redhat.com/1040572 Signed-off-by: Yedidyah Bar David <[email protected]> --- M packaging/bin/engine-backup.sh 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/63/24463/1 diff --git a/packaging/bin/engine-backup.sh b/packaging/bin/engine-backup.sh index 4aea0ad..01a931a 100755 --- a/packaging/bin/engine-backup.sh +++ b/packaging/bin/engine-backup.sh @@ -76,9 +76,9 @@ To create a new user/database: - create user <user> password '<password>'; + create role <user> with login encrypted password '<password>'; create database <database> owner <user> template template0 - encoding 'UTF8' lc_collate 'en_US.UTF-8 lc_ctype 'en_US.UTF-8'; + encoding 'UTF8' lc_collate 'en_US.UTF-8' lc_ctype 'en_US.UTF-8'; Open access in the firewall/iptables/etc. to the postgresql port, 5432/tcp by default. -- To view, visit http://gerrit.ovirt.org/24463 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id11a2746ced31a2731a8f8d76a29b3ea4b6a5478 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.4 Gerrit-Owner: Yedidyah Bar David <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
