update netxms on fedora 38

Started by luccosen, November 22, 2023, 11:28:03 PM

Previous topic - Next topic

luccosen

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

Alex Kirhenshtein

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

luccosen