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

CentOS

インストール手順

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

 

 

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 postgresql11-server

 

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

# systemctl enable postgresql-11

 

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

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

 

5.PostgreSQL11の起動

# systemctl start postgresql-11

 

6.サービス状態の確認

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

# systemctl status postgresql-11

 

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

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

# su - postgres
# psql -l

 

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