EC2にPostgreSQL15のクライアントをインストールする方法を記録する。
下記のファイルを作成。
/etc/yum.repos.d/pgdg.repo
[pgdg15]
name=PostgreSQL 15 for Redhat Linux – x86_64
baseurl=https://download.postgresql.org/pub/repos/yum/15/redhat/rhel-7.10-x86_64
enabled=1
gpgcheck=0
その後、下記のコマンドを実行する。
sudo yum makecache
sudo yum repolist (ensure that pgdg15 shows as a repository)
sudo yum install libzstd
sudo yum –disablerepo=”*” –enablerepo=”pgdg15″ install postgresql15-15.3-1PGDG.rhel7 (To get postgres 15.3)
クライアントをインストールする。
sudo yum install postgresql15-server
接続
psql -h <hostname> -U <username> -d <database> -p <port>