rmokos@ncsa_illinois_edu
New Member
Hi,
I'm running into errors when trying to build CESM 2.1.1 on Blue Waters. From a fresh login shell, I run this script:
Things seem to go well until here:
I have no issues if I run the same script with CESM 2.1.0 (i.e.,
Can someone please help me understand what the issue is?
Thanks in advance.
I'm running into errors when trying to build CESM 2.1.1 on Blue Waters. From a fresh login shell, I run this script:
Code:
#!/bin/bash
# load Python 2.7.14 and svn 1.9.7
module load bwpy/0.3.2 Subversion
# set env variables
export CASENAME=___FHIST_09
export CASEDIR=$HOME/___FHIST_09
export CESMROOT=$HOME/___cesm2_1_1
export CESMDATAROOT=/scratch/sciteam/$USER/___cesm_data
# make cesm data directory on scratch
mkdir -p $CESMDATAROOT
# download cesm 2.1.1
cd $HOME
git clone -b release-cesm2.1.1 https://github.com/ESCOMP/cesm.git ___cesm2_1_1
# download externals
cd ___cesm2_1_1
./manage_externals/checkout_externals
# create new case
cd $HOME
$CESMROOT/cime/scripts/create_newcase --case $CASEDIR --compset FHIST --res f09_f09_mg17 --project fyy --input-dir $CESMDATAROOT
# set up case
cd $CASENAME
./case.setup
# add to user_nl_cam:
cat > user_nl_cam <<EOF
! Users should add all user specific namelist changes below in the form of
! namelist_var = new_namelist_value
! assume "h1" file with instantaneous value every 3 hour
nhtfrq=0,-3
! assume "h1" files with 8 timesteps each
mfilt=1,8
fincl2='T:I','RELHUM:I','SZA:I','SOAG_SRF:I','DMS_SRF:I','H2SO4_SRF:I','O3:I','H2O2_SRF:I','SO2_SRF:I','bc_a1_SRF:I','bc_a4_SRF:I','dst_a1_SRF:I','dst_a2_SRF:I','dst_a3_SRF:I','ncl_a1_SRF:I','ncl_a2_SRF:I','ncl_a3_SRF:I','pom_a1_SRF:I','pom_a4_SRF:I','so4_a1_SRF:I','so4_a2_SRF:I','so4_a3_SRF:I','soa_a1_SRF:I','soa_a2_SRF:I'
EOF
# change run lenth (assume one-month)
./xmlchange STOP_N=1,STOP_OPTION=nmonths
# build the case
./case.build
# submit the case
./case.submit
Things seem to go well until here:
Code:
Building case in directory /mnt/a/u/staff/rmokos/___FHIST_09
sharedlib_only is False
model_only is False
Generating component namelists as part of build
Refcase not found in /scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01, will attempt to download from inputdata
Checking server ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/ with protocol gftp
Using protocol gftp with user and passwd
Loading input file list: 'Buildconf/refcase.input_data_list'
Model refcase missing file refdir = '/scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01/'
Trying to download file: 'cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01' to path '/scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01' using GridFTP protocol.
Creating directory /scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01
FAIL: GridFTP repo 'ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/' does not have directory 'cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01' error=error: Unable to list url ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01/:
globus_ftp_client: the server responded with an error
550 550-GlobusError: v=1 c=PATH_NOT_FOUND
550-GridFTP-Errno: 2
550-GridFTP-Reason: System error in stat
550-GridFTP-Error-String: No such file or directory
550 End.
Checking server ftp://ftp.cgd.ucar.edu/cesm/inputdata with protocol wget
Using protocol wget with user anonymous and passwd user@example.edu
Loading input file list: 'Buildconf/refcase.input_data_list'
- Prestaging REFCASE (/scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01) to /scratch/sciteam/rmokos/___FHIST_09/run
ERROR: Reference case directory /scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01 does not contain any rpointer files
- Prestaging REFCASE (/scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01) to /scratch/sciteam/rmokos/___FHIST_09/run
ERROR: Reference case directory /scratch/sciteam/rmokos/___cesm_data/cesm2_init/f.e20.FHIST.f09_f09.cesm2_1.001_v2/1979-01-01 does not contain any rpointer files
I have no issues if I run the same script with CESM 2.1.0 (i.e.,
git clone -b release-cesm2.1.0 https://github.com/ESCOMP/cesm.git ___cesm2_1_0
).Can someone please help me understand what the issue is?
Thanks in advance.