Reputation: 21
Cannot get KMS ( Kurento Media Server ) to install properly on cloud9 running Ubuntu 14.04 and I tried for a long time.
When I try to start the KMS i get this response
/etc/init.d/kurento-media-server-6.0: 18: ulimit: error setting limit (Operation not permitted) /etc/init.d/kurento-media-server-6.0: 20: ulimit: error setting limit (Operation not permitted) * Starting Kurento Media Server ...done.
There are no other obvious errors when I install it. It then doesn't exist when I try to uninstall it and when i test if it is running it is not when i grep it.
I tried to install in it on codeanywhere and on my home computer all using the standard commands from the kurento website and it installed perfectly using the standard instructions but I want it on cloud9.
Upvotes: 0
Views: 800
Reputation: 5532
It is not possible to change ulimits on Cloud9 workspaces. It would have to be changed on Cloud9's hosting platform so that command gets killed.
As a workaround, you can remove the ulimit
command from the startup script located in /etc/default/kurento-media-server-6.0
. Look for these lines here. Keep in mind that commenting those might leave you running out of file descriptors.
Upvotes: 1