centos9 pgadmin4をインストールする

centos9 pgadmin4をインストールする

centos9に、pgadmin4をインストールするまでの手順です。「リポジトリ」を追加してから「dnf」でインストールすぐに作業は終わります。ディスクトップだけやWEBのみをだけを指定してインストールすることも可能です。

環境

  • OS CentOS Stream release 9

pgAdmin4インストール

まずは、リポジトリを追加します。

$ sudo rpm -i https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-redhat-repo-2-1.noarch.rpm

追加が終われば、インストールします。

$ sudo dnf install pgadmin4

<デスクトップ版のみは以下>
$sudo yum install pgadmin4-desktop

<Webのみは以下>
$sudo yum install pgadmin4-web

pgAdmin4設定

シェルを実行して「pgAdmin」を利用できるよう設定していきます。ログイン用のアドレスやパスワードを設定します。
※パスワードは6文字以上必要です。

$ sudo /usr/pgadmin4/bin/setup-web.sh

Setting up pgAdmin 4 in web mode on a Redhat based platform...
Creating configuration database...
NOTE: Configuring authentication for SERVER mode.

Enter the email address and password to use for the initial pgAdmin user account:

Email address: foo@foo.com
Password: 
Retype password:
Password must be at least 6 characters. Please try again.
Password: 
Retype password:
pgAdmin 4 - Application Initialisation
======================================

Creating storage and log directories...
Configuring SELinux...
The Apache web server is running and must be restarted for the pgAdmin 4 installation to complete. Continue (y/n)? y

pgAdmin4アクセス

ブラウザから「http://プライベートIP or サーバーアドレス/pgadmin4」にアクセスします。

さきほど作成した「ログインID」と「パスワード」を入力してログインします。

これで構築は完了です。