From c5fc4e69059298cfeaef7d0531e508b1ad421eb0 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Mon, 30 Aug 2021 11:03:35 +0300 Subject: [PATCH] Fix instructions in README.md on how to start psql Commit c4b2bf7ebd changed the bootstrap superuser name. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0126dcfbd5..38379b176b 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ main 127.0.0.1:55432 0/1609610 running 4. Now it is possible to connect to postgres and run some queries: ```text -> psql -p55432 -h 127.0.0.1 postgres +> psql -p55432 -h 127.0.0.1 -U zenith_admin postgres postgres=# CREATE TABLE t(key int primary key, value text); CREATE TABLE postgres=# insert into t values(1,1); @@ -97,7 +97,7 @@ waiting for server to start.... done # this new postgres instance will have all the data from 'main' postgres, # but all modifications would not affect data in original postgres -> psql -p55433 -h 127.0.0.1 postgres +> psql -p55433 -h 127.0.0.1 -U zenith_admin postgres postgres=# select * from t; key | value -----+-------