连接到 Postgres
# 切换到postgres用户并连接postgres
sudo -u postgres psql postgres
# 使用my_username用户连接到my_database
psql -d my_database -U my_username
June 22, 2022Less than 1 minute
# 切换到postgres用户并连接postgres
sudo -u postgres psql postgres
# 使用my_username用户连接到my_database
psql -d my_database -U my_username