[[breakout]]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
breakout [2018/12/27 09:22]
beckmanf [Running long jobs]
breakout [2018/12/27 09:30]
beckmanf [Running long jobs]
Line 187: Line 187:
 The reason for this bus error is that the pytorch program tries to write the file "​checkpoint.pth.tar"​ to the home directory but the home directory cannot be accessed because of the kerberos ticket expired. The reason for this bus error is that the pytorch program tries to write the file "​checkpoint.pth.tar"​ to the home directory but the home directory cannot be accessed because of the kerberos ticket expired.
  
- +You can check the status of your current kerberos ticket with "​klist"​.
  
 +<​code>​
 +beckmanf@breakout:​~$ klist
 +Ticket cache: FILE:/​tmp/​krb5cc_12487_ssddef
 +Default principal: beckmanf@RZ.HS-AUGSBURG.DE
 +
 +Valid starting ​      ​Expires ​             Service principal
 +27.12.2018 08:​28:​43 ​ 27.12.2018 18:​28:​43 ​ krbtgt/​RZ.HS-AUGSBURG.DE@RZ.HS-AUGSBURG.DE
 + renew until 28.12.2018 08:28:37
 +</​code>​
 +
 +The kerberos ticket lifetime 10h and the renew time is 24h. So after 18:28:43 you cannot access your home directory anymore. You can apply for a new ticket with longer lifetime and a longer renew time with "​kinit"​.
 +
 +<​code>​
 +beckmanf@breakout:​~$ kinit -l 2d -r 7d
 +Password for beckmanf@RZ.HS-AUGSBURG.DE: ​
 +</​code>​
 +
 +This applies for ticket lifetime of 2 days and a renew time of 7 days. You can check the result with klist again.
 +
 +<​code>​
 +beckmanf@breakout:​~$ klist
 +Ticket cache: FILE:/​tmp/​krb5cc_12487
 +Default principal: beckmanf@RZ.HS-AUGSBURG.DE
 +
 +Valid starting ​      ​Expires ​             Service principal
 +27.12.2018 08:​30:​09 ​ 27.12.2018 18:​30:​09 ​ krbtgt/​RZ.HS-AUGSBURG.DE@RZ.HS-AUGSBURG.DE
 + renew until 03.01.2019 08:30:05
 +</​code>​
 ==== PyTorch ==== ==== PyTorch ====
  
  • breakout.txt
  • Last modified: 2022/03/26 17:38
  • by beckmanf