inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

묻고 답해요

173만명의 커뮤니티!! 함께 토론해봐요.

default.conf 파일이 없습니다.

미해결

비전공자도 이해할 수 있는 Nginx 입문/실전

/etc/nginx/conf.d 폴더에 default.conf 파일이 없습니다.

  • aws
  • nginx
  • reverse-proxy
  • infrastructure
Bruce LEE 댓글 2 좋아요 0 조회수 141

섹션 9 실전 질문

미해결

스프링 부트와 리액트로 구현하는 보안 JWT 로그인

강사님 세션 9에서 Secretes Manager나 Parameter Store 를 현업에서도 깃허브 액션 하고 같이 쓰나요? 이거 궁금해서 질문드립니다.

  • react
  • java
  • aws
  • spring-boot
  • spring-security
KMC 댓글 1 좋아요 0 조회수 99

프로젝트 구조 관련 질문이 있습니다.

미해결

Golang을 통한 백엔드 개발 및 환경 구축하기

안녕하세요!! 클라우드 관련 공부하다가 go에 관심이 생겨 수강하게 되었습니다. 백엔드는 이 강의와 책으로 처음 공부하는 중입니다. 현재는 강의 프로젝트 구조로 개인 프로젝트 진행해보려고 리펙터링 중 입니다. 수업과 관련은 없지만 3가지 질문이 있습니다. 1. 트랜잭션 구현을 위한 *sql.DB는 어디서 생성하고 어떻게 service에 주입해야 하나요? reposiory는 수정해서, *sql.DB 필드 하나만 위치하도록 했습니다. 다만, 트랜잭션 구현을 하다보니, db 커넥션 풀을 repository에서 service로 가져오거나, cmd에서부터 service까지 내려보내주어야 하더라고요. cmd에 db 커넥션 풀을 생성하도록 하면 안되는 걸까요? orm 도입하기 이전에 내장 패키지로 기본 로직을 구현하려는 건 쓸 데 없는 일일까요? 2. 프로젝트 구조를 어째서 cmd에 전부 주입하는 식으로 작성하셨나요? 테스트는 어떻게 하시나요? cmd를 main패키지 처럼 사용하시는 건지 궁금합니다. 제가 알고 있던 백엔드 구조(spring boot)와 많이 달라 보이네요. 또, 이 구조에서 테스트는 어떻게 진행해야 할지 잘 모르겠습니다. 대략적인 흐름이라도 알고자 여쭤봅니다. 3. 일하실 때에도 이 구조를 유지하시나요? 도메인별 패키지 분리(user, auth, member... etc)는 별로인가요? 개인적으로는 비즈니스 도메인별로 디렉터리를 나누는 것을 선호합니다. 다만, 현재 이 디렉터리 구조를 뜯어고칠 용기가 생기지는 않네요... 이 구조의 어떤 점 때문에 이렇게 사용하시는 지, 혹은 팀에서 이렇게 쓰길래 유지를 하고 계신건지 궁금합니다. 장단점이 있을까요? 궁금한걸 쌓아두면서 gpt로 해결하려다가, 쌓아둔게 터진 것처럼 장황하네요.. 강의를 들으면서 해결 못한 내용이라 그런 것 같아요. 좋은 강의 잘 듣고 있습니다 🥹 🙏

  • aws
  • go
  • crud
  • transaction
  • test
mellon 댓글 1 좋아요 0 조회수 94

4주 1회차 과제

해결됨

[매일 완독 챌린지] 저자와 함께하는 <FastAPI로 기획에서 출시까지>

- is_host를 기준으로 호스트 사용자와 게스트 사용자를 구분하는 것은, 가입 당시부터 본인의 역할을 선택하여 구분 짓는 경우에 효과적인 것으로 판단됩니다. 가입 시점부터 역할(게스트/호스트)을 구분 지어서 관리하고자 하는 경우에 적절한 구조라고 생각되며, 호스트의 자격조건이 있거나, 검증이 필요한 서비스라면 이렇게 관리하는 방법이 적절해 보입니다. - 반면, 호스트/게스트의 타입을 캘린더의 존재 여부(또는 갯수)로 정의한다고 하면, 모든 가입자가 가입시에 동일한 자격을 갖는 가입자로서 가입처리가 되고, 추가 단계로서 캘린더를 생성 함으로 써, 호스트와 게스트의 역할을 자유롭게 넘나드는 자유도가 생기는 구조가 될 것 같습니다. - 지금은 커피챗을 목적으로 일정을 조율하는 목적을 갖는 시스템이므로, is_host를 사용하지 않는 결정을 하겠습니다. 전자상거래 시스템같은 판매자와/소비자 처럼 엄격한 구분과 자격을 검증해야 하는 시스템으로 여겨지지는 않기때문입니다. is_host 필드가 없어지는 경우에, 사용자의 상태(또는 역할)을 구분하기 위해서 매번 캘린더의 존재 여부를 확인해야 하지만 앞서 언급한 호스트와 게스트의 역할 변경에 열려있는 점이 중요하게 생각되기 때문입니다. 하지만 모든 가입자가 게스트로 시작하는 만큼 커피챗 호스트를 어떻게 유치할 것인가는 고민이 되는 부분입니다.

  • python
  • aws
  • tdd
  • FastAPI
  • 북-챌린지
Green Lee 댓글 2 좋아요 3 조회수 138

CodeDeploy 사용시 registration 요구

미해결

비전공자도 이해할 수 있는 CI/CD 입문·실전

CodeDeploy 를 클릭했더니, 이런 문구가 뜨네요. complete your AWS registration 눌러도 콘솔 홈으로 돌아가고, credit card information 을 눌렀더니, 결제 기본 설정 창이 뜨는데, 딱히 문제될 건 없어 보여요. 다른 AWS 서비스 사용할 때는 이런 문구 안 떴는데 왜 CodeDeploy만 이럴까요? ㅠㅠ

  • aws
  • docker
  • ci/cd
  • github-actions
  • aws-code-deploy
  • infrastructure
  • aws-ec2
  • 카카오공채-개발
매콤한각설탕 댓글 3 좋아요 0 조회수 154

페이지 144 코드 문의

해결됨

[매일 완독 챌린지] 저자와 함께하는 <FastAPI로 기획에서 출시까지>

def create_engine(dsn: str): return create_async_engine( dsn, echo=True, # SQLAlchemy가 실행하는 SQL을 콘솔에 출력하도록 함 ) def create_session(async_engine: AsyncEngine | None = None): if async_engine is None: async_engine = create_engine() 위 코드중 마지막줄 async_engine = create_engine() 여기에 dsn 인자가 없어서 오류 나지 않나요?

  • python
  • aws
  • tdd
  • FastAPI
  • 북-챌린지
댓글 3 좋아요 0 조회수 93

스프링 종료 명령어

미해결

비전공자도 이해할 수 있는 CI/CD 입문·실전

안녕하세요 sudo fuser -k -n tcp 8080 이 명령어로 스프링 죽이시던데 실제 실무에서도 저 명령어로 스크립트를 구성하나요?

  • aws
  • docker
  • ci/cd
  • github-actions
  • aws-code-deploy
  • infrastructure
  • aws-ec2
  • 카카오공채-개발
플하 댓글 2 좋아요 0 조회수 86

자료가 깨진 것 같습니다.

해결됨

실전! GitHub Actions으로 CI/CD 시작하기

자료를 다운받았는데, 압축 파일 안에 아무것도 뜨지 않습니다. 확인해주시고 자료를 새롭게 업로드 해주시면 감사하겠습니다

  • aws
  • kubernetes
  • ci/cd
  • github-actions
  • eks
dasss41 댓글 2 좋아요 0 조회수 115

책과 github 코드가 다릅니다 p130

해결됨

[매일 완독 챌린지] 저자와 함께하는 <FastAPI로 기획에서 출시까지>

책에서는 128p if TYPE_CHECKING: from appserver.apps.calendar.models import Calendar 이렇게 appserver 부터 시작하니다 130페이지 하단에 보면 https://gilbut.co/c/25069573YP 커밋 참조하라고 되어있는데요 깃헙에서는 if TYPE_CHECKING: from apps.calendar.models import Calendar 여기는 apps부터 시작합니다. 초보에게는 이런거 하나하나가 어렵네요 어떤게 맞는 건지 궁금합니다.

  • python
  • aws
  • tdd
  • FastAPI
  • 북-챌린지
가후 댓글 2 좋아요 0 조회수 71

영상이 안 나옵니다 ㅠㅠ

미해결

비전공자도 이해할 수 있는 AWS 입문/실전

영상은 안 보이고 소리만 재생됩니다

  • aws
  • aws-elb
  • aws-rds
  • ec2
  • s3
댓글 2 좋아요 0 조회수 103

깃허브 코드

미해결

스프링 부트와 리액트로 구현하는 보안 JWT 로그인

강사님 혹시 44강 듣고 있는데 이거 프론트엔드 코드가 깃허브에 있는것과 다른 코드인데 어디서 볼 수 있나요?

  • react
  • java
  • aws
  • spring-boot
  • spring-security
KMC 댓글 1 좋아요 0 조회수 106

120페이지 코드 질문드립니다.

해결됨

[매일 완독 챌린지] 저자와 함께하는 <FastAPI로 기획에서 출시까지>

120 페이지 코드 보면 created_at 코드가 class OAuthAccount 코드하고 들여 쓰기 레벨이 같은데 맞는건가요?

  • python
  • aws
  • tdd
  • FastAPI
  • 북-챌린지
가후 댓글 2 좋아요 0 조회수 81

이번 실습은 무료 플랜에서도 가능한가요?

미해결

비전공자도 이해할 수 있는 AWS 입문/실전

인증서 발급 시, 저 빨간 박스에는 "내가 미리 만든 도메인" 이름을 적어야 하는 것 맞나요? Route53에는 아무런 도메인도 안 만든 상태이고, 그래서 레코드 생성도 못해요. 그런데 도메인은 Route53에서 만드는 데 무료 플랜에선 불가능하잖아요. 그래서 다음과 같이 내도메인.한국 사이트에서 커스텀 도메인과 HTTPS 인증서를 만들었어요. 그리고 커스텀 도메인 접속도 성공했어요. 그런데, 분명 인증서는 미국 동부(버지니아 북부) 에서 발급 받아야 하는데, 저는 그런 설정 없이 성공했는데 그 이유가 무엇인가요? 아무런 문제 없나요? 그리고 제가 잘못 알고 있는 부분이 있을까요?

  • aws
  • aws-elb
  • aws-rds
  • ec2
  • s3
매콤한각설탕 댓글 2 좋아요 0 조회수 172

수강기간 연장 부탁드립니다.

미해결

AWS Certified Solutions Architect - Associate 자격증 준비하기

안녕하세요~ 새해 목표로 자격증 취득을 계획하고 있어 본격적으로 수강을 시작하려고 확인해보니, 수강 기간이 며칠 남지 않았네요. 혹시 수강 기간 연장이 가능한지 문의드립니다. 감사합니다.

  • 네트워크
  • aws
오오오리 댓글 2 좋아요 0 조회수 91

S3 호스팅? Amplify 호스팅?

미해결

비전공자도 이해할 수 있는 AWS 입문/실전

S3 호스팅을 하려고 했더니, Amplify가 더 좋다고 뜨더라고요. 이게 최신 기술인가요? 제미나이한테 물어보니깐 다음과 같은 특징이 있대요. 현업에서는 S3에서 Amplify로 옮겨가는 추세인가요? Amplify 는 내부적으로 S3 와 CloudFront 를 사용하지만, 사용자가 이를 직접 만질 필요 없이 자동화된 인터페이스를 제공합니다. 장점 빠른 배포 (CI/CD): GitHub 에 코드를 올리는 것만으로 빌드부터 배포까지 자동으로 이루어집니다. 풍부한 기능: 특정 페이지 리디렉션, 브랜치별 배포 URL 제공, 사이트 암호 설정 등을 콘솔에서 쉽게 설정할 수 있습니다. Next.js 지원: S3 와 달리 Next.js 같은 프레임워크의 SSR (서버 사이드 렌더링) 기능도 지원합니다.

  • aws
  • aws-elb
  • aws-rds
  • ec2
  • s3
매콤한각설탕 댓글 1 좋아요 0 조회수 85

수강기간 연장 부탁드립니다.

미해결

AWS Certified Solutions Architect - Associate 자격증 준비하기

8월 달부터 취업해서 업무랑 공부랑 같이 병행 해야하는데 죄송합니다. 수강기간 연장 부탁드립니다. - 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.

  • 네트워크
  • aws
김민성 댓글 1 좋아요 0 조회수 53

수강기간 연장부탁드립니다.

미해결

AWS Certified Solutions Architect - Associate 자격증 준비하기

안녕하세요. 현재 수강 중인 강의( AWS Certified Solutions Architect - Associate 자격증 준비하기 )의 학습 기간 연장을 요청드립니다. 감사합니다.

  • 네트워크
  • aws
Jinju Kim 댓글 3 좋아요 0 조회수 71

강의 연장 부탁드립니다ㅠ

미해결

AWS Certified Solutions Architect - Associate 자격증 준비하기

안녕하세요 강사님! 업무와 병행하면서 강의를 듣기가 쉽지가 않네요. 2026년 새해에는 제일 먼저 수강완료 & 자격증 취득하려고 합니다..! 강의 연장 도와주세요ㅠㅠ

  • 네트워크
  • aws
안희진 댓글 2 좋아요 0 조회수 53

47. EC2 사이즈 변경 문의

미해결

쉽게 설명하는 AWS 기초 강의

47. (실습포함) EC2 사이즈 변경 과정 중 실패 하여 글 남깁니다. 아래 과정에서 실패가 발생하였습니다. t2.medium 인스턴스 중지 -> 스냅샷 -> AMI 생성 AMI -> ami 로 인스턴스 시작 -> m7g.medium 선택 후 생성(기타 인바운드, 아웃바운드는 모두 열림으로 생성) 인스턴스 -> 생성된 인스턴스(m7g.medium) 선택 -> 연결 -> 실패(아래 로그) 연결 실패로, 시스템 로그 확인(아래 4번 인스턴스 로그) 3번 실패 에러 Failed to connect to your instance Error establishing SSH connection to your instance. Try again later. 4번 인스턴스 로그 UEFI firmware (version built at 09:00:00 on Nov 1 2018) [=3h[=3h[=3hNo bootable device found. Dropping to the EFI Shell. Exiting the UEFI shell will restart the system.UEFI Interactive Shell v2.2 EDK II UEFI v2.70 (EDK II, 0x00010000) Mapping table  FS0: Alias(s):HD0fd:;BLK3: PciRoot(0x0)/Pci(0x4,0x0)/NVMe(0x1,00-00-00-00-00-00-00-00)/HD(128,GPT,6757D47D-EB20-4D37-B258-B2BBDAC921FF,0x800,0x5000)  BLK0: Alias(s): PciRoot(0x0)/Pci(0x4,0x0)/NVMe(0x1,00-00-00-00-00-00-00-00)  BLK1: Alias(s): PciRoot(0x0)/Pci(0x4,0x0)/NVMe(0x1,00-00-00-00-00-00-00-00)/HD(1,GPT,3DDB972E-155C-4F75-A42C-4007A119B4C1,0x6000,0xFF9FDF)  BLK2: Alias(s): PciRoot(0x0)/Pci(0x4,0x0)/NVMe(0x1,00-00-00-00-00-00-00-00)/HD(127,GPT,AF191D5A-F9A1-40A8-9164-B216701312F3,0x5800,0x800) Press ESC in 5 seconds to skip startup.nsh or any other key to continue.Press ESC in 4 seconds to skip startup.nsh or any other key to continue.Press ESC in 3 seconds to skip startup.nsh or any other key to continue.Press ESC in 2 seconds to skip startup.nsh or any other key to continue.Press ESC in 1 seconds to skip startup.nsh or any other key to continue. The system will reboot in 60 seconds. Press any key to run interactive shell.The system will reboot in 59 seconds. Press any key to run interactive shell.The system will reboot in 58 seconds. Press any key to run interactive shell.The system will reboot in 57 seconds. Press any key to run interactive shell.The system will reboot in 56 seconds. Press any key to run interactive shell.The system will reboot in 55 seconds. Press any key to run interactive shell.The system will reboot in 54 seconds. Press any key to run interactive shell.The system will reboot in 53 seconds. Press any key to run interactive shell.The system will reboot in 52 seconds. Press any key to run interactive shell.The system will reboot in 51 seconds. Press any key to run interactive shell.The system will reboot in 50 seconds. Press any key to run interactive shell.The system will reboot in 49 seconds. Press any key [2025-12-27T13:17:04.737361]to run interactive shell.The system will reboot in 48 seconds. Press any key to run interactive shell.The system will reboot in 47 seconds. Press any key to run interactive shell.The system will reboot in 46 seconds. Press any key to run interactive shell.The system will reboot in 45 seconds. Press any key to run interactive shell.The system will reboot in 44 seconds. Press any key to run interactive shell.The system will reboot in 43 seconds. Press any key to run interactive shell.The system will reboot in 42 seconds. Press any key to run interactive shell.The system will reboot in 41 seconds. Press any key to run interactive shell.The system will reboot in 40 seconds. Press any key to run interactive shell.The system will reboot in 39 seconds. Press any key to run interactive shell.The system will reboot in 38 seconds. Press any key to run interactive shell.The system will reboot in 3[2025-12-27T13:17:16.737450]7 seconds. Press any key to run interactive shell.The system will reboot in 36 seconds. Press any key to run interactive shell.The system will reboot in 35 seconds. Press any key to run interactive shell.The system will reboot in 34 seconds. Press any key to run interactive shell.The system will reboot in 33 seconds. Press any key to run interactive shell.The system will reboot in 32 seconds. Press any key to run interactive shell.The system will reboot in 31 seconds. Press any key to run interactive shell.The system will reboot in 30 seconds. Press any key to run interactive shell.The system will reboot in 29 seconds. Press any key to run interactive shell.The system will reboot in 28 seconds. Press any key to run interactive shell.The system will reboot in 27 seconds. Press any key to run interactive shell.The system will reboot in 26 seconds. Press any key to run interactive shell.Th[2025-12-27T13:17:28.737525]e system will reboot in 25 seconds. Press any key to run interactive shell.The system will reboot in 24 seconds. Press any key to run interactive shell.The system will reboot in 23 seconds. Press any key to run interactive shell.The system will reboot in 22 seconds. Press any key to run interactive shell.The system will reboot in 21 seconds. Press any key to run interactive shell.The system will reboot in 20 seconds. Press any key to run interactive shell.The system will reboot in 19 seconds. Press any key to run interactive shell.The system will reboot in 18 seconds. Press any key to run interactive shell.The system will reboot in 17 seconds. Press any key to run interactive shell.The system will reboot in 16 seconds. Press any key to run interactive shell.The system will reboot in 15 seconds. Press any key to run interactive shell.The system will reboot in 14 seconds. Press any key to run int[2025-12-27T13:17:39.837609]eractive shell.The system will reboot in 13 seconds. Press any key to run interactive shell.The system will reboot in 12 seconds. Press any key to run interactive shell.The system will reboot in 11 seconds. Press any key to run interactive shell.The system will reboot in 10 seconds. Press any key to run interactive shell.The system will reboot in 9 seconds. Press any key to run interactive shell.The system will reboot in 8 seconds. Press any key to run interactive shell.The system will reboot in 7 seconds. Press any key to run interactive shell.The system will reboot in 6 seconds. Press any key to run interactive shell.The system will reboot in 5 seconds. Press any key to run interactive shell.The system will reboot in 4 seconds. Press any key to run interactive shell.The system will reboot in 3 seconds. Press any key to run interactive shell.The system will reboot in 2 seconds.[2025-12-27T13:17:51.837681] Press any key to run interactive shell.The system will reboot in 1 seconds. Press any key to run interactive shell. UEFI firmware (version built at 09:00:00 on Nov 1 2018) [=3h[=3h[=3hNo bootable device found. Dropping to the EFI Shell. Exiting the UEFI shell will restart the system.UEFI Interactive Shell v2.2 EDK II

  • aws
  • aws-vpc
  • aws-rds
  • aws-ec2
  • aws-s3
changju lee 댓글 2 좋아요 0 조회수 113

인기 태그

인프런 TOP Writers

주간 인기글