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
Hi, I'M Using Open Source On Prem Clearml, I Tried To Disable The

Hi, I'm using open source on prem clearml, I tried to disable the check_for_updates so it will stop appending the new version message on each new task:

CLEARML-SERVER new package available: UPGRADE to v2.2.0 is recommended!
Release Notes:
## New Features and Improvements
...
## Bug Fixes

But it keeps showing,
This is my apirserver.conf :

auth {
    # Fixed users login credentials
    # No other user will be able to login
    fixed_users {
        enabled: true
        pass_hashed: true
        users: [
            {
                username: "user.name"
                password: "blabla"
                name: "User Name"
            },
        ]
    }
    cookies {
    httponly: true
    secure: true
    domain: ".my.domain"
    max_age: 99999999999
    samesite: Lax
  }
}

check_for_updates {
    enabled: false
}

Thanks for any help!

  
  
Posted 28 days ago
Votes Newest

Answers 3


@<1523701070390366208:profile|CostlyOstrich36>

root@clearml:/opt/clearml/config# docker-compose -f /opt/clearml/docker-compose.yml up -d
WARNING: The CLEARML_AGENT_GIT_USER variable is not set. Defaulting to a blank string.
WARNING: The CLEARML_AGENT_GIT_PASS variable is not set. Defaulting to a blank string.
Creating network "clearml_backend" with driver "bridge"
Creating network "clearml_frontend" with driver "bridge"
Creating clearml-redis      ... done
Creating clearml-fileserver ... done
Creating clearml-mongo      ... done
Creating clearml-elastic    ... done
Creating clearml-apiserver  ... done
Creating clearml-agent-services ... done
Creating clearml-webserver      ... done
Creating async_delete           ... done
  
  
Posted 10 days ago

Where can I find it?
if you mean /opt/clearml/logs/apiserver.log then it logrotates every one hour so I'm unable to get those logs right now unless I restart the service, is there another way to check that?

  
  
Posted 27 days ago

Hi @<1853608151669018624:profile|ColossalSquid53> , can you attach a log of the server's startup?

  
  
Posted 28 days ago
370 Views
3 Answers
28 days ago
10 days ago
Tags