I'm learning elasticsearch now.
This slide is old, new version is here. -> http://blog.johtani.info/blog/2013/08/30/hold-first-elasticsearch-meetup-in-japan/
5. elasticsearchのインストール
$ wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.2.tar.gz
$ tar zxvf elasticsearch-1.2.2.tar.gz
インストール
設定
con?g/elasticsearch.ymlが設定ファイルなのでこのファイルを修正
今回はとりあえず以下の設定だけ入れておく。
index.number_of_shards: 1 #シャードの数
index.number_of_replicas: 0?#レプリカの数
# Path to directory where to store index data allocated for this node.
path.data: /home/ec2-user/elasticsearch-1.2.2/data
# Path to log files:
path.logs: /home/ec2-user/elasticsearch-1.2.2/logs