Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

problems with inputdata downloading

Bing

Bing
New Member
Hi,

I encountered some issues when downloading the inputdata.

The case was created by

./create_newcase --case ../cases/test01 --compset F2010climo --res f19_g16 --mach bell --run-unsupported

Errors during the downloading
./check_input_data --download

------------------------------------------------------------------------
Using protocol gftp with user and passwd
Trying to download file: '../inputdata_checksum.dat' to path '/scratch/bell/zhao1550/cesm_output/F2010climo_100y/run/inputdata_checksum.dat.raw' using GridFTP protocol.
FAIL: GridFTP repo 'ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/' does not have file '../inputdata_checksum.dat' error=error: globus_xio: Unable to connect to gridanon.cgd.ucar.edu:2811
globus_xio: System error in connect: Connection timed out
globus_xio: A system call failed: Connection timed out

Could not automatically download file /scratch/bell/zhao1550/cesm_output/F2010climo_100y/run/inputdata_checksum.dat
Using protocol wget with user anonymous and passwd user@example.edu
Could not connect to repo 'ftp://ftp.cgd.ucar.edu/cesm/inputdata/'
This is most likely either a proxy, or network issue .
Using protocol ftp with user anonymous and passwd user@example.edu
server address ftp.cgd.ucar.edu root path cesm/inputdata
ftp login timeout! [Errno 111] Connection refused
Using protocol svn with user and passwd
Client protocol None not enabled
Checking server ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/ with protocol gftp
Setting Environment OMP_STACKSIZE=128M
Setting Environment MPI_TYPE_DEPTH=16
Setting resource.RLIMIT_STACK to -1 from (-1, -1)
Using protocol gftp with user and passwd
Loading input file list: 'Buildconf/mosart.input_data_list'
Loading input file list: 'Buildconf/docn.input_data_list'
Model docn missing file file1 = '/scratch/bell/zhao1550/cesm_2.2.2/input_data/atm/cam/sst/sst_HadOIBl_bc_1x1_2010climo_c180511.nc'
Trying to download file: 'atm/cam/sst/sst_HadOIBl_bc_1x1_2010climo_c180511.nc' to path '/scratch/bell/zhao1550/cesm_2.2.2/input_data/atm/cam/sst/sst_HadOIBl_bc_1x1_2010climo_c180511.nc' using GridFTP protocol.
FAIL: GridFTP repo 'ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/' does not have file 'atm/cam/sst/sst_HadOIBl_bc_1x1_2010climo_c180511.nc' error=error: globus_xio: Unable to connect to gridanon.cgd.ucar.edu:2811
globus_xio: System error in connect: Connection timed out
globus_xio: A system call failed: Connection timed out

------------------------------------------------------------------------

I've tried on two different clusters and got the same errors. Any feedback is very apprecaited.

Best,
Bing
 

jedwards

CSEG and Liaisons
Staff member
Unfortunately the gridftp protocol is no longer supported. Currently supported protocols are:

Code:
<server>
    <protocol>wget</protocol>
    <address>https://ftp.cgd.ucar.edu/cesm/inputdata/</address>
    <checksum>../inputdata_checksum.dat</checksum>
  </server>

  <server>
    <comment> wget access to subversion </comment>
    <protocol>wget</protocol>
    <address>https://svn-ccsm-inputdata.cgd.ucar.edu/trunk/inputdata/</address>
  </server>

  <server>
    <protocol>svn</protocol>
    <address>https://svn-ccsm-inputdata.cgd.ucar.edu/trunk/inputdata</address>
  </server>

Place these in your config_inputdata.xml
 
Top