NetXMS Support Forum

English Support => General Support => Topic started by: luccosen on November 22, 2023, 11:28:03 PM

Title: update netxms on fedora 38
Post by: luccosen on November 22, 2023, 11:28:03 PM
hi,
I tried to update the system with dnf update, which would also have updated netxms to 4.4.3, but it crashed due to the wrong gpg key. How can I solve it?
and once updated, do I have to check the java version? and more? does the port remain 8080?

 Thank you
Title: Re: update netxms on fedora 38
Post by: Alex Kirhenshtein on November 23, 2023, 12:00:29 AM
HI

most likely you have the old (expired) key in the system already.

Check with rpm, then remove it and re-import:

rpm -q gpg-pubkey --qf '%{NAME}-%{VERSION}-%{RELEASE}\t%{SUMMARY}\n'
output will be something like:

[root@9c98412a8664 /]# rpm -q gpg-pubkey --qf '%{NAME}-%{VERSION}-%{RELEASE}\t%{SUMMARY}\n'
gpg-pubkey-5323552a-6112bcdc    Fedora (37) <[email protected]> public key
gpg-pubkey-dbedecba-6336dadf    NetXMS Automatic Signing Key (RPM) <[email protected]> public key

remove it:

rpm -e gpg-pubkey-dbedecba-6336dadf
then try update / install again
Title: Re: update netxms on fedora 38
Post by: luccosen on December 29, 2023, 01:23:20 AM
thanks so much.