Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

4) Installing AtlasProduction cache: x.x.x.x
     After steps 1-3, setup the release:
      . ~/reldirs/15.6.6/cmthome/setup.sh -tag=15.6.6,32
     Issue the pacman command found in the HN/e-news announcement, and direct to pacman.log. For example:
      pacman -get http://cern.ch/atlas-computing/links/kitsDirectory/Production/cache:AtlasProduction_15_6_5_1_i686_slc5_gcc43_opt
      >> pacman.log & 
    Note1: After the install is finished,
              cd /afs/slac/g/atlas/c/AtlasProduction/15.6.5.1/AtlasProductionRunTime/cmt/
           and do 'cmt config'.
    Note2: If the AtlasProduction package requires a new DBRelease, it has to be downloaded manually.
           Check the status of the Production cache in the corresponding web page,
           http://atlas-computing.web.cern.ch/atlas-computing/projects/releases/status/15.6.5.1/AtlasProduction/
           which usually lists the DBRelease version number.
           If it uses a new DBRelease version, scp the tar file over from lxplus.cern.ch and
           put it in /c/DBRelease/ and "tar -xf" and move it as the way others are.
           DBRelease tar files are stored in
           /afs/cern.ch/atlas/www/GROUPS/DATABASE/pacman4/DBRelease/          
              
           This script will do all the work:

Code Block

#
#get_dbrelease_from_cern.sh, by Andy Haas (SLAC)
#Takes one argument: the DBRelease version, i.e. "9.1.2"
#

cd /afs/slac/g/atlas/c/DBRelease

ssh lxplus.cern.ch "~/bin/bbcp -s 64 -P 2 -f /afs/cern.ch/atlas/www/GROUPS/DATABASE/pacman4/DBRelease/DBRelease-${1}.tar.gz noric09.slac.stanford.edu:/afs/slac/g/atlas/c/DBRelease/"
#scp lxplus.cern.ch:/afs/cern.ch/atlas/www/GROUPS/DATABASE/pacman4/DBRelease/DBRelease-${1}.tar.gz .

tar -xzf DBRelease-${1}.tar.gz
mv -i DBRelease/${1} .
rm DBRelease/current
rmdir DBRelease
rm DBRelease-${1}.tar.gz

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

...