- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PostgreSQL/ユーザ管理/ユーザ作成・パスワード変更 へ行く。
ユーザの確認・パスワード変更
システムデータベースにログイン
psql template1
存在するユーザリストの確認
SELECT * from pg_user; SELCT * from pg_shadow;
今ログインに使ってるユーザの確認
select current_user, session_user;
パスワード付きのユーザ作成・パスワードの変更
CREATE USER taro WITH PASSWORD 'mypass' ALTER USER taro WITH PASSWORD 'mypass'
- ALTER USER: http://www.postgresql.jp/document/pg837doc/html/sql-alteruser.html
- CREATE USER: http://www.postgresql.jp/document/pg837doc/html/sql-createuser.html
注意
パスワードを使う場合は、pg_hba.confでauthentication-methodをpasswordなどにすること。trustでは、パスワードを設定しても意味をなさない。