TroubleShooting

    [Nginx] 파일 접근 시 Permission denied 오류 해결

    [Nginx] 파일 접근 시 Permission denied 오류 해결

    nginx를 설치하고 실행해보는 작업을 진행하는 중에 발생한 오류이다.🤔 문제 상황서버 내 특정 경로에 있는 이미지를 가져올 수 있도록 nginx에서 루트 경로 설정을 한 뒤 브라우저에서 해당 이미지를 조회하니, 아래와 같이 403 에러가 발생하였다. ✍🏻 접근 방식nginx의 error.log 파일을 확인해보니 아래와 같이 Permission Denied 가 출력되어있다. [error] 7781#0: *18 open() "/nas/error.html" failed (13: Permission denied), client: {접근 IP}, server: {접근 Host}, request: "GET /favicon.ico HTTP/1.1", host: "{서버 IP}", referrer: "https:..

    [Spring Security] permitAll() 적용되지 않는 이슈 해결

    [Spring Security] permitAll() 적용되지 않는 이슈 해결

    서론다운로드 도메인의 애플리케이션에는 권한 있는 사용자만 접근 가능한 API 1개로만 존재했습니다.최근, 권한 체크 없이 접근 가능한 API를 한개 더 추가해야하면서 Spring Security의 설정을 수정해야 했습니다.구체적인 기능에 대한 설명1) 권한이 있는 사용자에 한해 다운로드할 수 있도록 하기 위해 애플리케이션 내 API에서 요청을 처리하도록 하였고,2) 권한 체크가 필요 없는, 누구나 다운로드할 수 있는 파일들의 경우 Nginx에서 파일들을 나르도록 처리하고 있습니다.(해당 서버는 NAS 서버와 마운트 되어있었기 때문에 파일을 매핑하여 전달하는 것이 가능했습니다.)기존에는 VM 환경에서 구동 중이었으나 컨테이너 환경으로 전환해야하면서 Nginx가 수행하던 역할을 애플리케이션 내에서 처리하기로..

    [JPA] 쿼리 생성하는 메서드명의 keyword를 체크하자.

    [JPA] 쿼리 생성하는 메서드명의 keyword를 체크하자.

    에러 발생한 에러는 다음과 같습니다. Caused by: java.lang.IllegalStateException: Operator SIMPLE_PROPERTY on imageId requires a scalar argument, found class {클래스명} in method {메서드명}({메서드의 인자 path}). failed to creqte query ~~ 라고 하며 위와 같이 문제되는 메서드를 친절히 알려주는데, 해당 메서드가 쿼리를 만들어내지 못한다는 의미로 해석할 수 있습니다. 바로 아래 deleteAllByImageId() 메서드가 문제입니다. @Repository public interface ImageRepository extends JpaRepository { // 생략 void..

    [데이터 무결성 위반] nested exception is org.springframework.dao.DataIntegrityViolationException

    [데이터 무결성 위반] nested exception is org.springframework.dao.DataIntegrityViolationException

    발생 에러 Request processing failed; nested exception is org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; nested exception is org.hibernate.exception.DataException: could not execute statement DataIntegrityViolationException, 즉 데이터 무결성 (Data Integrity) 위반 문제(Violation Exception)가 발생했다. 에러 원인 Review id를 외래키로 참조하고 있는 Comment 테이블이 있기 때문에 Review 데이터를 제거하려할..

    MySQL 삭제 후 재설치 에러 : The older version of MYSQL Installer

    MySQL 삭제 후 재설치 에러 : The older version of MYSQL Installer

    기존에 있던 MySQL의 root 비밀번호를 잊어버리는 바람에 제거 후에 재설치를 하게 됐는데... 이번 글에서 다룰 오류 뿐만 아니라 여러 문제로 해결하는 데에만 하루하고 몇 시간을 쏟았다... 결국 원인은 구글링하며 문제를 해결하던 중 레지스트리 파일을 건들인 것이 원인이라고 생각이 든다. 만약 필자의 상황처럼 root 비밀번호를 잊어버려 MySQL 제거 후 재설치하다가 위와 같은 에러가 발생한 상황이라면 아래 과정을 진행해보자! 문제 mysql-installer-community-8.0.27.1 파일을 클릭하여 다운을 받으려하면 아래와 같이 오류가 뜬다. The older version of MySQL Installer - Community cannot be removed. Contact your ..

    [mustache 에러] com.samskivert.mustache.MustacheParseException: Section close tag with mismatched open tag 'if' != 'if sessionScope.principal'

    [mustache 에러] com.samskivert.mustache.MustacheParseException: Section close tag with mismatched open tag 'if' != 'if sessionScope.principal'

    발생 에러 com.samskivert.mustache.MustacheParseException: Section close tag with mismatched open tag 'if' != 'if sessionScope.principal' @ line 44 구체적으로는 아래와 같다. 더보기 com.samskivert.mustache.MustacheParseException: Section close tag with mismatched open tag 'if' != 'if sessionScope.principal' @ line 44 at com.samskivert.mustache.Mustache$Accumulator.requireSameName(Mustache.java:754) ~[jmustache-1.15..