查看香港云服务器的postgresl版本信息的方法:1.启动postgresql服务;2.登录postgresql数据库;3.执行命令查看版本信息;
具体步骤如下:
1.首先,在命令行中启动postgresql服务;
net start postgresql
2.postgresql服务启动后,在命令行中登录到postgresql数据库;
psql -h -U
3.登录到postgresql数据库后,在数据库中执行以下命令即可查看数据库的版本信息;
1)使用pg_ctl -V命令查看
pg_ctl -V
2)使用show命令查看
show server_version;
3)使用version()方法查看
select version();