Adding batch node on ubuntu

I’ve installed a new batch node on Ubuntu 14.04

I understand there is a need to run kaltura-batch-config.sh but it fails since it is Centos oriented script.

any suggestions?

The new batch node does not take convert jobs.

Hi,

The kaltura-*config.sh scripts are indeed only necessary in RPM based systems, because Debian, Ubuntu and all other dists using deb as their install format make use of the wonderful debconf mechanism so they can prompt for input interactively while running the postinst hook.
In the case of batch, no additional input is required because all needed input was received during the kaltura-base postinst.
You can re-run the batch postinst by running:
# dpkg-reconfigure kaltura-batch

You probably want to do both:
# dpkg-reconfigure kaltura-base
and:
# dpkg-reconfigure kaltura-batch

Then, tail /opt/kaltura/log/kaltura_batch.log for errors

Thanks

you’re right.
I just needed to change serviceUrl in batch.ini to point to the original server.

Thanks