Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a database user for my setup fabric script but createuser has interactive password entering and seams not to like fabric.

share|improve this question

2 Answers

up vote 6 down vote accepted

Just use plain SQL to create a new user:

CREATE ROLE user_name WITH ENCRYPTED PASSWORD 'your password';
share|improve this answer
how do I send this SQL to postgres in a one-liner? – user320080 Apr 19 '10 at 12:10
Connect with the psql client and send the query. postgresql.org/docs/8.4/interactive/app-psql.html – Frank Heikens Apr 19 '10 at 12:41

To extend the answer with a Fabric example...

# In fabfile.py
def create_database():
    """Creates role and database"""
    db_user = get_user() # define these
    db_pass = get_pass()
    db_table = get_table()
    sudo('psql -c "CREATE USER %s WITH NOCREATEDB NOCREATEUSER " \
         "ENCRYPTED PASSWORD E\'%s\'"' % (db_user, db_pass), user='postgres')
    sudo('psql -c "CREATE DATABASE %s WITH OWNER %s"' % (
        db_table, db_user), user='postgres')
share|improve this answer
Awesome, many thanks – Alex Dean Mar 26 '11 at 1:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.