How to make a MATLAB Server for the mobile app, so that MATLAB is still active after logging out from SSH session?
1 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(1 个)
Benjamin Kraus
2018-2-14
编辑:Benjamin Kraus
2018-2-14
2 个评论
Benjamin Kraus
2018-2-23
编辑:Benjamin Kraus
2018-2-23
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Licensing on Cloud Platforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!