🐰 Error

thumbnail
🐾   [golang] listen tcp :7000: bind: address already in use 에러 메시지 해결방법

배경 다른 서비스는 로컬에 다 돌아갔다. 하지만 1개의 서비스만 run를 하면 종료가 됐다. 찾는 방법 err := e.Start(":" + config.Config.HttpPort) fmt.Println(err) 에러...

thumbnail
🐾   [Git] connect to host github.com port 22: Operation timed out 해결 방안

배경 git pull 를 하려고 하는 에러 메시지가 떴다. 그래서 github 가서 ssh 키를 다시 등록을 했는데도 해결이 되지 않았다. 원인 카페나 제3의 장소에서 사용할 때 보안때문에 발생하는 문제 같다. 에러 메시지 ssh: ...

thumbnail
🐾   [git] fatal: not a git repository (or any of the parent directories): .git 에러 해결방법

에러 메시지 fatal: not a git repository (or any of the parent directories): .git 에러 메시지가 발생했다. 에러 원인 그 폴더안에 git 정보 파일이 없어서 나는 에러 였다. .g...

thumbnail
🐾   [macOS] brew 설치했는데 command not found: brew 에러 나오는 문제

배경 yarn 설치하기 위해서 brew를 설치해야 했다. brew를 다 설치한 후 버전 체크를 했다. brew --version 이 때 에러 메시지가 떴다. zsh: command not found: brew 다시 설치를 했다. 그런...

thumbnail
🐾   [MySQL] Error Code: 1093. You can't specify target table 'p' for update in FROM clause 에러메시지 해결 방법

# 배경 SQL문 update할 때 where절에 서브쿼리를 했다. 그런데 에러 메시지가 나타났다. # 에러메시지 Error Code: 1093. You can't specify target table 's' f...

thumbnail
🐾   [Error] panic: Record map key is not string 해결방안

# 오류메시지 panic: Record map key is not string 문자열이 아니라고 해서 디버깅을 했다. DB안에 있는 no: 2가 false->2 이렇게 들어간다. 그래서 string이 아니라는 메시지가 계속 나왔...