Why am I unable to use the Admin Center or connect to a cluster with Parallel Computing on Debian based systems?
조회 수: 2 (최근 30일)
이전 댓글 표시
When trying to open matlabpool on a Debian Linux system, I receive the following message:
Starting matlabpool using the 'local' configuration ... stopped.
??? Error using ==> matlabpool at 104
The interactive parallel job errored with the following message:
Lab 1 on host localhost failed to connect to the MATLAB client
on host localhost, port 27371.
Also I open the Admin Center and try to run a connectivity test, the test never completes and I receive no results. How can I resolve this issue?
채택된 답변
MathWorks Support Team
2011년 6월 16일
This bug has been fixed in Release 2011a (R2011a). For previous product releases, read below for any possible workarounds:
This issue is a bug in Java on Debian with ipv6 settings. When the net.ipv6.bindv6only is set to 1, networking is broken for Java. For more details about this bug, see the report here:
To check this setting you can run the following command:
sudo /sbin/sysctl net.ipv6.bindv6only
If the output of the command is "net.ipv6.bindv6only=1", you can temporarily change it by running:
sudo /sbin/sysctl net.ipv6.bindv6only=0
For a persistent fix, run the command:
sudo sed -i 's/net.ipv6.bindv6only\ =\ 1/net.ipv6.bindv6only\ =\ 0/' \
/etc/sysctl.d/bindv6only.conf && sudo invoke-rc.d procps restart
In either case, once complete, restart MATLAB to enable the changes. Once MATLAB is restarted, you should be able to use matlabpool once more.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!