Intel® DevCloud
Help for those needing help starting or connecting to the Intel® DevCloud

client_loop: send disconnect: Connection reset by peer

Tchouanga__Franck
7,527 Views

please how does this error affect the job I have submitted before it happened. Does it continue or restart please help 

client_loop: send disconnect: Connection reset by peer
client_loop: send disconnect: Broken pipe
 

0 Kudos
7 Replies
AthiraM_Intel
Moderator
7,526 Views

Hi,

Thanks for reaching out to us.

You can use nohup command to run the job. Nohup is a command in Linux systems that keep processes running even after exiting the shell or terminal.

Please use the below command to run your job file.

nohup qsub job &

You can view the output of your script in the nohup.out file, which is created while running the job.

Hope this helps. If you face any issues please let us know.
 

Thanks.

0 Kudos
Tchouanga__Franck
7,526 Views

please can I have an overview on how to apply it

should I just type nohup job&

0 Kudos
Tchouanga__Franck
7,526 Views

hope its ok if I run it like this  

nohup python PythonDemo.py | qsub

0 Kudos
Tchouanga__Franck
7,526 Views

I am getting this hope its ok

u38804@login-2:~$ nohup echo python PythonDemo.py | qsub &
[1] 7204
u38804@login-2:~$ nohup: ignoring input and redirecting stderr to stdout
567652.v-qsvr-1.aidevcloud

[1]+  Done                    nohup echo python PythonDemo.py | qsub
u38804@login-2:~$
u38804@login-2:~$ qstat
 

0 Kudos
AthiraM_Intel
Moderator
7,526 Views

Hi ,

Please follow the below steps to run a job file:

Step 1. Create job file

vi job

Step 2.  Inside the file please add

#PBS -l walltime=24:00:00
python sample.py       

Please note, change the <sample.py > to your file name.

Step 3. Save the file

Press [Esc] to shift to the command mode and press :wq! and hit [Enter] to save the file.

Step 4. Run the job

nohup qsub job &

You can view the output of your script in the nohup.out file, which is created while running the job.

Hope this helps.If you face any issue, please let us know.

Thanks

0 Kudos
AthiraM_Intel
Moderator
7,526 Views

Hi,

Could you please confirm whether the solution provided was helpful?

 

Thanks

0 Kudos
AthiraM_Intel
Moderator
7,526 Views

Hi,

Hope the solution provided was helpful. We are closing this thread. Please feel free to open a new thread if you have further queries.

 

Thanks

0 Kudos
Reply