일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- programmers
- 트레바리
- 프로그래머스
- Python
- 라우터
- snort
- db
- 스노트 룰
- Container
- 데이터베이스
- TDD
- MySQL
- Router
- 라우팅
- coding test
- 컨테이너
- 도커
- docker
- 라우팅프로토콜
- 리눅스
- 코딩 테스트
- Cosmos
- Routing
- osi7layer
- Snort Rule
- Linux
- database
- 코딩테스트
- OSI7계층
- 스노트
Archives
- Today
- Total
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