Skip to content
Yoshiyuki Sakamoto edited this page Jul 2, 2019 · 1 revision

PostgreSQLがインストールされているか確認する

ls /usr/local/var/postgres*

PostgreSQLのインストールと起動

$ brew install postgresql
$ postgres --version
postgres (PostgreSQL) 9.5.3
$ initdb /usr/local/var/postgres9.5.3 -E utf8
$ postgres -D /usr/local/var/postgres9.5.3 &
$ pg_ctl -D /usr/local/var/postgres9.5.3 start

PostgreSQLログイン方法

PostgreSQL停止方法

$ pg_ctl -D /usr/local/var/postgres9.5.3 stop

データベース一覧確認

psql -l

ユーザーの作成

postgresユーザーを作りたい

$ createuser -P postgres
Enter password for new role:
Enter it again:

DBの作成

  • owner: postgres
$ createdb lgtmoon -O postgres

テーブルの作成

$ psql -U postgres lgtmoon < sql/create.sql