FAQ: Difference between revisions

From bwHPC Wiki
Jump to navigation Jump to search
(New formatting; partially added content from NEMO/FAQ and Helix pages)
Tag: Reverted
Line 1: Line 1:
== Login Issues ==
__TOC__
== Access and Account Issues: bwUniCluster ==


=== Can't log in ===
===Q: I Cannot Log In to my bwUniCluster and See 'Status: LOST_ACCESS' in the Registry Info</b>===


<b>A:</b> You need to fulfill the requirements outlined in
* If the registry/account info shows 'Status: LOST_ACCESS', you need to fulfill the requirements outlined in <b>→</b> [[Registration]]:
** Entitlement
<b>→</b> [[Registration/bwUniCluster]]
** bwUniCluster &rarr; [[BwUniCluster_2.0_User_Access#Step_C:_Fill_out_the_bwUniCluster_questionnaire|Check if you answered the questionnaire.]]
** bwForCluster &rarr; You must be an active member in an active RV. You can see your RV memberships at the central application site ZAS under [https://zas.bwhpc.de/shib/en/info_rv.php '''My RVs'''].
* Double-check your [[Registration/Login/Username|username]] and [[Registration/Password|password]].
* Make sure your CAPS LOCK key is not enabled.
* Try [[Registration/Password|resetting your password]].
* Ensure your [[Registration/Account|account]] is not locked or expired.
* Are you within the university network (Universities in Baden-Württemberg, BELWÜ)?
* Send us the output of the following command:
ssh -l [[Registration/Login/Username|username]] [[Registration/Login/Hostname|hostname]] -vvv
# Example:
ssh -l fr_ab1234 login.nemo.uni-freiburg.de -vvv


=== Forgot password ===
Please check which of those two things are missing using the following documentation:


Set a new password for the service &rarr; [[Registration/Password|Password Guide]]
==== Entitlement ====


=== Lost phone with OTP token ===
You need the [[bwUniCluster Entitlement|Registration/bwUniCluster/Entitlement]]


You can use your backup TAN list and add a new token. If you don't have one, contact the support.
If the entitlement is missing: please check with the local support of your home university (the university where you study or are employed)


== File Systems and Workspaces ==
==== Questionnaire ====
=== <span id="quota_exceeded"></span> File system quota exceeded ===


There are quota limits for:
<b>→</b> Check if you answered the [[BwUniCluster_2.0_User_Access#Step_C:_Fill_out_the_bwUniCluster_questionnaire|Questionnaire]].

== 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.

&rarr; [[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 ==

=== I am over the File System Quota ===

There are two resources with limits enforced by quota:
* disk space
* disk space
* number of inodes (files).
* number of inodes (files)
Identifiy the issue:

* Disk space: List all directories (and files) in your home directory or workspace sorted by size. (<tt>.[!.]*</tt> makes sure the "hidden" dot files are also checked.)
It is important to identify the main sources that consume these resources.
*: <syntaxhighlight lang="bash">du -sh .[!.]* * | sort -h | tail

# or
* Size: List all directories (and files) in your home directory or workspace sorted by size
du -sh --apparent-size * .[^.]*
<code>
</syntaxhighlight>
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.
</code>
* Number of inodes:

*: <syntaxhighlight lang="bash">
Descend in a directory with a large reported size and repeat until you find large files that are worth taking care of.
# check current directory

<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:

<code>
ls -1a | wc -l
ls -1a | wc -l
# check subdirectories
</code>
du -s --inodes .[!.]* * | sort -n</syntaxhighlight>
To free up space, you can:
* ...delete temporary files, for example in the <code>.cache</code> folder. Other folders starting with a dot might contain temporary files as well, for example <code>.local/share/Trash</code>.
* ...use the cleaning commands by your used software (e.g. [https://wiki.bwhpc.de/e/Development/Conda#Create_Environments_and_Install_Software conda]).
* ...delete folders with temporary data created by your used software (e.g. nextflow).

Revision as of 17:18, 30 March 2026

Login Issues

Can't log in

  • If the registry/account info shows 'Status: LOST_ACCESS', you need to fulfill the requirements outlined in Registration:
  • Double-check your username and password.
  • Make sure your CAPS LOCK key is not enabled.
  • Try resetting your password.
  • Ensure your account is not locked or expired.
  • Are you within the university network (Universities in Baden-Württemberg, BELWÜ)?
  • Send us the output of the following command:
 ssh -l username hostname -vvv
 # Example:
 ssh -l fr_ab1234 login.nemo.uni-freiburg.de -vvv

Forgot password

Set a new password for the service → Password Guide

Lost phone with OTP token

You can use your backup TAN list and add a new token. If you don't have one, contact the support.

File Systems and Workspaces

File system quota exceeded

There are quota limits for:

  • disk space
  • number of inodes (files)

Identifiy the issue:

  • Disk space: List all directories (and files) in your home directory or workspace sorted by size. (.[!.]* makes sure the "hidden" dot files are also checked.)
    du -sh .[!.]* * | sort -h | tail
    # or
    du -sh --apparent-size * .[^.]*
    
    Descend in a directory with a large reported size and repeat until you find large files that are worth taking care of.
  • Number of inodes:
    # check current directory
    ls -1a | wc -l
    # check subdirectories
    du -s --inodes .[!.]* * | sort -n
    

To free up space, you can:

  • ...delete temporary files, for example in the .cache folder. Other folders starting with a dot might contain temporary files as well, for example .local/share/Trash.
  • ...use the cleaning commands by your used software (e.g. conda).
  • ...delete folders with temporary data created by your used software (e.g. nextflow).