FAQ: Difference between revisions
K Siegmund (talk | contribs) |
K Siegmund (talk | contribs) |
||
| (13 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__TOC__ |
__TOC__ |
||
Frequently Asked Questions |
|||
== Access and Account Issues: Generic Advice == |
|||
* Double-check your [[Registration/Login/Username|username]] and [[Registration/Password|password]]. |
|||
* Make sure your CAPS LOCK key is not enabled. |
|||
* Are you within the university network (Universities in Baden-Württemberg, BELWÜ)? |
|||
<!-- [[LOST_ACCESS]] redirects to this FAQ page. If you move the content, you have to adjust the link--> |
|||
== Access and Account Issues: bwUniCluster == |
== Access and Account Issues: bwUniCluster == |
||
| Line 20: | Line 31: | ||
== Access and Account Issues: bwForCluster == |
== Access and Account Issues: bwForCluster == |
||
<!-- [[LOST_ACCESS_bwForCluster]] redirects to this heading. Do not change heading without adjusting the redirects --> |
|||
===Q: I Cannot Log In to my bwForCluster and See 'Status: LOST_ACCESS' in the Registry Info=== |
===Q: I Cannot Log In to my bwForCluster and See 'Status: LOST_ACCESS' in the Registry Info=== |
||
| Line 28: | Line 40: | ||
Please check which of those two things are missing using the following documentation: |
Please check which of those two things are missing using the following documentation: |
||
==== Entitlement ==== |
==== Entitlement (and IDP Problems) ==== |
||
You need the bwForCluster Entitlement. |
You need the bwForCluster Entitlement. |
||
The same page can also help you recognize problems with the IDP (identity provider) of your home university |
|||
<b>→</b> Read [[Registration/bwForCluster/Entitlement]] and check if it is present. |
<b>→</b> Read [[Registration/bwForCluster/Entitlement]] and check if it is present. |
||
In case |
|||
| ⚫ | |||
* the entitlement is missing |
|||
* Name/Email/eduPersonPrincipalName in the "personal data" tab are incorrect or missing |
|||
| ⚫ | |||
Note: in case of temporary problems with your IDP, data in the registration server can become corrupted or missing. Logging in to the registration server that your cluster uses can fix this problem and fill in correct values again. Check in [[Registration/Password]] which registration server your cluster uses and log in there (for some cluster it is the same as given for the Entitlement Check). |
|||
==== ZAS Permission ==== |
==== ZAS Permission ==== |
||
| Line 43: | Line 62: | ||
=== Forgot Password === |
=== Forgot Password === |
||
Please set a new password for the service |
Please set a new password for the service. |
||
→ [[Registration/Password|Password Guide]] |
|||
=== Lost Phone with OTP Secret === |
=== Lost Phone with OTP Secret === |
||
Latest revision as of 15:31, 22 June 2026
Frequently Asked Questions
Access and Account Issues: Generic Advice
- Double-check your username and password.
- Make sure your CAPS LOCK key is not enabled.
- Are you within the university network (Universities in Baden-Württemberg, BELWÜ)?
Access and Account Issues: bwUniCluster
Q: I Cannot Log In to my bwUniCluster and See 'Status: LOST_ACCESS' in the Registry Info
A: You need to fulfill the requirements outlined in → Registration/bwUniCluster
Please check which of those two things are missing using the following documentation:
Entitlement
You need the Registration/bwUniCluster/Entitlement
If the entitlement is missing: please check with the local support of your home university (the university where you study or are employed)
Questionnaire
→ Check if you answered the Questionnaire.
Access and Account Issues: bwForCluster
Q: I Cannot Log In to my bwForCluster and See 'Status: LOST_ACCESS' in the Registry Info
A: You need to fulfill the requirements outlined in
Please check which of those two things are missing using the following documentation:
Entitlement (and IDP Problems)
You need the bwForCluster Entitlement.
The same page can also help you recognize problems with the IDP (identity provider) of your home university
→ Read Registration/bwForCluster/Entitlement and check if it is present.
In case
- the entitlement is missing
- Name/Email/eduPersonPrincipalName in the "personal data" tab are incorrect or missing
→ please check with the local support of your home university (the university where you study or are employed)
Note: in case of temporary problems with your IDP, data in the registration server can become corrupted or missing. Logging in to the registration server that your cluster uses can fix this problem and fill in correct values again. Check in Registration/Password which registration server your cluster uses and log in there (for some cluster it is the same as given for the Entitlement Check).
ZAS Permission
Check if you are an active member of a compute activity and the "RV" hasn't expired.
Forgot Password
Please set a new password for the service.
Lost Phone with OTP Secret
Pleas use your Backup TAN list and add a new secret.
Storage and File Systems
I am over the File System Quota
There are two resources with limits enforced by quota:
- disk space
- number of inodes (files).
It is important to identify the main sources that consume these resources.
- Size: List all directories (and files) in your home directory or workspace sorted by size
du -hs .[!.]* * | sort -h | tail
Descend in a directory with a large reported size and repeat until you find large files that are worth taking care of.
.[!.]* makes sure the "hidden" dot files are also checked.
- Inodes:
du -s --inodes .[!.]* * | sort -n
This will only count inodes in subdirectories. Also make sure your top-level (e.g. $HOME) directory aren't full with hundred thousands of files:
ls -1a | wc -l