How to disable Cloud9 IDE on BBB

Hi! I created an app in NodeJS for Beaglebone and I don’t want anyone to have access to the code via Cloud9 or any other way. My questions are:

  1. How to disable the Cloud9 IDE on Beaglebone Black? I’ve already tried “systemctl disable cloud9.service” but it did not work. Even after restarting the BBB, Cloud9 still works;

  2. What else is it necessary to disable at BBB?

Thanks!

you need to disable the socket too:

sudo systemctl stop cloud9.service || true
sudo systemctl stop cloud9.socket || true

Regards,

Thanks! Are there any other services that I should be aware of before handing the BBB to the customer?
My app uses the Socket.io library. I imagine there is no relationship between these things, because the services “cloud9.service” and “cloud9.socket” are independent apps, right?

Thanks again!