2013.3_replica_upgrade.sh #7

  • //
  • guest/
  • perforce_software/
  • sdp/
  • main/
  • Server/
  • Unix/
  • p4/
  • common/
  • bin/
  • 2013.3_replica_upgrade.sh
  • View
  • Commits
  • Open Download .zip Download (5 KB)
#!/bin/bash
#==============================================================================
# Copyright and license info is available in the LICENSE file included with
# the Server Deployment Package (SDP), and also available online:
# https://swarm.workshop.perforce.com/projects/perforce-software-sdp/view/main/LICENSE
#------------------------------------------------------------------------------

# This script requires the full path and name of the current checkpoint file copied
# over from the master server as a parameter. This should be the same checkpoint used
# to upgrade the master server to 2013.3+
export SDP_INSTANCE=${SDP_INSTANCE:-Undefined} 
export SDP_INSTANCE=${1:-$SDP_INSTANCE} 
if [[ $SDP_INSTANCE == Undefined ]]; then 
   echo "Instance parameter not supplied." 
   echo "You must supply the Perforce instance as a parameter to this script." 
   exit 1 
fi 

. /p4/common/bin/p4_vars $SDP_INSTANCE
. /p4/common/bin/backup_functions.sh

recreate_offline_db_files_2013.3 () {
   log "Recreate offline db files for 2013.3 upgrade process."
   rm -f ${OFFLINE_DB}/db.* >> "$LOGFILE"
   # curly braces are necessary to capture the output of 'time'
   # if $P4DBIN is not a link, then it is a wrapper around p4d with the -C1 flag.
   if [[ ! -L $P4DBIN ]]; then
      { time /p4/common/bin/p4d_${P4DRELNUM}_bin -C1 -r $OFFLINE_DB -J off -jr -z ${CHECKPOINT_FILE}; } >> "$LOGFILE" 2>&1 || \
         { log "ERROR - Restore of checkpoint to $OFFLINE_DB failed!"; }
   else
      { time /p4/common/bin/p4d_${P4DRELNUM}_bin -r $OFFLINE_DB -J off -jr -z ${CHECKPOINT_FILE}; } >> "$LOGFILE" 2>&1 || \
         { log "ERROR - Restore of checkpoint to $OFFLINE_DB failed!"; }
   fi
}

switch_db_files () {
   log "Switching out db files..."
   [[ -d $SAVEDIR ]] || mkdir -p $SAVEDIR
   rm -f $SAVEDIR/db.* >> $LOGFILE 2>&1
   mv $P4ROOT/db.* $SAVEDIR >> $LOGFILE 2>&1
   mv $OFFLINE_DB/db.* $P4ROOT >> $LOGFILE 2>&1 || die "Move of offline db file to $P4ROOT failed."
}


AWK=awk
ID=id
MAIL=mail

OS=`uname`
if [[ "${OS}" = "SunOS" ]]; then
   AWK=/usr/xpg4/bin/awk
   ID=/usr/xpg4/bin/id
   MAIL=mailx
elif [[ "${OS}" = "AIX" ]]; then
   AWK=awk
   ID=id
   MAIL=mail
fi

export AWK
export ID
export MAIL

cd /p4/common/bin
common_dir=`pwd -P` 

if [[ -d $common_dir ]]; then
   cd $common_dir
else
   echo $common_dir does not exist.
   exit 1
fi

######### Start of Script ##########

if [[ -z "$2" ]]; then
   echo "Checkpoint parameter not supplied."
   echo "See comments at the top of this script for the required parameter."
   exit 1
fi

CHECKPOINT_FILE = $2
[[ -f ${CHECKPOINT_FILE} ]] || { echo "Checkpoint ${CHECKPOINT_FILE} missing!" ; exit 1 ;}

check_vars
set_vars

# override LOGFILE setting from set_vars which will point to checkpoint.log
LOGFILE=$LOGS/upgrade.log

if [[ -f $LOGFILE ]]; then
   rm -f $LOGFILE
fi

check_dirs
check_uid

[[ -f $common_dir/p4 ]] || { echo "No p4 in $common_dir" ; exit 1 ;}
[[ -f $common_dir/p4d ]] || { echo "No p4d in $common_dir" ; exit 1 ;}

chmod 777 $common_dir/p4
chmod 700 $common_dir/p4d

P4RELNUM=`./p4 -V | grep -i Rev. | $AWK -F / '{print $3}'`
P4DRELNUM=`./p4d -V | grep -i Rev. | $AWK -F / '{print $3}'`
P4BLDNUM=`./p4 -V | grep -i Rev. | $AWK -F / '{print $4}' | awk '{print $1}'`
P4DBLDNUM=`./p4d -V | grep -i Rev. | $AWK -F / '{print $4}' | awk '{print $1}'`
CURRENT_RELNUM=`./p4d_${SDP_INSTANCE}_bin -V | grep -i Rev. | $AWK -F / '{print $3}'`


log "Start $P4SERVER Replica Upgrade"

[[ -f p4_$P4RELNUM.$P4BLDNUM ]] || cp p4 p4_$P4RELNUM.$P4BLDNUM
[[ -f p4d_$P4DRELNUM.$P4DBLDNUM ]] || cp p4d p4d_$P4DRELNUM.$P4DBLDNUM
[[ -f p4_${P4RELNUM}_bin ]] && unlink p4_${P4RELNUM}_bin
ln -s p4_$P4RELNUM.$P4BLDNUM p4_${P4RELNUM}_bin   >> "$LOGFILE" 2>&1
[[ -f p4d_${P4DRELNUM}_bin ]] && unlink p4d_${P4DRELNUM}_bin
ln -s p4d_$P4DRELNUM.$P4DBLDNUM p4d_${P4DRELNUM}_bin   >> "$LOGFILE" 2>&1
[[ -f p4_bin ]] && unlink p4_bin
ln -s p4_${P4RELNUM}_bin p4_bin >> "$LOGFILE" 2>&1

recreate_offline_db_files_2013.3
stop_p4d
sleep 5
log "Changing p4d link to new version."
unlink p4d_${SDP_INSTANCE}_bin  >> "$LOGFILE" 2>&1
ln -s p4d_${P4DRELNUM}_bin p4d_${SDP_INSTANCE}_bin >> "$LOGFILE" 2>&1
log "Upgrading $OFFLINE_DB"
$P4DBIN -r $OFFLINE_DB -J off -xu >> "$LOGFILE" 2>&1
switch_db_files
log "Removing old journal, state, and rdb.lbr."
rm -f /p4/${SDP_INSTANCE}/logs/journal >> "$LOGFILE" 2>&1
rm -f /p4/${SDP_INSTANCE}/root/rdb.lbr >> "$LOGFILE" 2>&1
rm -f /p4/${SDP_INSTANCE}/root/state >> "$LOGFILE" 2>&1
start_p4d
log "Removing db files from $SAVEDIR"
rm -f ${SAVEDIR}/db.* >> "$LOGFILE" 2>&1
recreate_offline_db_files_2013.3
log "Upgrading $OFFLINE_DB"
$P4DBIN -r $OFFLINE_DB -J off -xu >> "$LOGFILE" 2>&1

log "Finish $P4SERVER Replica Upgrade"
# Change User Description Committed
#8 18619 Russell C. Jackson (Rusty) Updating main with current changes.
#7 15856 C. Thomas Tyler Replaced the big license comment block with a shortened
form referencing the LICENSE file included with the SDP
package, and also by the URL for the license file in
The Workshop.
#6 15777 C. Thomas Tyler No functional changes.

Style Policing only on bash scripts only.

Normalized indentation and line breaks, removed offending tabs, and general whitespace
usage.
#5 15609 C. Thomas Tyler Pushing SDP 2015.1.15607 (2015/09/02).
#4 13908 C. Thomas Tyler Pushing SDP 2015.1.13906.
#3 12171 Russell C. Jackson (Rusty) Merge in changes to remove the need for p4master_run.
#2 11459 mark_foundry Fixing the location of the upgrade.log.
Previously, it would try to write to /upgrade.log, which requires root permissions. So changed to use $LOGS which is what backupfunctions.sh uses, and is defined in p4vars. I've only tested upgrade.sh, as I don't have a pre-2013.3 server.
#1 10148 C. Thomas Tyler Promoted the Perforce Server Deployment Package to The Workshop.