It's likely that there is an error in your job submission script. Check to make sure it is trying to cd to the correct directory, load any necessary modules, etc. Make sure your submission script has a blank line at the end. Staff can assist if requested; please email help@msi.umn.edu and let us know your username, which machine you are using, and the path to your submission script.
Putting the following lines in your submission script will cause the system to send you emails about the status of your jobs to your UMN email address (replace YourInternetID with your UMN username):
#SBATCH --mail-type=END,FAIL # Mail events (can use any combination of the following: ALL, NONE, BEGIN, END, FAIL)
#SBATCH --mail-user=YourInternetID@umn.edu
This does not need to be your UMN email address; you can also have this email sent to an alterantive email address, such as Gmail, with lines such as:
#SBATCH --mail-type=END,FAIL # Mail events (can use any combination of the following: ALL, NONE, BEGIN, END, FAIL)
#SBATCH --mail-user=YourEmail@gmail.com
If it is determined that an error exists in code which you have written, MSI has debugging software resources available which may help you locate and fix the error.