Issue
Trying to install OpenSearch in an Ubuntu-based environment. Recently moved over from old CentOS machine. What is the equivalent command below for ubuntu-based machines?
sudo rpm --import https://artifacts.opensearch.org/publickeys/opensearch.pgp
Solution
You can use gpg --import
.
In your case I would do
wget -o opensearchkey https://artifacts.opensearch.org/publickeys/opensearch.pgp
and then
gpg --import opensearchkey
You can list the newly imported key by gpg --list-keys
Answered By - Riz Answer Checked By - Candace Johnson (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.