Skip to content

Installation Guide: Artifactory Pro (Cloud & On-Prem)

Check

Pre-production checks:

  • Back up your VMs before any installation.
  • Confirm you have at least 8 GB RAM and 200 GB SSD available.
  • Ensure all OS security updates are applied.

Step 1. OS Preparation

sudo apt update && sudo apt upgrade -y

Step 2. Install Java (OpenJDK)

sudo apt install openjdk-11-jdk -y
# Older Ubuntu? Use openjdk-8-jdk

Step 3. Add JFrog Artifactory Repository

lsb_release -c  # Get your <codename>, e.g. 'focal' for 20.04
wget -qO - https://releases.jfrog.io/artifactory/api/gpg/key/public | sudo apt-key add -
echo "deb https://releases.jfrog.io/artifactory/artifactory-pro-debs <codename> main" | sudo tee /etc/apt/sources.list.d/jfrog-artifactory-pro.list
sudo apt update

Step 4. Install Artifactory Pro

sudo apt install jfrog-artifactory-pro

Step 5. Start and Enable Service

sudo systemctl start artifactory
sudo systemctl enable artifactory
sudo systemctl status artifactory

admonition:info The default port is 8081. You can test with curl http://localhost:8081/artifactory

Step 6. Web UI First Login

  • Connect: http:///artifactory
  • Default user: admin (change password immediately!)