기본 콘텐츠로 건너뛰기

라벨이 bash인 게시물 표시

wget ERROR: The certificate of ‘alphasvr.littleworld.net’ is not trusted. - Troubleshooting

bash shell의 wget에서 이런 에러 메시지가 나면 해결방법  ERROR: The certificate of ‘alphasvr.littleworld.net’ is not trusted. 이 에러는 wget이 HTTPS로 연결된 사이트의 SSL 인증서를 신뢰하지 않는다는 것을 나타냅니다. 이를 해결하기 위해 다음과 같은 옵션을 사용하여 wget을 실행할 수 있습니다: --no-check-certificate 사용: 이 옵션은 SSL/TLS 인증서를 확인하지 않고 강제로 다운로드를 진행합니다. 그러나 이렇게 사용하면 보안상의 문제가 발생할 수 있으므로 사용에 주의해야 합니다. wget --no-check-certificate https://alphasvr.musubi.green/your/file CA 인증서 파일 지정: CA(Certificate Authority) 인증서 파일을 지정하여 SSL 인증서를 확인하도록 할 수 있습니다. wget --ca-certificate=/path/to/ca-certificate-file https://alphasvr.musubi.green/your/file SSL 인증서 검증 활성화: 다운로드하는 동안 SSL 인증서를 검증하도록 --secure-protocol 및 --https-only 옵션을 사용할 수 있습니다. wget --secure-protocol=auto --https-only https://alphasvr.musubi.green/your/file 위의 옵션 중 하나를 선택하여 사용하면 됩니다. 다만, --no-check-certificate는 보안에 취약하게 만들 수 있으므로 사용 시 주의가 필요합니다. 가능하면 CA 인증서 파일을 제공하거나 SSL 인증서 검증을 유지하도록 하는 것이 좋습니다. giip :: Control all Robots and Devices! Free inter-RPA orchestration tool! https://giipasp.azurewebsites.net/

Shell - date command examples - Linux Bash

TodayYYYYMMDDHH24MISS= `date '+%Y%m%d%H%M%S'` TodayYYYYMMDD= `date '+%Y%m%d'` TomorrowYYYYMMDD= `date +%Y%m%d --date '1 day'` YesterdayYYYYMMDD= `date +%Y%m%d --date '1 day ago'` NextMonthYYYYMMDD= `date +%Y%m%d --date '1 month'` PrevMonthYYYYMMDD= `date +%Y%m%d --date '1 month ago'` giip :: Free mixed RPA orchestration tool!  https://giipasp.azurewebsites.net/