기본 콘텐츠로 건너뛰기

라벨이 troubleshooting인 게시물 표시

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/

Couchbase couchbase-cli line 260 에러.

서버에 메모리를 증설 한 뒤에  다시 기동을 했는데 couchbase-cli에서 갑자기 에러가 발생.   /opt/couchbase/bin/couchbase-cli server-list -c 127.0.01:8091 -u root -p password  이렇게 했더니  File "/opt/couchbase/lib/python/couchbase-cli", line 260 except getopt.GetoptError, err: SyntaxError: Invalid syntax   이렇게 메시지가 떴다.  이것저것 찾아봤지만 정보도 없고.. 일단 리부팅... 그래도 똑같은 현상 발생.. 파일 내용을 보면.. def main():     debug = False     (cluster, user, password, ssl) = ('', '', '', False)     try:         (opts, _args) = getopt.getopt(sys.argv[2:],                                      'a:b:c:dse:gdlmo:OPp:r:Ssu:vVhH', [                 'cluster=',                 'debug', ....(너무 많아서 생략)                 'delete-users=',                 ])     except getopt.GetoptError, err:         usage.command_error(err)     if len(_args) > 0:         err_message = ("Possible missing '--' in front of one of parameters '%s'," +