Difference between revisions of "BwFileStorage Login Cluster"

From Lsdf
Line 17: Line 17:
 
</pre>
 
</pre>
   
oe: [https://www.bwidm.de/attribute/belegung-fuer-bwidmorgid/ fileset name per organization; prefix for login name and group name]
+
'''oe:''' [https://www.bwidm.de/attribute/belegung-fuer-bwidmorgid/ fileset name per organization; prefix for login name and group name]
   
* [[BwFileStorage_SSH|Using SSH]]
 
   
  +
<H2>Using SSH from Unix client</H2>
  +
  +
'''Example:'''
  +
<pre>
  +
>ssh -p 22 oe_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 oe_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>

Revision as of 16:18, 13 March 2015

Login Cluster

Cluster name: bwfilestorage-login.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=oe_loginname
$BWFS=$BWFILESTORAGE=/bwfilestorage/oe/oe_groupname/oe_loginname
$SNAPSHOTS=/bwfilestorage/oe/.snapshots
$TEMP=/temp/oe/oe_groupname/oe_loginname

oe: fileset name per organization; prefix for login name and group name


Using SSH from Unix client

Example:

>ssh -p 22 oe_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 oe_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: