CentOS 7.9にPostgreSQL11.14をインストールする
環境
# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)
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 Created symlink from /etc/systemd/system/multi-user.target.wants/postgresql-11.service to /usr/lib/systemd/system/postgresql-11.service.
4.データベースを作成します
# /usr/pgsql-11/bin/postgresql-11-setup initdb Initializing database ... OK
5.PostgreSQL11の起動
# systemctl start postgresql-11
PostgreSQL11の停止
# systemctl stop postgresql-11
PostgreSQL11のサービス状態の確認
# systemctl status postgresql-11 ● postgresql-11.service - PostgreSQL 11 database server Loaded: loaded (/usr/lib/systemd/system/postgresql-11.service; enabled; vendor preset: disabled) Active: active (running) since 水 2021-12-29 13:22:28 JST; 1min 1s ago
6.データベース一覧を確認します
# su – postgres
-bash-4.2$ psql -l
7.PostreSQLバージョンを確認します
# psql -V
psql (PostgreSQL) 11.14