소개
게시글
질문&답변
2022.09.13
질문X 해결 공유) postman에서 GET할 때 Unauthorized 되는 거 해결
제 경우에는 아래같이 import 되어있는것을import { Strategy } from 'passport-local'; import { ExtractJwt } from 'passport-jwt';아래처럼 바꾸니까 되었습니다. passport 와 jwt 모듈의 Import 가 잘되어있는지 확인하세요.import { ExtractJwt, Strategy } from 'passport-jwt';
- 2
- 2
- 461
질문&답변
2022.09.12
existsByEmail 에서 Type '{_id: any; }' is not assignable to type 'boolean'. 에러 발생
async existsByEmail(email: string): Promise { try { const result = await this.catModel.exists({ email }); return !!result; } catch (error) { throw new HttpException('db error', 400); } }이렇게 바꿔도 되는건가요?? 예시가 뭔가요?
- 3
- 4
- 1.4K
질문&답변
2022.05.13
디비 연결이 안되요
저도 이 에러가 떴었는데, mysql container가 안 켜진 상태였어요. docker for desktop에서 mysql 을 run 시켜주시고 localhost:8080 실행해보세요.
- 1
- 2
- 239
고민있어요
2022.04.28 18:21
완강했습니다!
- 0
- 0
- 147
질문&답변
2022.04.28
portainer 접속이 안됩니다
공식문서를 잘 읽어보셔야해요. By default, Portainer generates and uses a self-signed SSL certificate to secure port 9443. Alternatively you can provide your own SSL certificate during installation or via the Portainer UI after installation is complete.즉, 9443 포트는 https 연결을 하셔야해요.근데 지금 강좌는 http로 접속하니까 If you require HTTP port 9000 open for legacy reasons, add the following to your docker run command: -p 9000:90009000번으로 하라고 되어있죠? 이거 다 공식문서에 나와있습니다!
- 0
- 2
- 534