🐙

[Mac]PostgreSQLを使う

2022/05/28に公開
  • PostgreSQLをインストールする
brew search postgresql # インストール可能なversionを確認
brew install postgresql # 最新版をインストール
  • PostgreSQLを起動し、停止する
brew services start postgresql # 起動
brew services list # 起動状態を見る
brew services stop postgresql # 停止
  • DB一覧を表示 psql -l
  • postgresという名前のDBにログインpsql postgres
  • DBを作成できるロールを作成するcreate role role_name createdb;

Discussion