Ubuntu 20.04에 elasticsearch를 설치하려고 하는데 다음 오류가 발생합니다.
home@VirtualBox$ wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
gpg: no valid OpenPGP data found.
나는 또한 다음을 시도했지만 운이 없었습니다.
VirtualBox:~$ wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch -O mykey
VirtualBox:~$ sudo apt-key add <<< mykey
[sudo] password for VirtualBox:
gpg: no valid OpenPGP data found.
Ubuntu 패키지를 업데이트했습니다.
sudo apt-get update
이 문제를 어떻게 해결할 수 있나요?
미리 감사드립니다
답변1
다음과 같이 키만 다운로드해 보세요.
wget -O key https://artifacts.elastic.co/GPG-KEY-elasticsearch --no-check-certificate
문제는 인증서 문제일 수 있습니다.