# Шаблон
psql -h <hostname> -p <port> -U <username> -d <database>
# Подключение
psql -h localhost -p 5432 -U postgres -d postgres
# Шаблон
psql postgresql://<username>:<password>@<hostname>:<port>/<database>
# Подключение
psql postgresql://postgres:postgres@localhost:5432/postgres