Cron job problems: Can't reload '/usr/loca​l/MATLAB/R​2015b/bin/​glnxa64/li​bmwsl_Asyn​cioQueue.s​o'

3 views (last 30 days)
I'm running Matlab 2015b on Ubuntu 16.04.3. I've created a bash script for automatically running a code test suite that I intend to run on a nightly basis using cron.
#!/bin/bash
cd ~/data/trunk
svn update
matlab -nodisplay -nosplash -nodesktop -r autoTest
The script runs fine from the command line. However, Matlab exits with error
Can't reload '/usr/local/MATLAB/R2015b/bin/glnxa64/libmwsl_AsyncioQueue.so'
when cron tries to run it. Here's an example of my crontab file:
SHELL=/bin/bash
*/15 * * * * ~/scripts/autoTest.sh > ~/scripts/autoTest.log
(right now I'm running the script every 15 min as part of the debug effort.) Does anyone have any ideas of how to get this script to run under cron? What does libmwsl_AsyncioQueue do, and why would it behave differently under cron?
Thanks!

Accepted Answer

Walter Roberson
Walter Roberson on 16 Oct 2017
Is it possible that you have set the JAVA* environment variables to point Java to a place other than what MATLAB would expect by default? cron jobs do not go through any login sequence; you might need to set a couple of environment variables in the shell script.
  4 Comments
Nathan Fitzgerald
Nathan Fitzgerald on 17 Oct 2017
Looks like the culprit was the USER environment variable. I ended up copying the values for all of my environment variables and pasting them into the crontab. The "Can't Reload" error disappeared at that point. Then I started pruning the number of environment variables until I got down to the subset that still allowed everything to work, which turned out to be just the USER variable.

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!