PostgreSQL is a powerful open-source relational database with advanced features.
What's Included
- PostgreSQL server (latest LTS)
- Common extensions installed
- Configured for local access
After Deployment
sudo -u postgres psqlCreate a Database
CREATE USER myuser WITH PASSWORD 'StrongPassword!';\nCREATE DATABASE myapp OWNER myuser;Remote Access
To allow remote connections, edit postgresql.conf and pg_hba.conf, then configure your firewall. See our dedicated PostgreSQL remote access guide.