For the 'Failed to initialize RED Decoder with the configured number of decoders' error, chances are you have some other piece of software running which is already bound to one or more TCP ports 10000-10007. When Resolve runs it launches a bunch of DPDecoder processes, each one binding to a port starting at 10000. If one is already in use by some other application, it will fail.
You can look on Windows by opening a Command Prompt, and doing
- Code: Select all
netstat -a -b -n
and looking for anything LISTENING on one of those ports like:
- Code: Select all
TCP 0.0.0.0:10000 0.0.0.0:0 LISTENING
[Whatever.exe]
where [Whatever.exe] is the task bound to port 10000 in this example. One likely culprit is uTorrent that binds to 10000 in particular.
I'm not in front of a Mac right now but you should be able to do something similar in a Terminal like
- Code: Select all
netstat -alpn