Hi, I tried to setup headless crowd-render server and run into some issues. I tried command i found from other posts but since there is new version of addon and I use Blender 2.80 this error shows.
blender-2.80: error: unrecognized arguments: server_int_proc
This is command I used to run server:
blender-2.80 -b -P ~/.config/blender/2.80/scripts/addons/crowdrender/src/py_3_7/serv_int_start.py -- "server_int_proc"
What should I try?
Generally the format for setting up headless (for anyone else stumbling across this post and wondering how it works for your system) is the following
*path to blender* -b -P *path to crowdrender addon folder*/src/py_3_7/serv_int_start.py -- -t "server_int_proc"
This format works only for blender 2.80 mind you. Where your addons folder is located depends on the OS, as you can see for linux, its in
~/.config/blender/2.80/scripts/.
For windows, you can find your scripts folder, usually, in
C:\Users\*your_user_name*\AppData\Roaming\Blender Foundation\Blender\2.80\scripts\addons
and finally for macOS users
~/Library/Application Support/Blender/2.80/scripts/addons
Feel free to reply to this thread is you have trouble getting this to work :)
Arrgggghh so sorry Dejan, I should have answered this ages ago, for some reason I missed it, sorry about that.
We recently changed the way we do arguments to start a headless server. So now you need to prefix the "server_int_proc" with -t for 'type' like this
blender-2.80 -b -P ~/.config/blender/2.80/scripts/addons/crowdrender/src/py_3_7/serv_int_start.py -- -t "server_int_proc"