Search
Page 8 of 30. Showing 296 results (0.014 seconds)
Add a lag between worker job launches
The qb.conf setting you need to use is: worker_job_start_delay The field is in seconds. worker_job_start_delay = 10…How to install a Qube supervisor and/or worker license
_licenseInstallation…Supervisor Installation
Qube-core must be installed before you can install the worker. Install with the platform-specific installer process listed below. Once installed, the Supervisor daemon…How to restart the Supervisor
Linux % sudo /sbin/service supervisor restart OSX % sudo launchctl stop com.pipelinefx.supervisor % sudo launchctl start com.pipelinefx.supervisor Windows…How to have the worker service run as a particular user on Windows
Configure the service to log on a a particular user. This user must be in the local Administrator's group, and the following User Rights Assigments policies must be applied to both the Administrator's and Network Service groups: replace a process-level t…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 " in the logoff script. To set up logon/logoff scripts for…How to implement locking/unlocking a Linux worker at user login/out
KDM: In /usr/share/config/kdm, create the files: Xstartup (run a logon) Xreset (run at logoff) GDM: In /etc/gdm, create the files: PostLogin/Default (Logon) PostSession/Default (Logoff) This is the script that runs on login: MYHOSTNAME=`/bin/hostname` CO…How do I set up debugging for a supervisor or worker crash on Windows?
Briefly, set up Dr. Watson to get a crash dump. From the Start Menu, run these commands: Start->Run->drwtsn32 -i Start->Run->drwtsn32 More information on Dr. Watson can be found at Microsoft: http://support.microsoft.com/kb/308538 http://support.microsoft…How do I reset the Supervisor MySQL database?
/upgrade_supervisor -reset you may need to restart the Supervisor as well sudo SystemStarter stop supervisor sudo SystemStarter start supervisor Migrated to Confluence 5.3…How to set the starting job id to other than 250
: mysql -u root -e "INSERT INTO qube.jobid (id,realid,serverid) VALUES(1000,1000,0)" This can be done on a running supervisor, there's no need to stop it before executing…