web-dev-qa-db-ja.com

postgresユーザーが存在するかどうかを確認する方法は?

createuserを使用すると、PostgreSQLでユーザー(ROLE)を作成できます。そのuser(name)が既に存在するかどうかを確認する簡単な方法はありますか?そうでない場合、createuserはエラーを返します。

createuser: creation of new role failed: ERROR:  role "USR_NAME" already exists

更新:ソリューションは、スクリプト内で自動化するのが簡単になるように、シェルから実行可能であることが望ましいはずです。

79
m33lky
SELECT 1 FROM pg_roles WHERE rolname='USR_NAME'

そして、コマンドラインの観点から(Erwinに感謝):

psql postgres -tAc "SELECT 1 FROM pg_roles WHERE rolname='USR_NAME'"

見つかった場合は1を返し、それ以外は何も返しません。

あれは:

psql postgres -tAc "SELECT 1 FROM pg_roles WHERE rolname='USR_NAME'" | grep -q 1 || createuser ...

dbが存在するかどうかを確認 と同じ考え方に従ってください

psql -t -c '\du' | cut -d \| -f 1 | grep -qw <user_to_check>

次のようなスクリプトで使用できます。

if psql -t -c '\du' | cut -d \| -f 1 | grep -qw <user_to_check>; then
    # user exists
    # $? is 0
else
    # ruh-roh
    # $? is 1
fi
4
matt

これがpythonでこれを行う可能性のある人に役立つことを願っています。
GitHubGistで完全な作業スクリプト/ソリューションを作成しました。このコードスニペットの下のURLを参照してください。

# ref: https://stackoverflow.com/questions/8546759/how-to-check-if-a-postgres-user-exists
check_user_cmd = ("SELECT 1 FROM pg_roles WHERE rolname='%s'" % (deis_app_user))

# our create role/user command and vars
create_user_cmd = ("CREATE ROLE %s WITH LOGIN CREATEDB PASSWORD '%s'" % (deis_app_user, deis_app_passwd))

# ref: https://stackoverflow.com/questions/37488175/simplify-database-psycopg2-usage-by-creating-a-module
class RdsCreds():
    def __init__(self):
        self.conn = psycopg2.connect("dbname=%s user=%s Host=%s password=%s" % (admin_db_name, admin_db_user, db_Host, admin_db_pass))
        self.conn.set_isolation_level(0)
        self.cur = self.conn.cursor()

    def query(self, query):
        self.cur.execute(query)
        return self.cur.rowcount > 0

    def close(self):
        self.cur.close()
        self.conn.close()

db = RdsCreds()
user_exists = db.query(check_user_cmd)

# PostgreSQL currently has no 'create role if not exists'
# So, we only want to create the role/user if not exists 
if (user_exists) is True:
    print("%s user_exists: %s" % (deis_app_user, user_exists))
    print("Idempotent: No credential modifications required. Exiting...")
    db.close()
else:
    print("%s user_exists: %s" % (deis_app_user, user_exists))
    print("Creating %s user now" % (deis_app_user))
    db.query(create_user_cmd)
    user_exists = db.query(check_user_cmd)
    db.close()
    print("%s user_exists: %s" % (deis_app_user, user_exists))

=等リモート(RDS)PostgreSQLを提供python CMモジュールなしなど)からロール/ユーザーを作成

2
cmcc

_psql -qtA -c "\du USR_NAME" | cut -d "|" -f 1_

[[ -n $(psql -qtA -c "\du ${1}" | cut -d "|" -f 1) ]] && echo "exists" || echo "does not exist"

1