The olad daemon has flags to set the RPC port used by OLA. Unfortunately, (almost?) none of the included command-line programs provide a way to specify an alternative port.
For example, ola_streaming_client, ola_set_dmx, ola_dmxconsole, and ola_dmxmonitor all seem to use the RPC server (default port: 9010), but none of them provide a way to use an alternative port. Internally, the C++ client class supports it, but the command-line tool doesn't expose this to the user.
This isn't a big deal for normal usage -- I don't think I'd ever want to run multiple instances, or need to use a non-standard port for my only instance -- but today I'm doing some troubleshooting and it sure would be handy in this case.
The
oladdaemon has flags to set the RPC port used by OLA. Unfortunately, (almost?) none of the included command-line programs provide a way to specify an alternative port.For example,
ola_streaming_client,ola_set_dmx,ola_dmxconsole, andola_dmxmonitorall seem to use the RPC server (default port: 9010), but none of them provide a way to use an alternative port. Internally, the C++ client class supports it, but the command-line tool doesn't expose this to the user.This isn't a big deal for normal usage -- I don't think I'd ever want to run multiple instances, or need to use a non-standard port for my only instance -- but today I'm doing some troubleshooting and it sure would be handy in this case.