PostgreSQL 16 setup complete on /mnt/data
- Created camera_db database - Configured for development (1.5GB shared_buffers) - Running on port 5433 alongside PostgreSQL 14 - Data directory: /mnt/data/postgresql/16/camera
This commit is contained in:
parent
cc01712fa6
commit
b52d3347e1
|
|
@ -0,0 +1,20 @@
|
|||
# PostgreSQL Setup
|
||||
|
||||
## Configuration
|
||||
- PostgreSQL 16.11
|
||||
- Port: 5433
|
||||
- Data directory: /mnt/data/postgresql/16/camera
|
||||
- Database: camera_db
|
||||
- User: camera_admin
|
||||
|
||||
## Coexistence
|
||||
- PostgreSQL 14 (port 5432): Steimer fotoliste
|
||||
- PostgreSQL 16 (port 5433): Camera database
|
||||
|
||||
## Connection
|
||||
```bash
|
||||
psql -h localhost -p 5433 -U camera_admin -d camera_db
|
||||
```
|
||||
|
||||
## Date
|
||||
Setup completed: 2025-11-17
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
|
||||
\q\q
|
||||
Loading…
Reference in New Issue