Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] : redis 비밀번호 할당, 경매 상태 스케줄러 수정 #164

Merged
merged 3 commits into from
May 3, 2024

Conversation

hyun2371
Copy link
Member

@hyun2371 hyun2371 commented May 3, 2024

📑 작업 상세 내용

  • redis 비밀번호 할당

    • 기존에는 redis 보안을 위해 기본 포트 말고 다른 포트 번호를 할당했습니다.
    command: --port 6385
    ports:
       - "6385:6385"
    expose:
       - "6385"
    • 패스워드 인증 방식이 보안성이 높을 것 같아 해당 방식으로 변경하였습니다.
      - command: redis-server --requirepass "pw"
    • application.yml에 spring.data.redis에 password를 추가했습니다.
    • 우분투에서 접속 시 비밀번호 인증 후 redis에 쿼리할 수 있습니다.
  • 스케줄러 함수 수정

    • 기존에는 하루가 지난 경매들을 체크해 경매 상태를 변경하였습니다.
    • 스케줄러 돌릴 때 에러가 날 수도 있으므로 이전 날짜 경매들까지 체크하여 상태 변경하도록 수정했습니다.

💫 작업 요약

  • redis 비밀번호 할당
  • 스케줄러 함수 수정

@hyun2371 hyun2371 added the feat New feature or request label May 3, 2024
@hyun2371 hyun2371 requested a review from ParkJuhan94 May 3, 2024 10:12
@hyun2371 hyun2371 self-assigned this May 3, 2024
@hyun2371 hyun2371 linked an issue May 3, 2024 that may be closed by this pull request
2 tasks
Copy link

github-actions bot commented May 3, 2024

Test Results

130 tests   129 ✅  33s ⏱️
 34 suites    1 💤
 34 files      0 ❌

Results for commit 0f00652.

@hyun2371 hyun2371 merged commit 1799fc4 into dev May 3, 2024
3 checks passed
@hyun2371 hyun2371 deleted the feat/#162/redis-pwd-scheduler branch May 3, 2024 11:08
@ParkJuhan94
Copy link
Contributor

고생하셨습니다 !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat] : redis 비밀번호 할당, 경매 상태 스케줄러 수정
2 participants