Search

Search

Help

Page 1 of 5. Showing 42 results (0.013 seconds)

  1. Worker Locking

    /Schedule: Pick on a weekly calendar the times that the Worker(s) should be locked or unlocked Lock/Watchdog: Automatically lock and unlock the Worker based on interactive computer…
    QubeFeb 01, 2017
  2. How can a Windows machine be locked/unlocked when users logon/logoff?

    You can use Windows' logon/logoff scripts to automatically lock/unlock a machine when users logon/off. Basically, you'd call "qblock " in the logon script, and "qbunlock…
    QubeOct 15, 2014
  3. How to implement locking/unlocking a Windows worker at user login/out

    You can use Windows' logon/logoff scripts to automatically lock/unlock a machine when users logon/off. Basically, you'd call "qblock " in the logon script, and "qbunlock…
    QubeApr 18, 2019
  4. How to implement locking/unlocking an OS X worker at user login/out

    Many users have asked if we have scripts that would automatically lock the worker when a user logs in, and unlock it when they log out. Here's how. ensure that no other…
    QubeOct 20, 2014
  5. How to implement locking/unlocking a Linux worker at user login/out

    ) PostSession/Default (Logoff) This is the script that runs on login: MYHOSTNAME=`/bin/hostname` COMMAND="/usr/local/pfx/qube/bin/qblock --lock --purge $MYHOSTNAME" logger Running "$COMMAND…
    QubeOct 15, 2014
  6. Windows Workers in Service Mode: operations such as killing/blocking jobs or locking workers do not take effect immediately; aggressive preemption does not seem to work properly.

    Objects) You may see one or more of the following symptoms: You cannot kill, block, or otherwise manipulate a running job instance You cannot lock a worker and purge jobs…
    QubeAug 16, 2018
  7. Renders submitted through the command line fail or lock up

    Due to changes in render software architecture, a mechanism called JobObject which is used by the Qube! worker disrupts the internal code in common renderers such as 3dsmax and AfterEffects. The worker must be notified not to use the JobObject. To do this…
    QubeOct 15, 2014
  8. What if I want to lock down certain hosts to only run certain jobs?

    There are several ways to do this in Qube, but a best practice that we recommend is to use the worker's cluster and restrictions as outlined in How to use clustering for workers. Essentially, you set a worker's worker_cluster and worker_restrictions to th…
    QubeJan 19, 2015
  9. qblock

    Lock available job slots on a Worker Description qblock locks the available job slots on a Qube! Worker. Usage qblock [options] hostname… where hostname…
    QubeDec 14, 2014
  10. workerLock.py

    #!/usr/bin/env python """ This script will lock the worker and then loop forever until it's killed. When killed with the SIGTERM signal, it will unlock the worker. It is meant…