Simple is IT, 누구나 보고 누구나 깨닫는 IT

[ERROR] PostgreSQL, connections on Unix domain socket "/tmp/.s.PGSQL.5432"? 본문

Simple is IT/Database

[ERROR] PostgreSQL, connections on Unix domain socket "/tmp/.s.PGSQL.5432"?

currenjin 2020. 9. 29. 12:20

psql 접속 중 오류가 발생했어요.
잘 사용해 왔는데, 갑자기 왜 이럴까... 궁금해졌죠.

 

이유는 간단해요!

내부 postmaster.pid 파일이 발생시키는 Process 충돌 때문입니다.

 

아래 명령어로 간단하게 해결이 가능해요!

$ brew services stop postgresql
Stopping `postgresql`... (might take a while)
==> Successfully stopped `postgresql` (label: homebrew.mxcl.postgresql)

$ rm /usr/local/var/postgres/postmaster.pid 

$ brew services start postgresql
==> Successfully started `postgresql` (label: homebrew.mxcl.postgresql)

 

처음보는 에러에 적잖이 당황했지만 빠르게 해결할 수 있던 오류에요.

감사합니다!

'Simple is IT > Database' 카테고리의 다른 글

AWS Database Migration Service_보류  (0) 2020.07.02
DB 이중화(DB Master, Slave)  (0) 2020.05.05
DataBase_HBase  (0) 2020.05.05
Apache Hive의 간단한 설정  (0) 2020.05.05
빅데이터(Big Data)와 하둡(Hadoop)  (0) 2020.05.05
Comments