1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

macOSのPostgreSQL(Postgres.app)のインストール方法

Last updated at Posted at 2023-02-09

はじめに

MacでPostgreSQLをGUIのPostgres.appで使用する場合のインストール方法について記載いたします。
インストールだけではなく、メジャーアップデートを行う場合の方法は以下で解説しております。
データの移行等が必要な方は以下をご参照ください。
macOSでPostgres.appを使用している場合のメジャーアップデート(データ移行有)

環境

項目 情報
OS macOS Ventura 13.1
プロセッサ 1.6 GHz デュアルコアIntel Core i5
PostgreSQL 15.1

インストール手順

最新のメジャーアップデートのインストーラーをダウンロード

Postgres.appの公式サイトから最新のメジャーアップデートのインストーラーをダウンロード
Postgres.app公式のインストーラーダウンロードページ
postgres_download.png

Applicationsフォルダへのドラッグ&ドロップ

ダウンロードしたdmgファイルをダブルクリックし、インストールを開始する。
以下のウィンドウが表示されたら"Postgres.app"を"Applications"にドラッグ&ドロップ
postgres_15_install_1.png

「開く」をクリック

新しく配備されたApplicationsフォルダのPostgres.appを開くと以下のウィンドウが表示されるので、「開く」をクリック。
postgres_install_4.png

「Initialize」をクリック

新しいバージョンのPostgres.appが開かれるので、「Initialize」をクリックして初期化する。
postgres_install_5.png
初期化が完了するとサーバが起動する。
postgres_install_6.png

パスを通す。

付属のコマンドラインツールを使用できるようにするため、ターミナルで以下のコマンドを実行する。

$ sudo mkdir -p /etc/paths.d
$ echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp

psqlによるバージョン確認

ターミナルを再起動した上で以下のコマンドを実行し、PostgreSQLがインストールされていることを確認する。

$ psql --version
psql (PostgreSQL) 15.1

以上となります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?