1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

elastica/cookbook-elasticsearchを使ってElasticsearch1.7.1のインストール

Last updated at Posted at 2015-07-31

elastic/cookbook-elasticsearch

elasticsearch_install 'my_es_installation' do
  type              :package # type of install
  version           "1.7.1"
  package_url       "https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.1.deb"
  package_checksum  "5832808f2a4c77de5af225db11da00138d9ea07a17f7b9212f4d2aac5317169d"
  action            :install # could be :remove as well
end

sha1じゃなくて、sha256でchecksum作りましょうという話。

macの場合は

$ shasum -a 256 ~/Downloads/elasticsearch-1.7.1.deb

的な感じで生成しましょうという話。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?