使用者登録
前の画面のように
postmaster を起動しておいてから作業する。
さもないと、次のようになってしまう。
ttyp6:makoto@u 10:29:23/020530(~)> createuser makoto
Shall the new user be allowed to create databases? (y/n)
Shall the new user be allowed to create more new users? (y/n)
psql: connectDBStart() -- connect() failed: No such file or directory
Is the postmaster running locally
and accepting connections on Unix socket '/tmp/.s.PGSQL.5432'?
createuser: creation of user "makoto" failed
ttyp6:makoto@u 10:32:01/020530(~)>
問題がなければ、次のように CREATE USER という字が表示される。
ttyr7:root@mini 17:35:41/070107(~)# su - pgsql
$ createuser makoto
Shall the new user be allowed to create databases? (y/n) y
Shall the new user be allowed to create more new users? (y/n) n
CREATE USER
$
消すのは dropuser
良く設定をしないで次のようにしたら、うまく行かなかった。(2004/09/18)
> createuser makoto
Shall the new user be allowed to create databases? (y/n) y
Shall the new user be allowed to create more new users? (y/n) y
createuser: could not connect to database template1: 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"?
>
|