#!/bin/bash #------------------------------------------------------------------------------ # Copyright (c) Perforce Software, Inc., 2007-2015. All rights reserved # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # 1 Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE # SOFTWARE, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH # DAMAGE. #------------------------------------------------------------------------------ # 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 P4INSTANCE=${P4INSTANCE:-Undefined} export P4INSTANCE=${1:-$P4INSTANCE} if [[ $P4INSTANCE == 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 $P4INSTANCE . /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 check_dirs [ -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_${P4INSTANCE}_bin -V | grep -i Rev. | $AWK -F / '{print $3}'` LOGFILE=$LOGS/upgrade.log if [ -f $LOGFILE ] then rm -f $LOGFILE fi 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_${P4INSTANCE}_bin >> "$LOGFILE" 2>&1 ln -s p4d_${P4DRELNUM}_bin p4d_${P4INSTANCE}_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/${P4INSTANCE}/logs/journal >> "$LOGFILE" 2>&1 rm -f /p4/${P4INSTANCE}/root/rdb.lbr >> "$LOGFILE" 2>&1 rm -f /p4/${P4INSTANCE}/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 | 18587 | Russell C. Jackson (Rusty) |
Reworked the log rotation stuff in backup_functions.sh to make it cleaner and handle the new log from recreate_offline_db.sh. Modified recreate_offline_db.sh to add comments about a bad checkpoint. Also made it create its own log file since it isn't doing a checkpoint. Removed the log rotation for the same reason. Moved the LOGFILE setting out to all of scripts to make it more obvious for future scripts that you need to set that variable in your script so that it doesn't just default to checkpoint.log. Moved the functions in weekly_backup.sh and recreate_offline_db.sh into backup_functions.sh where they belong for consistency. Modified backup_functions.sh to use a consistent naming convention for all the rotated log files rather than checkpoint.log being unique. Replaced all back ticks with the newer bash $() method. Removed all of the line wrapping since I am pretty sure that none of us are working on an 80 character terminal these days and it is easier to read this way. |
||
#7 | 16029 | C. Thomas Tyler |
Routine merge to dev from main using: p4 merge -b perforce_software-sdp-dev |
||
#6 | 15778 | C. Thomas Tyler | Routine Merge Down to dev from main. | ||
#5 | 15374 | adrian_waters |
- Ensure backup scripts are run as the OSUSER (to prevent accidental running as root); - in scripts where LOGFILE value is changed from the 'checkpoint.log' set by set_vars, ensure the new assignment is before check_dirs is called, otherwise errors could be written to the 'wrong' log - in 'die()' - detect if running from terminal & also send output to stderr |
||
#4 | 13906 | C. Thomas Tyler |
Normalized P4INSTANCE to SDP_INSTANCE to get Unix/Windows implementations in sync. Reasons: 1. Things that interact with SDP in both Unix and Windows environments shoudn't have to account for this obscure SDP difference between Unix and Windows. (I came across this doing CBD work). 2. The Windows and Unix scripts have different variable names for defining the same concept, the SDP instance. Unix uses P4INSTANCE, while Windows uses SDP_INSTANCE. 3. This instance tag, a data set identifier, is an SDP concept. I prefer the SDP_INSTANCE name over P4INSTANCE, so I prpose to normalize to SDP_INSTANCE. 4. The P4INSTANCE name makes it look like a setting that might be recognized by the p4d itself, which it is not. (There are other such things such as P4SERVER that could perhaps be renamed as a separate task; but I'm not sure we want to totally disallow the P4 prefix for variable names. It looks too right to be wrong in same cases, like P4BIN and P4DBIN. That's a discussion for another day, outside the scope of this task). Meanwhile: * Fixed a bug in the Windows 2013.3 upgrade script that was referencing undefined P4INSTANCE, as the Windows environment defined only SDP_INSTANCE. * Had P4INSTANCE been removed completely, this change would likely cause trouble for users doing updates for existing SDP installations. So, though it involves slight technical debt, I opted to keep a redundant definition of P4INSTANCE in p4_vars.template, with comments indicating SDP_INSTANCE should be used in favor of P4INSTANCE, with a warning that P4INSTANCE may go away in a future release. This should avoid unnecessary upgrade pain. * In mkdirs.sh, the varialbe name was INSTANCE rather than SDP_INSTANCE. I changed that as well. That required manual change rather than sub/replace to avoid corrupting other similar varialbe names (e.g. MASTERINSTANCE). This is a trivial change technically (a substitute/replace, plus tweaks in p4_vars.template), but impacts many files. |
||
#3 | 12169 | Russell C. Jackson (Rusty) |
Updated copyright date to 2015 Updated shell scripts to require an instance parameter to eliminate the need for calling p4master_run. Python and Perl still need it since you have to set the environment for them to run in. Incorporated comments from reviewers. Left the . instead of source as that seems more common in the field and has the same functionality. |
||
#2 | 11463 | Russell C. Jackson (Rusty) | Updated dev to prepare for Summit agreed changes. | ||
#1 | 10638 | C. Thomas Tyler | Populate perforce_software-sdp-dev. | ||
//guest/perforce_software/sdp/main/Server/Unix/p4/common/bin/2013.3_replica_upgrade.sh | |||||
#1 | 10148 | C. Thomas Tyler | Promoted the Perforce Server Deployment Package to The Workshop. |