PostgreSQL
-
[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..
-
[2019.09.01] PostgreSQL 설치 및 여러가지 사용법개발 블로깅/Server&DataBase 개념 2019. 9. 1. 19:52
객체-관계형 데이터베이스 종류 중 하나이다. (DB의 자세한 설명은 생략) # PostgreSQL 설치 패키지 관리자 homebrew 설치 $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 위 명령어를 복사 붙여넣기 하면 homebrew가 설치된다. postgreSQL 설치 $ brew install postgresql homebrew를 이용하여 postgreSQL을 설치한다. postgreSQL 버전 확인 $ /usr/local/opt/postgresql/bin/postgres --version 'postgresql설치경로'/bin/postgres --version 으로 p..