Installing PostgreSQL Client v10 on AWS Amazon Linux (EC2) AMI

前端 未结 11 963
臣服心动
臣服心动 2021-01-30 21:12

I have successfully launched new AWS RDS PostgreSQL v10 instance and need to install PostgreSQL v10 client on Amazon Linux EC2 instance.

I have tried to install

11条回答
  •  生来不讨喜
    2021-01-30 21:53

    PSql10.7 installation (08/20/2019)

    Remove all of the older version Psql client and perform the below steps:

    wget https://yum.postgresql.org/10/redhat/rhel-6.9-x86_64/postgresql10-libs-10.7-1PGDG.rhel6.x86_64.rpm
    wget https://yum.postgresql.org/10/redhat/rhel-6.9-x86_64/postgresql10-10.7-1PGDG.rhel6.x86_64.rpm
    sudo rpm -ivh postgresql10-libs-10.7-1PGDG.rhel6.x86_64.rpm
    sudo rpm -ivh postgresql10-10.7-1PGDG.rhel6.x86_64.rpm
    

提交回复
热议问题