postgresqlでユーザー一覧を見る方法

ユーザーを変更
su postgres


始める
psql


以下のクエリでOK!
SELECT * FROM pg_shadow;

■ユーザーの削除は

psql# drop user ユーザ名;



■終了は
\q