如何下载linux客户端(psql)
-
MemFire兼容PostgreSQL11,所以常用的用来管理数据库的工具,也可以用来管理MemFire,psql是postgresql原生的客户端命令行工具,在linux环境下简单易用。下面介绍如何安装:
安装yum源
rpm -Uvh https://yum.postgresql.org/11/redhat/rhel-7-x86_64/postgresql11-libs-11.14-1PGDG.rhel7.x86_64.rpm rpm -Uvh https://yum.postgresql.org/11/redhat/rhel-7-x86_64/postgresql11-11.14-1PGDG.rhel7.x86_64.rpm
安装psql客户端
yum -y install postgresql11
测试连接
psql -h $PG_HOST -p $PG_PORT -U $PG_USER -d $DB_NAME Password for user wms: # enter the password