PostgreSQLにユーザーを追加する方法は2通りある。
1:コマンドライン
2:SQLから
の2通りが有り、それぞれ有用に使える。
コマンドラインからの、ユーザーを追加
takuya@debian00:~$ sudo su -l postgres postgres@debian00:~$ createuser -a -d -P takuya 新しいロールのパスワード: もう一度入力してください:
間違えたときは消す。
postgres@debian00:~$ dropuser takuya postgres@debian00:~$
オーナーユーザーを指定したDBの作成
postgres@debian00:~$createdb -O takuya www.example.com
データベース削除
postgres@debian00:~$ dropdb www.example.com
postgres ユーザーでやるのが初心者にはオススメらしい。
SQLから。
あとで調べる。
http://www.develop-memo.com/database/postgresql/postgresqloperate.html
http://satospo.sakura.ne.jp/blog_archives/tech/linux_server/postgresql82_acl.html
どうも、コマンドラインからやるのがPostgresqlっぽい感じらしい。。。マジ?