admin管理员组

文章数量:1399912

I am a system administrator discovering the virtual machine hosting Artifactory and used by developpers. Artifactory seems to be at version 7.98.13 (I read on the front page "Open source license 7.98.13 rev") and has been running since version 4, I guess, from the list of releases in /var/lib/apt/lists. All the while debian linux has been upgraded along with postgres

The repository used is:
deb buster main (for those unfamiliar with linux debian, buster is debian 10) But there is no longer a key associated to this address giving an error when updating.

So my questions are:

  • how to update reliably Artifactory?
  • probably linked: what repository should be used and how to get a key?

Thank you.

I am a system administrator discovering the virtual machine hosting Artifactory and used by developpers. Artifactory seems to be at version 7.98.13 (I read on the front page "Open source license 7.98.13 rev") and has been running since version 4, I guess, from the list of releases in /var/lib/apt/lists. All the while debian linux has been upgraded along with postgres

The repository used is:
deb https://releases.jfrog.io/artifactory/artifactory-debs buster main (for those unfamiliar with linux debian, buster is debian 10) But there is no longer a key associated to this address giving an error when updating.

So my questions are:

  • how to update reliably Artifactory?
  • probably linked: what repository should be used and how to get a key?

Thank you.

Share Improve this question asked Mar 24 at 15:45 GiannisGiannis 11 bronze badge
Add a comment  | 

2 Answers 2

Reset to default 0

Starting from Artifactory 7.104.13, Artifactory is now support Bookworm distribution (Debian 12)

You can run the following commands:

wget -qO - https://releases.jfrog.io/artifactory/api/v2/repositories/artifactory-pro-debs/keyPairs/primary/public | sudo apt-key add -;
echo "deb https://releases.jfrog.io/artifactory/artifactory-pro-debs bookworm main" | sudo tee -a /etc/apt/sources.list;
sudo apt-get update && sudo apt-get install jfrog-artifactory-pro=7.104.13

Thanks Yarden for your answer.

Unfortunately, apt-key is deprecated and your command line can't process. But you gave me tips to find:

curl -sS  https://releases.jfrog.io/artifactory/jfrog-gpg-public/jfrog_public_gpg.key | sudo tee /usr/share/keyrings/jfrog.asc && echo "deb [signed-by=/usr/share/keyrings/jfrog.asc] https://releases.jfrog.io/artifactory/jfrog-debs xenial contrib" > /etc/apt/sources.list.d/jfrog.list

that gave me the key lacking to have a functional apt update. My 7.98 version should be updated (not sure, I am at 7.98.13 and should be at 7.98.15). But to upgrade it to the 7.104.14 (last current version) I had problems.

Your apt-get install jfrog-artifactory-oss=7.104.13 gives me an error: the package is deprecated or missing

Artifactory help website (can we say it is really a "help"? ...) gives me:

curl -g -L -O -J 'https://releases.jfrog.io/artifactory/artifactory-pro-debs/pool/jfrog-artifactory-pro/jfrog-artifactory-pro-[RELEASE].deb'

which is ok with pro version efficiently downloaded but doesn't compute if I replace pro by oss version

I tried to download the file from https://jfrog/fr/community/download-artifactory-oss/ and I got a .gz file that gave me a directory artifactory-oss-7.104.14 where I expected a .deb file

I am a bit at a loss there to update Artifactory... The key error is fixed but I can't get new versions.

本文标签: Updating JFrog Artifactory in debian 12Stack Overflow