User Tools

Site Tools


wiki:faq

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wiki:faq [2014/10/06 14:12] – [How can I ssh/scp from the KeckII workstations to outside of UCSD] adminwiki:faq [2023/07/14 08:56] (current) – [How can I access the Keck workstations remotely?] admin
Line 2: Line 2:
 ====== Frequently Asked Questions ====== ====== Frequently Asked Questions ======
  
-If you can't find what you're looking for on this page, be sure to check the KeckII [[http://peary.ucsd.edu/dokuwiki/doku.php?id=wiki:howto|HOW-TOs]] before e-mailing <keck-help@keck2.ucsd.edu>.+If you can't find what you're looking for on this page, be sure to check the Keck [[https://keck2.ucsd.edu/dokuwiki/doku.php?id=wiki:howto|HOW-TOs]] before e-mailing <keck-help@keck2.ucsd.edu>.
  
-===== How do I get an account on KeckII workstations? =====+===== How do I get an account on Keck workstations? =====
  
 Please see this [[http://keck2.ucsd.edu/accounts.php|page]]. The accounts are distributed by kerberos, so an account on one machine will work on all machines. Please see this [[http://keck2.ucsd.edu/accounts.php|page]]. The accounts are distributed by kerberos, so an account on one machine will work on all machines.
  
-===== How can I access the KeckII workstations remotely? =====+===== How can I access the Keck workstations remotely? =====
  
-The only way to remotely login to the KeckII workstations is to use secure shell (ssh). +The only way to remotely login to the Keck workstations is to use secure shell (ssh). For example: ''ssh your_username@w01.keck2.ucsd.edu''.
  
-<color black/yellow>Please note</color> that direct ssh logins to KeckII computers are allowed only from a local Urey Hall network subnet or the UCSD VPN. If you are connecting from outside of these you have to log in to our gateway, ''balboa.ucsd.edu'' first (''ssh your_username@balboa.ucsd.edu'').+If you are using MS Windows you can download either [[https://mobaxterm.mobatek.net/download-home-edition.html|MobaXterm]] or [[https://www.putty.org/|putty]] ssh clients. If you are using Linux or MacOS then ''ssh'' is already installed as a part of the OpenSSH package. 
 + 
 +<color black/yellow>Please note</color> that direct ssh logins to Keck Center computers are allowed only from a local Urey Hall network subnet or the UCSD VPN.
  
 ===== Does e-mail work on any of these machines? ===== ===== Does e-mail work on any of these machines? =====
  
-No. +Outgoing email only.
 ===== How do I change my password? ===== ===== How do I change my password? =====
  
-If you are logged in to one of the Keck workstations execute command ''passwd'' to change your password. +If you are logged into one of the Keck workstations execute command ''passwd'' to change your password.
- +
-If you are outside of Keck you can use the ''passwd'' command on ''balboa.ucsd.edu''. Log in to ''balboa'' first (''ssh username@balboa.ucsd.edu'') and execute ''passwd''. After a brief delay, the password change should propagate to all of the servers. If it's been a month since your password expired and you have not changed it you will no longer be able to logon and need to reset the password in person - please contact keck-help. +
 ===== What software is available? ===== ===== What software is available? =====
  
-See the [[http://peary.ucsd.edu/dokuwiki/doku.php?id=wiki:software|available software page]] for a list of the software that is currently installed and some links to the software home pages.+See the [[https://keck2.ucsd.edu/dokuwiki/doku.php?id=wiki:software|available software page]] for a list of the software that is currently installed and some links to the software home pages.
  
 ===== What should I do to get a particular piece of software installed? ===== ===== What should I do to get a particular piece of software installed? =====
Line 33: Line 31:
  
  
-===== What is my disk quota on KeckII computers? =====+===== What is my disk quota on Keck Center computers? =====
  
 Every user has 10GB home directory quota.  Every user has 10GB home directory quota. 
Line 39: Line 37:
 If your project temporarily requires bigger disk space allocation please email keck-help with a request to increase your quota, If your project temporarily requires bigger disk space allocation please email keck-help with a request to increase your quota,
  
-===== How can I setup an SSH tunnel to the KeckII workstations from outside of UCSD? ===== 
- 
-If you need to directly log in to one of the Keck II workstations from outside of UCSD - for example if you need to run an X-window application or copy files directly you can set up an SSH tunnel for this purpose. 
- 
- 
-On you linux or Mac machine execute the following: 
-<code> 
-ssh -f -N -L 2042:w05.keck2.ucsd.edu:22 YOUR_USERNAME@balboa.ucsd.edu 
-ssh -p 2042 -X YOUR_USERNAME@localhost 
-</code> 
- 
-The last command will log you in to ''w05.keck2.ucsd.edu'' where you can start your X-window application and it should display on your local machine. 
- 
-An alternative and much simpler command to use is: 
- 
-<code> 
-ssh -X -o 'ProxyCommand ssh -X user@balboa.ucsd.edu -W %h:%p' user@w01.keck2.ucsd.edu 
-</code> 
- 
-However, this only works with OpenSSH version 5.3 and newer. 
- 
-===== How can I ssh/scp from the KeckII workstations to outside of UCSD ===== 
- 
-All KeckII workstations are on publicly non-routable vlan and are not accessible from outside of UCSD. To copy your files you have to use the gateway server ''balboa.ucsd.edu''. All your files should be visible on ''balboa.ucsd.edu'' so you can copy it from/to there. 
- 
-You can also set up a tunnel if you need to do a more complex operation: 
- 
-<code> 
-ssh -o 'ProxyCommand ssh balboa.ucsd.edu -W %h:%p' tg80XXXX@stampede.tacc.utexas.edu 
-</code> 
- 
-and to use scp to transfer files to outside of UCSD: 
- 
-<code> 
-scp -o 'ProxyCommand ssh balboa.ucsd.edu -W %h:%p' your_file tg80XXXX@stampede.tacc.utexas.edu: 
-</code> 
- 
-If you use these commands often you might want to put the ''ProxyCommand'' option to your ''.ssh/config'' file: 
  
-<code> 
-# set up proxy to access stampede (outside UCSD) 
-Host stampede 
- Hostname stampede.tacc.utexas.edu 
- User tg80XXXX 
- ProxyCommand ssh -W %h:%p balboa.ucsd.edu 
- Ciphers arcfour 
- ClearAllForwardings yes 
-</code> 
  
wiki/faq.1412629923.txt.gz · Last modified: 2014/10/06 14:12 by admin