GNU/Linux >> Linux の 問題 >  >> Ubuntu

Ubuntu 22.04 に pgAdmin をインストールする方法

この記事では、GlassFish を Ubuntu 22.04 LTS にインストールするために必要な手順を説明しました。このチュートリアルを続行する前に、sudo を持つユーザーとしてログインしていることを確認してください 特権。このチュートリアルのすべてのコマンドは、root 以外のユーザーとして実行する必要があります。

pgAdmin は、最も人気があり機能豊富な PostgreSQL 用のオープン ソース管理および開発プラットフォームです。PostgreSQL データベースを簡単に管理および維持するのに役立ついくつかの機能が含まれています。

前提条件:

  • Ubuntu 22.04 を搭載したオペレーティング システム
  • スーパーユーザー権限を持つサーバー IPv4 アドレス (ルート アクセス)
  • Linux デスクトップ用 Gnome ターミナル
  • Windows または macOS 用の PuTTy SSH クライアント
  • Windows 10/11 用 Powershell
  • APT コマンドに精通している

Ubuntu 22.04 LTS に pgAdmin をインストール

ステップ 1. まず、Ubuntu サーバーにパッケージをインストールする前に、すべてのシステム パッケージが更新されていることを確認することを常にお勧めします。

sudo apt update
sudo apt upgrade
sudo apt install software-properties-common apt-transport-https wget ca-certificates gnupg2 ubuntu-keyring unzip

ステップ 2. Ubuntu 22.04 に pgAdmin をインストールします。

Ubuntu 22.04 Jammy Jellyfish システムに pgAdmin をインストールするのは簡単です。pgAdmin GPG キーをインポートして、インストールの信頼性を確認してください:

wget -qO - https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo gpg --dearmor -o  /usr/share/keyrings/pgadmin-keyring.gpg

次に、以下のコマンドを使用して pgAdmin リポジトリをシステムに追加します:

echo "deb [signed-by=/usr/share/keyrings/pgadmin-keyring.gpg] https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/jammy pgadmin4 main" | sudo tee /etc/apt/sources.list.d/pgadmin4.list

その後、以下のコマンドを使用して pgAdmin 4 の最新バージョンをインストールします:

sudo apt update
sudo apt install pgadmin4-web

ステップ 3.pgAdmin 4 を構成します。

アクセスする前に、pgAdmin をセットアップまたは構成します。したがって、以下のコマンドで pgAdmin のセットアップを開始します:

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

質問への完全な回答:

Setting up pgAdmin 4 in web mode on a Debian 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: [email protected]
Password: ngadimin
Retype password: ngadimin
pgAdmin 4 - Application Initialisation
======================================
Creating storage and log directories...
We can now configure the Apache Web server for you. This involves enabling the wsgi module and configuring the pgAdmin 4 application to mount at /pgadmin4. Do you wish to continue (y/n)? y << Type y and press Enter
The Apache web server is running and must be restarted for the pgAdmin 4 installation to complete. Continue (y/n)? y << Type y and press Enter
Apache successfully restarted. You can now start using pgAdmin 4 in web mode at http://127.0.0.1/pgadmin

ステップ 5. pgAdmin 4 Web UI にアクセスします。

ウェブ ブラウザを開き、「pgadmin4」パス URL の後にサーバーの IP アドレスを入力します。

http://Your-IP-Addreess/pgadmin4

pgAdmin のセットアップ中に入力した電子メール アドレスとパスワードを使用して、pgAdmin にログインします。

Ubuntu 22.04 LTS Jammy Jellyfish に pgAdmin をインストールするために必要なことはこれだけです。この簡単なヒントがお役に立てば幸いです。 Postgres 用の無料でオープンソースの管理ツール pgAdmin のインストールに関する詳細については、公式ナレッジ ベースを参照してください。質問や提案がある場合は、下にコメントを残してください。


Ubuntu
  1. Ubuntu18.04にDockerをインストールする方法

  2. Ubuntu18.04にApacheをインストールする方法

  3. Ubuntu18.04にMariaDB10.4をインストールする方法

  1. Ubuntu18.04にMongoDBをインストールする方法

  2. Ubuntu18.04にJenkinsをインストールする方法

  3. Ubuntu20.04にClickHouseをインストールする方法

  1. Ubuntu20.04にKVMをインストールする方法

  2. UbuntuにWebminをインストールする方法

  3. Ubuntu20.04にPuppetをインストールする方法