Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hello, Everyone, Just Wanted To Ask, How We Can Fix The Following Issue:

Hello, everyone, just wanted to ask, how we can fix the following issue:

Retrying (Retry(total=229, connect=240, read=240, redirect=240, status=240)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1007)'))': /auth.login
  
  
Posted 4 months ago
Votes Newest

Answers 3


I wanted to know what the best way to create and register the SSL keys is.

of I see, so basically you need to add it to add nginx with SSL certificates on top of the hosted service (or configure the dockercompose nginx container to add that)
Then you need to add the self signed SSL into any host machine (I'm assuming these are not "valid" SSL certificates generated by a reputable SSL provider)
But generally speaking if you are using self hosted clearml-server on a local machine that no one can access from the outside, there is really no reason for SSL, no?

  
  
Posted 4 months ago

Hi @<1657918706052763648:profile|SillyRobin38>
You should either disable certificate verification or add the self-signed certificate to your urllib
None
or set

export REQUESTS_CA_BUNDLE="/path/to/cert/file"
export SSL_CERT_FILE="/path/to/cert/file"
  
  
Posted 4 months ago

Hi @<1523701205467926528:profile|AgitatedDove14> , thanks for the answer. I just wanted to know more about the broader plot of it. I'm more of an ML engineer, so for a self-hosted server, I wanted to know what the best way to create and register the SSL keys is. I think this might be out of context or a noob question, so I apologize for it.

  
  
Posted 4 months ago