맥이 갑자기 재부팅이 됐고

postgres local db를 재실행하려는데

postmaster.pid 파일이 있어서 안된다고 한다.

실행중인 process가 있는지 확인을 하고

ps auxw | grep post

/Users/sungwookkim/Library/Application Support/Postgres/var-12

같은 곳에 들어가서

postmaster.pid를 지워주면 된다.

'Infra > database' 카테고리의 다른 글

Postgres function code 보는 법  (0) 2020.10.14
MYSQL] my.cnf 위치 찾기  (0) 2020.07.17
Can't connect to MySQL server  (0) 2019.09.15
mysql 수동 설치  (0) 2019.09.15

수동 설치

mysql --verbose --help | grep my.cnf

brew설치

mdfind -name homebrew.mxcl.mysql.plist

'Infra > database' 카테고리의 다른 글

Postgres function code 보는 법  (0) 2020.10.14
postgres 실행이 안될 경우  (0) 2020.10.12
Can't connect to MySQL server  (0) 2019.09.15
mysql 수동 설치  (0) 2019.09.15

[vue-composition-api] must call Vue.use(plugin) before using any function.

observable객체 reactive, ref등은
반드시 setup 메서드 안에서 불러야 한다.

+ Recent posts