Skip to content

Commit 9c15646

Browse files
Add db name to psql command
Without the database name, the psql command returns: `psql: FATAL: database "matt" does not exist.` The required command is "psql testpython", as shown (subtly) in the image below the edited line.
1 parent 47a2e39 commit 9c15646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/posts/160518-install-postgresql-python-3-ubuntu-1604.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The `psql` command line client is useful for connecting directly to our
9292
PostgreSQL server without any Python code. Try out `psql` by using this
9393
command at the prompt:
9494

95-
psql
95+
psql testpython
9696

9797
The PostgreSQL client will connect to the localhost server. The client is
9898
now ready for input:

0 commit comments

Comments
 (0)