PostgreSQL
PostgreSQL binaries from EnterpriseDB.
Versions
| Version | Source |
|---|---|
| 17.2 | Windows x64 |
| 16.6 | Windows x64 |
Starting
bash
futou start postgresql 17.2On first start, the daemon initializes the data directory with initdb (UTF8, no-locale). Uses pg_ctl start to launch the server.
Started on port 5432.
Stopping
bash
futou stop postgresqlUses taskkill /PID to terminate the process.
Configuration
The GUI Config button opens postgresql.conf if it exists:
ini
port = 5432
max_connections = 100
shared_buffers = 128MBThe config file may be in the data/ subdirectory.
CLI Tools
Activate PostgreSQL to get CLI tools in PATH:
bash
futou use postgresql 17.2
psql -U postgres