ElasticSearch


Elastic SearchはLuceneに基づいて構築されたオープンソース、分散、RESTfulサーチエンジンです。クラウドコンピューティングに使用する設計で、リアルタイム検索、安定、信頼性、高速、便利なインストールができます。HTTPでJSONを使ってデータインデックスを行うことをサポートします。
Install 
cd /opt

curl http://cloud.github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.18.7.tar.gz | tar zxv 
ln -s elasticsearch-0.18.7/ elasticsearch

curl -k -L http://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master | tar -xz
mv *servicewrapper*/service elasticsearch/bin/
rm -Rf *servicewrapper*
/opt/elasticsearch/bin/service/elasticsearch install

ln -s `readlink -f elasticsearch/bin/service/elasticsearch` /usr/bin/elasticsearch_ctl

sed -i -e 's|# cluster.name: elasticsearch|cluster.name: graylog2|' /opt/elasticsearch/config/elasticsearch.yml

service iptables stop

/etc/init.d/elasticsearch start