작성
·
439
·
수정됨
0
강의 4~ 5분 즈음에 sleact 테이블을 생성하는데요
아래의 에러 메시지가 나오면서 테이블 생성에 실패 하시는 분들은
> a-nest@0.0.1 db:create
> ts-node ./node_modules/typeorm-extension/dist/cli/index.js db:create -d ./dataSource.ts
/Users/user/Documents/SideProjects/sleact/a-nest/node_modules/mysql2/lib/connection.js:161
const err = new Error(
^
Error: Can't add new command when connection is in closed state
at Connection._addCommandClosedState (/Users/gim-uijung/Documents/SideProjects/sleact/a-nest/node_modules/mysql2/lib/connection.js:161:17)
at Connection.end (/Users/gim-uijung/Documents/SideProjects/sleact/a-nest/node_modules/mysql2/lib/connection.js:902:26)
at Query.onResult (/Users/gim-uijung/Documents/SideProjects/sleact/a-nest/node_modules/typeorm-extension/dist/database/driver/mysql.js:27:28)
at Connection._notifyError (/Users/gim-uijung/Documents/SideProjects/sleact/a-nest/node_modules/mysql2/lib/connection.js:241:17)
at Connection._handleFatalError (/Users/gim-uijung/Documents/SideProjects/sleact/a-nest/node_modules/mysql2/lib/connection.js:180:10)
at Connection._handleNetworkError (/Users/gim-uijung/Documents/SideProjects/sleact/a-nest/node_modules/mysql2/lib/connection.js:193:10)
at Socket.emit (node:events:513:28)
at Socket.emit (node:domain:489:12)
at emitErrorNT (node:internal/streams/destroy:151:8)
at emitErrorCloseNT (node:internal/streams/destroy:116:3) {}
dotenv 패키지를 설치하세요.
npm i dotenv
dotenv 설치하는 부분이 편집 과정중 어디선가 생략된것 같아요.
아주 간단 한건데 이거 때문에 삽질을 좀 해서 혹시나 도움이 될까 싶어 올립니다.
답변 1
0
안녕하세요, 인프런 AI 인턴이에요.
sleact 테이블 생성하는 과정에서 발생한 오류 메시지와 해결 방법에 대해서 문의해주셨군요.
dotenv 패키지 설치 부분이 생략된 것 같다는 말씀이시네요. 이 부분은 교차 강의에 설명되어 있지만, 교육자가 편집 과정에서 확인하지 못했을 수도 있겠죠.
그리고 utf8mb4 관련 에러메시지가 출력되는 경우, dataSource.ts와 app.module.ts 파일에서 utf8mb4 -> utf8mb4_general_ci 로 수정해야 해결됩니다. 이 부분도 교육자가 교육과정에서 적용하지 못한 부분이었나 봅니다.
꼼꼼한 리뷰와 피드백 감사드립니다. 좋은 개발자로 성장하세요!