DevOps
Creating PostgreSQL Users: A Quick Setup Guide 🔑
Learn how to create a PostgreSQL superuser securely with our quick and easy guide. Follow step-by-step instructions to set up a superuser in just minutes!

Hey there, tech enthusiast! 🚀
Today, we're diving into creating a new PostgreSQL user with superuser privileges. This is an essential task for managing your database effectively and securely. Let’s get started!
⏱️ Estimated time: 5-10 minutes
Before We Start 📝
Make sure:
- PostgreSQL is installed and running
- You have terminal access
- The PostgreSQL service is active
💡 Pro tip: Security is critical — always use strong, unique passwords for your database users!
Connecting to PostgreSQL 🔌
First, we need to log into the PostgreSQL shell as the default postgres user. Run the following command:
sudo -u postgres psql
💡
Note: This command uses the postgres system user to access the PostgreSQL shell with administrative privileges.
Creating Your New PostgreSQL User 👤
Now, let’s create a new user with superuser privileges. Use the following command inside the PostgreSQL shell:
CREATE USER username WITH SUPERUSER PASSWORD 'password';
Breaking Down the User Creation Command 🧐
CREATE USER: This creates a new PostgreSQL user.username: The username of the new user.WITH SUPERUSER: Grants the user full administrative privileges.PASSWORD: Sets the password for the user.'password': A strong, complex password.
💡
Pro tip: Always use a strong password that includes a mix of uppercase, lowercase, numbers, and special characters.
Verifying the User 🕵️
To ensure the user was created successfully, you can list all roles in PostgreSQL:
\du
This will display all existing PostgreSQL users (roles) and their privileges. You should see username listed with Superuser privileges.
Testing the New User 🔑
Exit the PostgreSQL shell by typing:
\q
Now, log in with the new user to confirm it works:
psql -U username -W
You’ll be prompted to enter the password you set earlier. Once logged in, you can execute commands as the new superuser.
Security Best Practices 🚨
- Use a strong password: Avoid using easily guessable passwords.
- Limit access: If possible, restrict superuser access to specific trusted IP addresses.
- Audit permissions: Regularly review the privileges of all users in your database.
- Document user creation: Keep a secure record of all users and their roles.
- Rotate passwords: Change admin passwords periodically to enhance security.
Common Issues & Solutions 🔧
Authentication Failed?
- Double-check the username and password.
- Ensure the user was created successfully using.
\du.
Can’t Connect?
- Verify PostgreSQL is running:
sudo systemctl status postgresql - Check the
pg_hba.conffile for connection settings. - Ensure the firewall allows PostgreSQL’s default port (5432).
⏱️ Done! You’ve successfully created a PostgreSQL superuser in just a few minutes.
Got questions about PostgreSQL user management? Need help with database security? Drop a comment below, and I’ll assist you! Happy database managing! 🚀
Written by Shashikant Dwivedi
Engineer, occasional writer, full-time noticer. Based in Prayagraj, India. New essays land roughly twice a month.
Keep reading
Adjacent essays.

DevOps
How to Install Redis on Ubuntu Server and Enable Remote Access
Sep 1, 2025 · 4 min

DevOps
🚀 PostgreSQL Installation Guide for Ubuntu: Your Complete Walkthrough!
Jan 1, 2025 · 2 min

DevOps
🚀 MySQL 8.0 Installation Guide for Ubuntu: Your Complete Walkthrough!
Dec 24, 2024 · 3 min
The newsletter
New articles in your inbox.
Occasional articles on engineering, tooling, and software development practices. No marketing, no fluff — just the article, when it's ready.
Unsubscribe with one click. Your email never leaves the list.