21 lines
388 B
Markdown
21 lines
388 B
Markdown
# 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
|