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
Documentation Is Not Good Because Beginner Or Intermiate People Cant Undeerstand, Only More 20 Years Of Exp Can I Understand.. I Checked With Exp People So I Am Saying. I Am Intermiate Guy

Documentation is not good because beginner or intermiate people cant undeerstand, only more 20 years of exp can i understand.. i checked with exp people so i am saying. i am intermiate guy

  
  
Posted 2 years ago
Votes Newest

Answers 42


You need to authenticate your communication with the ClearML server initially somehow, no? Otherwise basically anyone can create credentials on your server...
After you have authentication you can create credentials via the terminal.

You can create up to 10 sets of credentials per user so if you plan on creating new credentials every time you want to run a job - this is an incorrect approach.

Therefor - you should create the credentials once and then use them as environment variables as you were suggested to do.

Makes sense?

  
  
Posted 2 years ago

i am saying in the UI, if u give all in UI .. then give to UI.. why u mixing all.. becz of this password auth issue.. i am trying to do all from backend

  
  
Posted 2 years ago

so single script i can create master & worker.. this my concern sir.. if you csnt help also let me know.. thanks

  
  
Posted 2 years ago

Also, please don't send messages to the channel when posting in a thread

  
  
Posted 2 years ago

this will work but i need clearml_basic_token or secret key & accesss key

  
  
Posted 2 years ago

but missing part now.. queue.. this one even not there in doc..little worried now 🥶

  
  
Posted 2 years ago

this is my scirpt working fine.. thnks for the help..

  
  
Posted 2 years ago

Hi @<1561885921379356672:profile|GorgeousPuppy74> , you can get the key/secret pair from the ClearML UI.
I think this is the documentation you were looking for: None
You can access the settings page via the profile icon at the top right.

  
  
Posted 2 years ago

image

  
  
Posted 2 years ago

or before i have to do?? my case this one also its not working

  
  
Posted 2 years ago

Yes, this is how to create fixed users

  
  
Posted 2 years ago

The only thing you can do is, if you are using fixed users in the server configuration, you can use the fixed user's username and password as a credential set (username=key, password=secret)

  
  
Posted 2 years ago

@Jake H. 
#!/bin/bash

# Get the access key and secret key from the API response
response=$(curl -s -u "antony:antony" 
)
access_key=$(echo "$response" | jq -r '.data.credentials.access_key')
secret_key=$(echo "$response" | jq -r '.data.credentials.secret_key')

# Echo the access key and secret key
echo "Access Key: $access_key"
echo "Secret Key: $secret_key"

# Verify the presence of access key and secret key
if [[ -n "$access_key" && -n "$secret_key" ]]; then
    echo "Access key and secret key are set."
else
    echo "Access key or secret key is missing."
fi
  
  
Posted 2 years ago

i hope you are saying this method.. i tried but i dont see any changes in UI, how can i verify sir
image

  
  
Posted 2 years ago

i hope u understand my concern.. i want to install clearml server & cleaerml agen together.. same script..

  
  
Posted 2 years ago

okay.. this clearml dynamic access creation how its work..

  
  
Posted 2 years ago

once the server is up, you cannot change it

  
  
Posted 2 years ago

but your doc says like this..

  
  
Posted 2 years ago

@<1523701087100473344:profile|SuccessfulKoala55> @<1523701070390366208:profile|CostlyOstrich36> thanks for the help.. i created creds.. using this command

curl -s -u "antony:antony" 

now i need help to bypass clearml-init manual paste key its wont support .. any other bypass is available

  
  
Posted 2 years ago

The reason am asking.. while agen is spin up.. it will add queue also ..

  
  
Posted 2 years ago

if u say clearml have good security.. i dont agree.. i dont see any username & password authentication.. its open server

  
  
Posted 2 years ago

You can open developer tools (F12) and see in the UI what is happening when you create a new queue 🙂

  
  
Posted 2 years ago

The dynamic access creation is only dont by the UI

  
  
Posted 2 years ago

None

  
  
Posted 2 years ago

This is a configuration you need to do before starting the server

  
  
Posted 2 years ago

but i need it.. from terminal.. how to create using terminal in clearml server. this one i needed.. how to create access key & secret key using terminal

  
  
Posted 2 years ago

None

  
  
Posted 2 years ago

sure.. sorry for posting msg there..

  
  
Posted 2 years ago

Can you link to the the documentation you're referring to?

  
  
Posted 2 years ago

Instead of the cookie you need to use Basic Auth, with the username and password

  
  
Posted 2 years ago
137K Views
42 Answers
2 years ago
2 years ago
Tags