By Robert Moggach -
Has anyone tried getting vrayslave running via xinetd?
I wrote the following as a stab in the dark but it's not working... not sure if it's even possible??
#/etc/xinetd.d/vrayslave
# default: on
# description: The vrayslave service automatically
# Â Â Â Â Â Â Â starts a vray slave instance </font>
# Â Â Â Â Â Â Â when a request is made. It is </font>
# Â Â Â Â Â Â Â limited to 2 connections so no more </font>
# Â Â Â Â Â Â Â than 2 distributed renders happen at once.
service vrayslave
{
 disable = no
 server = /dashing/tools/vray/builds/maya2013/linux_22501/maya_vray/bin/vrayslave
 server_args = -server -portNumber=20207
 protocol = tcp
 port = 20207
 socket_type = stream
 wait = no
 user = pipeline
 env = LD_LIBRARY_PATH=/dashing/tools/vray/builds/maya2013/linux_22501/vray/lib/linux_x64/gcc-4.1
 passenv = PATH VRAY_FOR_MAYA2013_MAIN_x64 VRAY_FOR_MAYA2013_PLUGINS_x64 VRAY_CONNECT_TIMEOUT VRAY_USE_NORMAL_DIFFERENTIALS VRAY_TOOLS_MAYA2013_x64 VRAY_LOCATION VRAY_PLUGINS_x64 VRAY_PATH VRAY_AUTH_CLIENT_FILE_PATHÂ
 instances = 2
 log_type = FILE /var/log/vrayslave.log
 log_on_success = HOST PID DURATION EXIT
 log_on_failure += USERIDÂ
}