PostgreSQLへユーザーを追加

2006年12月13日 オフ 投稿者: KYO
Table of Contents

PostgreSQLへユーザーを追加する場合のメモ。

  • PostgreSQLユーザー追加(コマンドライン)
$ createuser -P [username]
  • PostgreSQLユーザー追加(psqlコマンド)
psql> CREATE USER [username] WITH PASSWORD 'string'