Q. How do I create a user account called tom and grant permission for database called jerry?
A. You need to use following commands.
=> adduser – UNIX/Linux adduser command to add a user to /etc/passwd file
=> psql => It is a terminal-based front-end to PostgreSQL.
=> CREATE USER – Adds a new user to a PostgreSQL database cluster.
=> CREATE DATABASE – create a new database
=> GRANT ALL PRIVILEGES – define access privileges
Procedure to add a user to PostgreSQL database
To create a normal user and an associated database you need to type the following commands. The easiest way to use is to create a Linux / UNUX IDENT authentication i.e. add user tom to UNIX or Linux system first.
Step # 1: Add a Linux/UNIX user called tom
Type the following commands to create a UNIX/Linux user called tom:
# adduser tom
# passwd tom
Step # 2: Becoming a superuser
You need to login as database super user under postgresql server. Again the simplest way to connect as the postgres user is to change to the postgres unix user on the database server using su command as follows:
# su - postgres
Step #3: Now connect to database server
Type the following command
$ psql template1
OR
$ psql -d template1 -U postgres
Output:
Welcome to psql 7.4.16, the PostgreSQL interactive terminal.
Type: \\copyright for distribution terms
\\h for help with SQL commands
\\? for help on internal slash commands
\\g or terminate with semicolon to execute query
\\q to quit
template1=# Step #4: Add a user called tom
Type the following command to create a user called tom with a password called myPassword (you need to type command highlighted with red color):
template1=# CREATE USER tom WITH PASSWORD 'myPassword';
Step #5: Add a database called jerry
Type the following command (you need to type command highlighted with red color):
template1=# CREATE DATABASE jerry;
Now grant all privileges on database
template1=# GRANT ALL PRIVILEGES ON DATABASE jerry to tom;
Type \q to quit:
template1=# \q
Step #6: Test tom user login
In order to login as tom you need to type following commands. Login as tom or use su command:
$ su - tom
$ psql -d jerry -U tom
Output:
Welcome to psql 7.4.16, the PostgreSQL interactive terminal.
Type: \\copyright for distribution terms
\\h for help with SQL commands
\\? for help on internal slash commands
\\g or terminate with semicolon to execute query
\\q to quit
jerry=> 


47 comment
How can I do these same steps but on Windows?
Many thanks,
Mike
write the same commands in cmd or just use “pgadmin” to do this stuff
Njoy :)
Mike while running windows:
open up a command window and run:
format c:
that will get rid of your windows issue nicely. ;) Before you do that you might want to have a linux cd handy recommending ubuntu.
Funny thing is you wouldn’t even need instructions to do this stuff in Windows. But in a cryptic Linux OS nothing is obvious.
Cryptic is your brain !!!
it is works thank u for helping me
Works! Awesome!
This is the first (right on instructions) I have ever had the privilege to use and the only ones I have ever used that are right on.
Where can I find more of these easy to use fully explained to the smallest detail instructions.
Awesome
Allan
Great help thanks, and excellent humor also. I wonder why Mike has not responded yet LOL…
Thank you for the concise commands.
This is great beginner’s help, thanks :) But Will be great to explain here how to setup pqsql user without creating UNIX user, because i seem this as not so great resolution to create UNIX user for every pgsql user. Anyway, thanks for help once more :)
Awesome worked a treat thanks a lot. :D
Great, simple and concise. Thanks a lot.
@Arteal
This is where windows informations can come useful.
@Mike
go to:
start->programs->postgreSQL 8.*->SQL shell
login with your postgres user and password then type this commands in this order :
CREATE USER win;
CREATE DATABASE test;
GRANT ALL PRIVILEGES ON DATABASE test to win;
change win to a defined user by you ,and test to a database you want .
And to undo:
REVOKE ALL ON DATABASE jerry FROM tom;
DROP USER tom
DROP DATABASE jerry
So how do you query the permissions a user has? It seems naturaly that, after changing these settings a careful admin will want to verify them.
i need help
i need to see how many users have created. is it possible?
is any command is there for listing the users in postgres?
this information is gud but their should be continuation to another relevant topic
using \du command we can see the list of users which we have created
Vivek,
I used this great quick tutorial to get me out of a place that I was unfamiliar with. Thanks!!!
Question 1. what the heck does postgressql mean, the name?
I see post, but gre? Maybe you know?
jaysunn
Jaysunn,
PostgreSQL[1] evolved from the Ingres project at the University of California, Berkeley. In 1982, the project leader, Michael Stonebraker, left Berkeley to make a proprietary version of Ingres. He returned to Berkeley in 1985 and started a post-Ingres project to address the problems with contemporary database systems that had become increasingly clear during the early 1980s. The new project, Postgres, aimed to add the fewest features needed to completely support types. These features included the ability to define types and to fully describe relationships – something used widely before but maintained entirely by the user. In Postgres, the database “understood” relationships, and could retrieve information in related tables in a natural way using rules. Postgres used many of the ideas of Ingres, but not its code.
[1] Source: Wikipedia
HTH
Great instructions. Thank you very much! On to figure out how to login to the database via PHP…
just wanted to add
to create with UTF8 :-
CREATE DATABASE example WITH ENCODING ‘UTF8’;
Hi! I am new to PostgreSQL. This page has so much help! Thanks a lot!!! Just one more question, how do give additional roles to the user you have created like (create role, create db etc..)? Once again, thanks!
Nonsense, GNU/Linux admin is much easier than Windows. I speak as former Windows and Metaframe admin. The Windows admins at my employer spend more time by a factor of three to admin each windows box as I do with all the Linux boxes together. The command line admin of postgresql in windows is the same, or you can use GUI tools to admin it the same way in Windows as Linux. What you are really saying is you only want to stay with one way of doing things without learning any better way. Windows is totally crippled and featureless compared to what GNU/Linux can do, and is slower and requires twice the RAM for a given job. And to show my objectiveness, there are even better OS than Linux, the BSD for example like FreeBSD or OpenBSD are of even higher quality, or OpenSolaris. All those can also run Postgresql, though FreeBSD would probably be the fastest.
Is it necessary to create UNIX-account? Is it possible to connect to PostgreSQL without UNIX-accounts?
I didn’t find it necessary to do so, that’s why you have the alternative command of psql -U
I think it is to make it easier for some or if you wanted to have a separate linux account to handle these things on the system.
hay last step doesent work..
it gives me error massage
psql: FATAL: no pg_hba.conf entry for host “[local]”, user “rohan”, database “shree1”, SSL off
Hello, thanks for this “how to”, but when adding “su – postgres” command line in my Terminal it asks for a password, I’ve introduced my password, the MySQL Password and the Unix Password it asked when creating gnuhealth user but none of them work what am I doing wrong?
$ psql -d myDb -U username -W
needs to change to
$ psql -h localhost -d myDb -U username -W
The first one gave me IDENT error
That depends. If you have authentication set to “peer” in your /etc/postgresql/9.1/main/pg_hba.conf file, then you can either change that to “md5”, or use the “-h localhost” or “-h 127.0.0.1” approach. If you already are using “md5” for authentication in that file, then the command is fine as it is, and you don’t need to use “-h localhost”.
Thank you for this! Was wondering where the password was supposed to be entered.
As I’m only accessing from localhost I have to specify -h localhost
I enjoy this default behavior as it is better defaults from a security standpoint.
Great! as newbie I need instruction as simple as this!
When i found critical to do this task. your commands helps out to do fast..
Many thanks for your work.. Kepp on going..
Thanks you so much!
What a nightmare to get this going. I think postgres could be much more popular if they just added a default user with a default password with a default database or the power to create one, and also allowed connections from other computers without having to dig through a million documents. I got a 1000 page book on postgres and still couldn’t get it to work. It looks like a good database, but they really try hard to keep the learning curve really steep.
In any case, thanks again!
And again it saved my day.
Thank you very much!
copy privileges from one user to another:
GRANT user1 TO user2;
Awesome! Thanks.
Is it really necessary to create linux user?
I followed only steps 4 and 5 and database, user and privileges was created successfully.
Nice post.
I just created psql user and grant all privileges to the uesr for existing database. Didn’t create any seprate user in Linux. Execution Successfull.
What will cause if I just created psql user and no such user in linux?
Hi all,
Firstly i know absolutely nothing about ‘postgre’ so I probably shouldn’t be trying to tinker with it.
After running a scan I keep getting a mesg. saying;
‘The version detected of PostgreSQL 8.x was 8.4.20.14etc. while the latest version including one or more security fixes is 8.4.21.’ ~ when I click on ‘Install Solution’ & follow the instructions I get as far as ‘Please provide a password for service account (postgres).’
Should I leave well enough alone & is there any any threat to my comp. in doing so?
Thanks.
Computers drive me insane!
how to give access to just 1 table in the database for reading
These days you must also grant connect, also remember that postgres will lowercase symbols like your table/database/user/field names, I think you can wrap them with “ to keep the cases. The standard generally seems to be to use underscores instead.
GRANT CONNECT ON DATABASE db_name TO user_name;
It would not work for me without that, for years now. Also remember to connect with -h localhost, or configure your pg_hba.conf (care for potential security risks).
Nice post. Solve my purpose.
Gone through lots of posts on internet but didn’t work out for me. Finally follow all mentioned steps here and it worked for me.
This is a great tip especially to those fresh to the blogosphere. Brief but very precise information… Appreciate your sharing this one. A must read post!