-
[2019.10.29] PostgreSQL - psql: could not connect to server: No such file or directory is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"?개발 블로깅/Server&DataBase 개념 2019. 10. 29. 22:55
어제까지 잘 써왔던 Postgrsql 디비가 오늘 아침에 갑자기 접속이 안되었다...
psql 접속을 할 수 없다고 하고, 포트번호를 확인하라고 한다.
postico로도 접속을 할 수 없었다. 일시적인 에러인지 pc를 껐다 켜보았지만 여전하다..
PostgreSQL - psql: could not connect to server: No such file or directory is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
# 원인
pc 내부 프로세스의 일시적인 충돌로 인해 발생한 PostgreSQL서버 오류.
# 해결 방법
터미널에 아래 명령어를 입력하면 된다.
$ brew services stop postgresql $ rm /usr/local/var/postgres/postmaster.pid # 이 부분이 pid 조정하는 부분 $ brew services start postgresql
출처 : https://dba.stackexchange.com/questions/75214/postgresql-not-running-on-mac
반응형'개발 블로깅 > Server&DataBase 개념' 카테고리의 다른 글
[2020.05.24] Infrastructure as Code란? (0) 2020.05.24 [2020.05.24] Docker 기초 - React을 Docker로 배포하기 (0) 2020.05.24 [2019.09.01] PostgreSQL 설치 및 여러가지 사용법 (0) 2019.09.01 [2019.06.22] Serverless란? (0) 2019.06.22 [2019.06.10] Serverless framework를 이용하여 lambda 배포하는 법 (0) 2019.06.11