首先是要安裝jdk的,
yumlistjava* yuninstalljava-1.7.0-openjdk.x86_64
然後需要設置一下JAVA_HOME環境變量,那麼問題來了,剛才安裝的jdk路徑在哪?
rpm-qa|grepjava
看一眼,然後發現有個包叫java-1.7.0-openjdk-1.7.0.111-2.6.7.2.el7_2.x86_64
rpm-qljava-1.7.0-openjdk-1.7.0.111-2.6.7.2.el7_2.x86_64
於是列出了一大串路徑,在其中找到了/usr/lib/jvm/
,cd到這個目錄下發現嗯,javac啊,java都有,就是它了。下面配置JAVA_HOME環境變量java-1.7.0-openjdk-1.7.0.111-2.6.7.2.el7_2.x86_64
/jre/bin
vim/etc/profile
在尾部加上
exportJAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.111-2.6.7.2.el7_2.x86_64/jre/bin exportCLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar exportPATH=$PATH:$JAVA_HOME/bin
:wq
退出vim編輯器,然後source /etc/profile
就行了。
這裡使用yum方式來安裝 ES的官方網站上有說明: https://www.elastic.co/guide/en/elasticsearch/reference/current/setup.html 首先下載並安裝公鑰
rpm--importhttps://packages.elastic.co/GPG-KEY-elasticsearch
配置一下yum源
vim/etc/yum.repos.d/elasticsearch.repo
elasticsearch.repo
內容:
[elasticsearch-2.x] name=Elasticsearchrepositoryfor2.xpackages baseurl= gpgcheck=1 gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearchenabled=1
然後yum makecache
更新一下緩存,
yuminstallelasticsearch
安裝elasticsearch完畢。
之後我們需要將ElasticSearch作為一個服務來運行,具體參考這裡 https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-service.html
sudo/sbin/chkconfig--addelasticsearch sudoserviceelasticsearchstart
至此為止,elasticsearch服務就啟動了,訪問一下9200端口
curl-XGETlocalhost:9200
{ "name":"HindsightLad", "cluster_name":"elasticsearch", "version":{ "number":"2.0.0", "build_hash":"de54438d6af8f9340d50c5c786151783ce7d6be5", "build_timestamp":"2015-10-22T08:09:48Z", "build_snapshot":false, "lucene_version":"5.2.1" }, "tagline":"YouKnow,forSearch"}
但是外部卻不能訪問,telnet端口9200不通
telnet172.18.10.1399200
防火牆也沒開
serviceiptablesstatus
解決方法:修改
vi /etc/elasticsearch/elasticsearch.yml
network.host:0.0.0.0
問題解
http://xxxxxx/Linuxjc/1156087.html TechArticle