Changes between Version 9 and Version 10 of cypress/Globus


Ignore:
Timestamp:
03/11/25 14:15:59 (7 weeks ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Globus

    v9 v10  
    2424}}}
    2525
    26 * '''Path''' An absolute path to be permitted. Only paths which are present in the config file can be accessed. Tilde (~) can be used to represent the home directory of the user running Globus Connect Personal.
     26* '''Path''' An absolute path to be permitted. Only paths that are present in the config file can be accessed. Tilde (~) can be used to represent the home directory of the user running Globus Connect Personal.
    2727
    2828* '''Sharing Flag''' Enable or disable sharing. This field must be 1 or 0. 1 allows sharing for the path and 0 disallows sharing.
     
    4040
    4141== Running Globus Connect Personal on Cypress ==
    42 You have to use Centos7 computing node to run Glonus Connect Personal. The below is an example Slum script.
     42You have to use Centos7 computing node to run Glonus Connect Personal. Below is an example Slum script.
    4343
    4444
     
    6060
    6161== File Transfer with Globus Web App ==
    62 Login to Globus with a web browser, and open FILE MANAGER.
     62Login to Globus with a web browser and open FILE MANAGER.
    6363
    6464[[Image(FileManager.png, 40%)]]
     
    7676The box endpoint is the user's tulane.edu box folder. You need to give consent when you try to access it the first time.
    7777
     78== File Transfer with Globus Commandline Tools ==
    7879
     80This has to be done in an interactive session on a centos7 node.
     81{{{
     82idev -t 10 --partition=centos7
     83}}}
     84
     85On a centos7 computing node, run Glonus Connect Personal in the background.
     86{{{
     87module load globusconnectpersonal/3.2.5
     88globusconnect -start &
     89}}}
     90
     91Activate the virtual environment of globus command line tools.
     92{{{
     93source activate globus-cli
     94}}}
     95Log in to globus. This requires an authentication process with a web browser.
     96{{{
     97globus login
     98}}}
     99
     100To access Tulane Box, this may require another authentication process.
     101{{{
     102globus ls "$TULANE_BOX"
     103}}}
     104
     105See [https://docs.globus.org/cli/quickstart/] for further process.
     106