How do i fix - There is no public key available for the following key IDs: 9AA38DCD55BE302B

When i run apt-get update on my debian system i get the following error :-

Thereisnopublic key available for the following key IDs:
9AA38DCD55BE302B

How can I fix this issue?


Type in the following commands in SSH /shell 

 

apt-key update

apt-key is a program that is used to manage a keyring of gpg keys for secure apt. The keyring is kept in the file /etc/apt/trusted.gpg (not to be confused with the related but not very interesting /etc/apt/trustdb.gpg). apt-key can be used to show the keys in the keyring, and to add or remove a key.

Further info on the Debian wiki: http://wiki.debian.org/SecureApt

If that doesn't work, try:

gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 9AA38DCD55BE302B
apt
-key add /root/.gnupg/pubring.gpg
apt
-get update

 
  • 43 Users Found This Useful
Was this answer helpful?

Related Articles

How can i show my cpu info (linux)?

How can i show my cpu info? Log in to your server via SSH then typ;e the following command...

How Can i tell if my server is being DoS/DDoS'd (denial of service ) ?

You can use this command to see the number of connections per IP. It's a bit easier on the eye...

How do i fix - 4gb seg fixup on debian (lenny)?

Some clients have had problems when upgrading their vps from Debian Etch to Debian Lenny.  After...

How do I install Lua 5.0 on a debian system?

How do I install Lua 5.0 on a debian server?   You can do this by simply logging in to your...