FAQ: Difference between revisions
K Siegmund (talk | contribs) No edit summary |
K Siegmund (talk | contribs) |
||
| (25 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
__TOC__ |
__TOC__ |
||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
<b>A:</b> You need to fulfill the requirements outlined in |
|||
| ⚫ | |||
<b>→</b> [[Registration/bwUniCluster]] |
|||
Please check which of those two things are missing using the following documentation: |
|||
Answer: |
|||
==== Entitlement ==== |
|||
* Please check your [https://login.bwidm.de/user/index.xhtml Personal data] to verify that you are still a valid user. |
|||
* In the same view, verify that the required entitlement is present: |
|||
** bwUniCluster: <code><nowiki>http://bwidm.de/entitlement/bwUniCluster</nowiki></code> |
|||
** bwForCluster: <code><nowiki>http://bwidm.de/entitlement/bwForCluster</nowiki></code> |
|||
You need the [[bwUniCluster Entitlement|Registration/bwUniCluster/Entitlement]] |
|||
* If the entitlement is missing: |
|||
** bwUniCluster: check whether you have completed the |
|||
If the entitlement is missing: please check with the local support of your home university (the university where you study or are employed) |
|||
| ⚫ | |||
** bwForCluster: check whether you are still a member of a Rechenvorhaben |
|||
==== Questionnaire ==== |
|||
(see [[bwForCluster User Access]]). |
|||
| ⚫ | |||
== Access and Account Issues: bwForCluster == |
|||
===Q: I Cannot Log In to my bwForCluster and See 'Status: LOST_ACCESS' in the Registry Info=== |
|||
<b>A:</b> You need to fulfill the requirements outlined in |
|||
<b>→</b> [[Registration/bwForCluster]] |
|||
Please check which of those two things are missing using the following documentation: |
|||
==== Entitlement ==== |
|||
You need the bwForCluster Entitlement. |
|||
<b>→</b> Read [[Registration/bwForCluster/Entitlement]] and check if it is present. |
|||
If the entitlement is missing: please check with the local support of your home university (the university where you study or are employed) |
|||
==== ZAS Permission ==== |
|||
Check if you are an active member of a compute activity and the "RV" hasn't expired. |
|||
<b>→</b> [https://zas.bwhpc.de/shib/info_rv.php ZAS membership page] |
|||
=== Forgot Password === |
|||
Please set a new password for the service. |
|||
→ [[Registration/Password|Password Guide]] |
|||
=== Lost Phone with OTP Secret === |
|||
Pleas use your <b>Backup TAN list</b> and add a new secret. |
|||
== Storage and File Systems == |
== 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 |
|||
<code> |
|||
du -hs .[!.]* * | sort -h | tail |
|||
</code> |
|||
Descend in a directory with a large reported size and repeat until you find large files that are worth taking care of. |
|||
<code>.[!.]*</code> makes sure the "hidden" dot files are also checked. |
|||
* Inodes: |
|||
<code> |
|||
du -s --inodes .[!.]* * | sort -n |
|||
</code> |
|||
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: |
|||
'''Q: I am running out of space in my home directory.''' |
|||
<code> |
|||
A: |
|||
ls -1a | wc -l |
|||
See [[Cleaning up your home directory]] for recommended cleanup strategies and cluster-specific best practices. |
|||
</code> |
|||
Latest revision as of 16:46, 16 March 2026
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
You need the bwForCluster Entitlement.
→ Read Registration/bwForCluster/Entitlement and check if it is present.
If the entitlement is missing: please check with the local support of your home university (the university where you study or are employed)
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