【CentOS】CentOS 7にPostgreSQL12をインストールする

CentOS

インストール手順

CentOS 7にPostgreSQL12をインストールする手順を紹介します。

 

 

1.PostgreSQLのリポジトリパッケージをインストールする

# yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

 

2.PostgreSQLのインストール

# yum -y install postgresql12-server

 

3.サービスの自動起動を設定する

# systemctl enable postgresql-12

 

4.データベースクラスタを作成

# /usr/pgsql-12/bin/postgresql-12-setup initdb

 

5.PostgreSQL12の起動

# systemctl start postgresql-12

 

6.サービス状態の確認

Active : active( running )となっていることを確認する

# systemctl status postgresql-12

 

7.データベースの一覧を取得する

動作チェックとしてデータベースの一覧を取得します。

# su - postgres
# psql -l

 

以上、PostgreSQL12のインストール手順です。