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.