Clear Filters
Clear Filters

How to make a MATLAB Server for the mobile app, so that MATLAB is still active after logging out from SSH session?

1 view (last 30 days)

I was trying to make my own MATLAB server in place of the MathWorks Cloud which is very slow in terms of connection and brings a huge network delay. And the MathWorks Cloud have more restrictions and limits on the complexity of computations, e.g. the size.

But I could not solve the problem that I have to keep the SSH session open for MATLAB to be working. I tried the beloved nohup option, with the code below, but MATLAB would then get invalid input from /dev/null.

    nohup matlab -r "connector on;"

And if I make a MATLAB script to run the connector on command, MATLAB will simply exit after the command finishes.

Is it possible to achieve this?

Answers (1)

Benjamin Kraus
Benjamin Kraus on 14 Feb 2018
Edited: Benjamin Kraus on 14 Feb 2018
Have you tried screen?
You can also try adding a startup.m file that turns on the connector, rather than using -r.
  2 Comments
jackxujh
jackxujh on 22 Feb 2018

I tried screen, but it did not help:

    screen matlab -r "connector on MATLAB;" >> matlab.out &

Is that correct?

Meanwhile, I tried using a .m file as input, but MATLAB will automatically exit after it finishes the content, which is, connector on.

    nohup '/usr/local/MATLAB/R2017b/bin/matlab' < 'enable_MATLAB_Connector.m'
Benjamin Kraus
Benjamin Kraus on 23 Feb 2018
Edited: Benjamin Kraus on 23 Feb 2018
Did you try using startup.m to start the connector, instead of using -r?
I haven't personally used screen in a long time, so I'm not sure of the correct syntax, but I know it is a way to get processes to run after you have logged out of the terminal.
I think I would start by starting screen, then separately starting MATLAB, then while MATLAB is running start the connector. Then you should be able to log out without stopping that running session of MATLAB.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!