Changes between Version 9 and Version 10 of cypress/Globus
- Timestamp:
- 03/11/25 14:15:59 (7 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/Globus
v9 v10 24 24 }}} 25 25 26 * '''Path''' An absolute path to be permitted. Only paths whichare 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. 27 27 28 28 * '''Sharing Flag''' Enable or disable sharing. This field must be 1 or 0. 1 allows sharing for the path and 0 disallows sharing. … … 40 40 41 41 == 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.42 You have to use Centos7 computing node to run Glonus Connect Personal. Below is an example Slum script. 43 43 44 44 … … 60 60 61 61 == File Transfer with Globus Web App == 62 Login to Globus with a web browser ,and open FILE MANAGER.62 Login to Globus with a web browser and open FILE MANAGER. 63 63 64 64 [[Image(FileManager.png, 40%)]] … … 76 76 The box endpoint is the user's tulane.edu box folder. You need to give consent when you try to access it the first time. 77 77 78 == File Transfer with Globus Commandline Tools == 78 79 80 This has to be done in an interactive session on a centos7 node. 81 {{{ 82 idev -t 10 --partition=centos7 83 }}} 84 85 On a centos7 computing node, run Glonus Connect Personal in the background. 86 {{{ 87 module load globusconnectpersonal/3.2.5 88 globusconnect -start & 89 }}} 90 91 Activate the virtual environment of globus command line tools. 92 {{{ 93 source activate globus-cli 94 }}} 95 Log in to globus. This requires an authentication process with a web browser. 96 {{{ 97 globus login 98 }}} 99 100 To access Tulane Box, this may require another authentication process. 101 {{{ 102 globus ls "$TULANE_BOX" 103 }}} 104 105 See [https://docs.globus.org/cli/quickstart/] for further process. 106