0
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.

PostgeSQLのHomebrewでのインストール

Posted at

PostgeSQLのHomebrewでのインストール

環境

項目 バージョン
OS macOS Monterey 12.6.3
プロセッサ Apple M2
Homebrew 4.0.4
PostgreSQL 11.19

インストール手順

HomebrewでインストールできるPostgreSQLの確認

$ brew search postgre

PostgreSQLのインストール

Version11の指定があったため、version11をインストール

$ brew install postgresql@11

PATHの設定

筆者はzshを使用しているため、zshの設定ファイルにPATHを設定する。

$ echo 'export PATH="/opt/homebrew/opt/postgresql@11/bin:$PATH"' >> ~/.zshrc
$ source ~/.zshrc

インストールの確認

$ psql --version
psql (PostgreSQL) 11.19

PostgreSQLの初期化

$ sudo initdb /usr/local/var/postgres -E utf8

PostgreSQLの起動

$ brew services start postgresql@11

デフォルトのデータベースへアクセスする

$ psql -h localhost -p 5432  postgres

スーパーユーザを作成する

postgres=# create user postgres with SUPERUSER;
CREATE ROLE

スーパーユーザでログインできるかどうか確認する

postgres=# \q
$ psql -h localhost -p 5432 -U postgres
psql (11.19)
Type "help" for help.
postgres=#

ログインが確認できたら完了。

参考

【PostgreSQLをMacで使う方法】インストールから基本的な使い方まで紹介します
【macOS】PostgreSQLのインストール&設定手順

0
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
0
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?