Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.atnf.csiro.au/vlbi/dokuwiki/doku.php/correlator/globus
Дата изменения: Unknown Дата индексирования: Sun Apr 10 19:57:07 2016 Кодировка: IBM-866 Поисковые слова: milky way |
Transfer of bulk baseband data is most efficiently done using GridFTP (part of the Globus Toolkit). GridFTP can be used without grid certificates via the sshftp url mechanism described below. Note that this uses ssh only to instigate the transfer between the two hosts - the data are then transferred using GridFTP and are not encrypted or otherwise handled by ssh so there is no performance penalty.
To use the globus-url-copy
command below you will have to set the environment variable $GLOBUS_LOCATION
and modify your path appropriately.
Recommended command for copying data:
globus-url-copy -cd -r -sync -sync-level 1 -udt -vb file://<from_path>/ sshftp://user@magnus-data.pawsey.org.au/<to_path>/
where <from_path> is the directory on pbstore and <to_path> is the destination path on the cuppa node. If either path is a directory you must terminate the url with a forward slash (/).
The -udt flag uses udt as the protocol. This is faster than tcp (at least for long haul transfers), but is not always available.
The simplest option by far is a binary installation, but currently the binary installation does not include the udt libraries (see installing from source below).
Follow the procedures at: http://www.globus.org/toolkit/data/gridftp/quickstart.html
To get the server and client programs running and configured:
sudo apt-get install globus-ftp-client-progs globus-gridftp export GLOBUS_LOCATION=/usr
You can also build from source by following the procedures here: http://www.globus.org/toolkit/data/gridftp/quickstart-source.html
The 'latest-stable' installer linked from the page above actually installs a rather old version of GridFTP, so you may wish to download a more recent version from here: http://www.globus.org/ftppub/. We have had good success with version gt5.0.5: http://www.globus.org/ftppub/gt5/5.0/5.0.5
For ubuntu 10.4 you may also need libssl-dev: i.e. the following may need to be installed
sudo apt-get install build-essential bzip2 autoconf libxml-parser-perl xinetd openssl telnet libssl-dev
Note that to enable UDT transfers, you should use the following make command (or similar depending on the version of gridftp/OS):
cd gt*-all-source-installer ./configure --prefix=/path/to/install/to make globus_libtool globus_libtool-thr udt globus-xio-extra-drivers gridftp install
To configure the server and client:
$GLOBUS_LOCATION/setup/globus/setup-globus-common $GLOBUS_LOCATION/setup/globus/globus-gridftp-server-enable-sshftp -nonroot $GLOBUS_LOCATION/setup/globus/setup-globus-gridftp-sshftp
On some systems you may get a version conflict if you have a system installation of the Compress::Zlib perl module. The gridftp installer comes with its own version of this library but will only install it if it doesn't find a system version. You can force the installation of the gridftp version thus:
cd /<path_to_installer>/gpt/support/Compress-Zlib-1.21/ perl Makefile.PL PREFIX=$GLOBUS_LOCATION make install
Once you have set up ssh keys to the destination machine, a nice test that everything is working for outgoing connections (and a rough idea of transfer speed) is the following command
globus-url-copy -vb -p 4 /dev/zero sshftp://username@magnus-data.pawsey.org.au/dev/null
If you get error: globus_ftp_client: an invalid value for url was used this probably means that the sshftp url wasn't understood. Double-check that the globus-ftp-client-progs were installed from apt-get. For source installations, check that the /path/to/install/to/setup/globus/setup-globus-gridftp-sshftp command worked.