mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 18:26:23 +00:00
2.0 KiB
2.0 KiB
데이터베이스설치결과서
1. AI 서비스
- DB 유형: PostgreSQL
- DB Host: 20.249.153.213
- DB Port: 5432
- DB Username: hgzerouser
- DB Password: Hi5Jessica!
- DB Name: aidb
2. Meeting 서비스
- DB 유형: PostgreSQL
- DB Host: 4.230.48.72
- DB Port: 5432
- DB Username: hgzerouser
- DB Password: Hi5Jessica!
- DB Name: meetingdb
3. Notification 서비스
- DB 유형: PostgreSQL
- DB Host: 4.230.159.143
- DB Port: 5432
- DB Username: hgzerouser
- DB Password: Hi5Jessica!
- DB Name: notificationdb
4. STT 서비스
- DB 유형: PostgreSQL
- DB Host: 4.230.65.89
- DB Port: 5432
- DB Username: hgzerouser
- DB Password: Hi5Jessica!
- DB Name: sttdb
5. User 서비스
- DB 유형: PostgreSQL
- DB Host: 20.214.121.121
- DB Port: 5432
- DB Username: hgzerouser
- DB Password: Hi5Jessica!
- DB Name: userdb
설치 요약
PostgreSQL 데이터베이스 (5개)
| 서비스 | Host | Port | Database | Username | Password |
|---|---|---|---|---|---|
| ai | 20.249.153.213 | 5432 | aidb | hgzerouser | Hi5Jessica! |
| meeting | 4.230.48.72 | 5432 | meetingdb | hgzerouser | Hi5Jessica! |
| notification | 4.230.159.143 | 5432 | notificationdb | hgzerouser | Hi5Jessica! |
| stt | 4.230.65.89 | 5432 | sttdb | hgzerouser | Hi5Jessica! |
| user | 20.214.121.121 | 5432 | userdb | hgzerouser | Hi5Jessica! |
접속 정보 확인
PostgreSQL 접속 예시
# AI 서비스 DB 접속
psql -h 20.249.153.213 -p 5432 -U hgzerouser -d aidb
# Meeting 서비스 DB 접속
psql -h 4.230.48.72 -p 5432 -U hgzerouser -d meetingdb
# Notification 서비스 DB 접속
psql -h 4.230.159.143 -p 5432 -U hgzerouser -d notificationdb
# STT 서비스 DB 접속
psql -h 4.230.65.89 -p 5432 -U hgzerouser -d sttdb
# User 서비스 DB 접속
psql -h 20.214.121.121 -p 5432 -U hgzerouser -d userdb
비고
- 모든 PostgreSQL 데이터베이스는 동일한 인증 정보를 사용합니다 (hgzerouser/Hi5Jessica!)
- 개발 환경(dev)을 위한 설치 결과입니다