Steps to upgrade

ARTIFACTORY: Installation Quick Start Guide - Linux Archive

AuthorFullName__c
Lawrence Fung
articleNumber
000005197
ft:sourceType
Salesforce
FirstPublishedDate
2022-01-13T19:27:31Z
lastModifiedDate
2022-01-13
VersionNumber
15

1. Stop Artifactory

cd $JFROG_HOME/app/bin
./artifactoryctl stop

2. Extract the contents of the compressed archive and go to the extracted folder.

tar -xvf jfrog-artifactory-<pro|oss|cpp-ce>-<version>-linux.tar.gz

3. Replace the old app folder with the new one.

# Export variables to simplify commands
export JFROG_HOME=<Your JFrog home directory, for example /opt/jfrog>
export JF_NEW_VERSION=<For example /opt/jfrog/artifactory-7.x>
 
# Remove old app
rm -rf $JFROG_HOME/app
 
# Copy new app
cp -r $JF_NEW_VERSION/app $JFROG_HOME
 
# Remove extracted new version
rm -rf $JF_NEW_VERSION

4. Startup Artifactory.

$JFROG_HOME/artifactory/app/bin/artifactoryctl start|stop|check

5. Repeat for the other nodes.