Archive for: 𔃶月 2023’

PostgreSQL DB変更

2023年6月12日 Posted by PURGE

\c databasename

PostgreSQL start/stop/restart(Mac)

2023年6月12日 Posted by PURGE

$brew services start postgresql
$brew services stop postgresql
$brew services restart postgresql

Postgresql でユーザ作成

2023年6月8日 Posted by PURGE

postgres=# create user ***_user with password '******';
CREATE ROLE
postgres=# grant all privileges on database ***_db to ***_user;
GRANT

postgres ユーザで操作する。

2023年6月8日 Posted by PURGE

$ psql postgres
psql (14.8 (Homebrew))
Type "help" for help.

postgres=# 

PostgreSQL の再起動(Mac)

2023年6月8日 Posted by PURGE

$ brew services restart postgresql
Warning: Formula postgresql was renamed to postgresql@14.
Stopping `postgresql@14`... (might take a while)
==> Successfully stopped `postgresql@14` (label: homebrew.mxcl.postgresql@14)
==> Successfully started `postgresql@14` (label: homebrew.mxcl.postgresql@14)