
Error: Error querying the database: db error: FATAL: sorry, too many clients already 위 에러는 메시지는 postgre DB에 연결된 서버를 실행 시켰을 때 마주하게되었다. 그전까지는 아무 문제없이 서버가 잘 작동하였는데, 갑자기 이런 메시지가 생긴 것. 에러 내용인 즉슨.... connection 할 수 있는 client 갯수가 100 개로 한정되어있어 생기는 문제라고 한다. 다양한, 문제 해결방법들이 존재하였고, postgre config에 들어가서 max_connection 값을 default 인 100 보다 이상인 값으로 늘리라고 하였지만, postgre서비스를 재실행하는 과정에서 계속 에러가 나서 그냥 postgre를 지웠다가 다..

PostgreSQL Setting 설치 $ brew install postgresql 서비스 시작 $ brew services start postgresql psql 접속 $ psql postgres $ psql postgres -U melody psql 데이터베이스 생성 postgres=# CREATE DATABASE "test_db" WITH OWNER = test ENCODING = 'UTF8' template = template0; 데이터베이스 리스트 보기 postgres=> \list 테이블 리스트 보기 postgres=> \dt 특정 database로 연결하기 postgres=> \connect test postgres=# 가 postgres=> 로 바뀐 것을 확인 할 수 있음. 특정 유저에게..