IT'S DO
[react] npm install // npm error code ERESOLVE
error 2024. 10. 30. 16:07

npm install 시  아래 처럼 나올 때. # 에러 내용 : $ npm install npm error code ERESOLVE npm error ERESOLVE could not resolve npm error npm error While resolving: react-virtualized@9.22.3 npm error Found: react@17.0.2 npm error node_modules/react npm error react@"^17.0.2" from the root project npm error peer react@"*" from @testing-library/react@12.1.2 npm error node_modules/@testing-library/react npm error @..

[Error] Jekyll $ bundle install // An error occurred while installing wdm (0.1.1), and Bundler cannot continue.
error 2024. 10. 23. 16:39

# 에러 : Jekyll $ bundle install  시에 An error occurred while installing wdm (0.1.1), and Bundler cannot continue.  # 해결 : Gemfile 안에 아래 내용 삭제gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

[ssl error] Caused by: sun.security.validator.ValidatorException: PKIX path building failed:
error 2024. 10. 8. 14:43

# 에러 : Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target  # 원인 : 보통 검증되지 않은 인증서 즉 사설 인증서를 사용한 사이트에서 해당 소스의 api를 불러올때 나옴. # 해결 : 1. 해당 사이트에서 인증서 사서 쓰기. (해당 사이트의 소스를 부르는쪽, 요청을 받는 쪽 사이트에서 사설 인증서 말고 검증된 인증서 사서 쓰기) 2. 요청을 보내는 쪽, 즉 당신의 Spring Boot 서버에서 ..

[ssl error] javax.net.ssl.SSLException: Certificate doesn't match any of the subject alternative names
error 2024. 10. 8. 14:35

# error :javax.net.ssl.SSLException: Certificate doesn't match any of the subject alternative names # 해결: 인증서 만들때 SAN 설정 해줘야함 SAN 설정 부분이"subjectAltName=DNS:knowledge.smartconstruction.kr,IP:localhost" 이 부분(아래 명령어)localhost에는 필요한 아이피 넣기. # linux에서 만드는 명령어openssl genrsa -des3 -out server.key 2048 openssl req -new -key server.key -out server.csr -subj "/C=KR/ST=Seoul/L=Songpa-gu/O=Saman/OU=IT Depar..