PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Tuesday, October 25, 2022

[FIXED] How to import the public GPG key for OpenSearch in Ubuntu based environment?

 October 25, 2022     centos, elasticsearch, opensearch, ubuntu     No comments   

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)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing