BwFileStorage Login Cluster: Difference between revisions
No edit summary |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
⚫ | |||
<h1>Login Cluster</h1> |
|||
('''IPs:'''141.52.212.68, 141.52.212.69, 141.52.212.70, 141.52.212.71) |
|||
<br> |
|||
⚫ | |||
'''Monitoring:'''<br> |
|||
[http://lsdfmon.scc.kit.edu/ganglia/?c=Server&h=bwfilestorage-login-01.lsdf.kit.edu&m=load_one&r=hour&s=descending&hc=4&mc=2 bwfilestorage-login-01.lsdf.kit.edu]<br> |
|||
[http://lsdfmon.scc.kit.edu/ganglia/?c=Server&h=bwfilestorage-login-01.lsdf.kit.edu&m=load_one&r=hour&s=descending&hc=4&mc=2 bwfilestorage-login-02.lsdf.kit.edu]<br> |
|||
[http://lsdfmon.scc.kit.edu/ganglia/?c=Server&h=bwfilestorage-login-01.lsdf.kit.edu&m=load_one&r=hour&s=descending&hc=4&mc=2 bwfilestorage-login-03.lsdf.kit.edu]<br> |
|||
[http://lsdfmon.scc.kit.edu/ganglia/?c=Server&h=bwfilestorage-login-01.lsdf.kit.edu&m=load_one&r=hour&s=descending&hc=4&mc=2 bwfilestorage-login-04.lsdf.kit.edu]<br> |
|||
<br> |
|||
The login cluster are directly accessible by end users. |
The login cluster are directly accessible by end users. |
||
Line 11: | Line 17: | ||
<pre> |
<pre> |
||
$SHELL=/bin/bash |
$SHELL=/bin/bash |
||
$USER= |
$USER=prefix_loginname |
||
$BWFS=$BWFILESTORAGE=/bwfilestorage/ |
$BWFS=$BWFILESTORAGE=/bwfilestorage/prefix/prefix_groupname/prefix_loginname |
||
$SNAPSHOTS=/bwfilestorage/ |
$SNAPSHOTS=/bwfilestorage/prefix/.snapshots |
||
$TEMP=/temp/ |
$TEMP=/temp/prefix/prefix_groupname/prefix_loginname |
||
</pre> |
</pre> |
||
<hr> |
|||
* [[BwFileStorage_SSH|Using SSH]] |
|||
prefix : [https://www.bwidm.de/attribute/belegung-fuer-bwidmorgid/ fileset name per organization; prefix for login name and group name] |
|||
<hr> |
|||
<H2>Using SSH from Unix client</H2> |
|||
'''Example:''' |
|||
<pre> |
|||
>ssh -p 22 prefix_loginname@bwfilestorage-login.lsdf.kit.edu |
|||
</pre> |
|||
Access per ssh key: |
|||
'''Example:''' |
|||
<pre> |
|||
>ssh-keygen -b 2048 -t rsa -C "Login username" |
|||
>ssh-copy-id -i ~/.ssh/id_rsa.pub prefix_loginname@bwfilestorage-login.lsdf.kit.edu |
|||
</pre> |
|||
<br> |
|||
'''Attention:''' Posix style file commands (for instance '''chmod''') must not be applied on files on a CIFS share. This may revoke sharing and Access Lists (ACLs), steering the access to the files. |
|||
<H2>Using SSH from Windows and Mac client</H2> |
|||
Windows clients do not have a SSH client installed by default, so it needs to be installed before this protocol can be used. |
|||
'''Tools for example:''' |
|||
*[http://www.openssh.com/ OpenSSH] |
|||
*[http://winscp.net/eng/download.php WinSCP] |
|||
*[https://filezilla-project.org/download.php?show_all=1 FileZilla] |
|||
*[http://cygwin.com/install.html Cygwin] |
|||
*[http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Putty suite] |
|||
<hr> |
<hr> |
Latest revision as of 23:31, 16 March 2015
Cluster name: bwfilestorage-login.lsdf.kit.edu
(IPs:141.52.212.68, 141.52.212.69, 141.52.212.70, 141.52.212.71)
Monitoring:
bwfilestorage-login-01.lsdf.kit.edu
bwfilestorage-login-02.lsdf.kit.edu
bwfilestorage-login-03.lsdf.kit.edu
bwfilestorage-login-04.lsdf.kit.edu
The login cluster are directly accessible by end users.
These nodes are used for interactive login, file management, data retrieving and restoring.
Four nodes are dedicated to this service but they are all accessible via one host name and a DNS round-robin alias distributes the login sessions to the different login nodes.
Environment Variables:
$SHELL=/bin/bash $USER=prefix_loginname $BWFS=$BWFILESTORAGE=/bwfilestorage/prefix/prefix_groupname/prefix_loginname $SNAPSHOTS=/bwfilestorage/prefix/.snapshots $TEMP=/temp/prefix/prefix_groupname/prefix_loginname
prefix : fileset name per organization; prefix for login name and group name
Using SSH from Unix client
Example:
>ssh -p 22 prefix_loginname@bwfilestorage-login.lsdf.kit.edu
Access per ssh key:
Example:
>ssh-keygen -b 2048 -t rsa -C "Login username" >ssh-copy-id -i ~/.ssh/id_rsa.pub prefix_loginname@bwfilestorage-login.lsdf.kit.edu
Attention: Posix style file commands (for instance chmod) must not be applied on files on a CIFS share. This may revoke sharing and Access Lists (ACLs), steering the access to the files.
Using SSH from Windows and Mac client
Windows clients do not have a SSH client installed by default, so it needs to be installed before this protocol can be used.
Tools for example: