Postgresqlのインストール
Homebrewでインストール
インストール
$ brew install postgresql
バージョン確認
$ psql -V
Postgreの起動等
起動
$ brew services start postgresql
状況確認
$ brew services list
停止
$ brew services stop postgresql
データベース一覧
$ psql -l
PATH
$ export PATH=/usr/local/Cellar/postgresql/11.5_1/bin/:$PATH
エラー時の対応
エラー内容
$ psql -l
psql: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
どうしても動かないとき、インストールし直す
$ brew uninstall postgresql
$ brew install postgresql
$ rm -rf /usr/local/var/postgres && initdb /usr/local/var/postgres -E utf8
$ postgres -D /usr/local/var/postgres