도커 속 포스트그레스 Max connection

Yeseul Han·2024년 8월 27일
0

1. 포스트그레스 접근

### ofe는 도커 아이디
docker exec -it 0fe psql -U postgres

2. max connection 확인

SHOW max_connections;

3. 결과 : MAX가 100 이면 당연히 대용량 접근이 안된다

postgres=# SHOW max_connections;
 max_connections
-----------------
 100
(1 row)

4. Config 찾기

SHOW config_file;

5. Config 수정 (** 이부분 도커 안이라 nano 다시 설치 필)

max_connections = 300
## 나노 설치 및 config 수정 ##
apt-get update
apt-get install nano -y
nano /path/to/postgresql.conf

6. 도커 다운 업

7. 결과 확인

SHOW max_connections;
profile
코딩 잘하고 싶다

0개의 댓글