$ ssh -l postgres 200.34.22.75
[email protected]'s password:
Linux localhost 4.9.0-9-amd64 #1 SMP Debian 4.9.168-1 (2019-04-12) x86_64
// 使用 ssh 在远程 PostgreSQL 服务器上以 PostgreSQL 超级用户 “postgres”身份登录 (Linux)
root@localhost:~# su - postgres
// 以 PostgreSQL 超级用户 “postgres” 身份登录 (Linux)
postgres@localhost:~$ psql
psql (9.6.12)Type "help" for help.postgres=#
// 通过 “psql” 客户端进入 PostgreSQL 命令行 (psql)
\c test
You are now connected to database "test" as user "postgres".
// 以 “postgres” 用户身份连接到 PostgreSQL 数据库 “test” (psql)
$ psql -V
psql (PostgreSQL) 9.6.12
// 检查 psql 客户端版本 (psql)
select version();
version
-----------------------------------------------------------------------------------------------------------
PostgreSQL 9.6.12 on x86_64-pc-linux-gnu, compiled by gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516, 64-bit
(1 row)
// 检查 Postgres 服务器版本 (SQL)