您好,登錄后才能下訂單哦!
1、配置JAVA環(huán)境,最新版
.........省略.........
普通用戶不生效的話,重啟reboot
2、安裝
下載zip文件elasticsearch-5.4.0.zip
unzip elasticsearch-5.4.0.zip
cd elasticsearch-5.4.0
3、啟動
./bin/elasticsearch -d
-d 參數(shù)臺運行
4、測試
curl 'http://localhost:9200/'
看到以下信息說明啟動成功
{
"name" : "MkBlpSX",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "7OoxnHQgRqmu2p-8VsGlXA",
"version" : {
"number" : "5.4.0",
"build_hash" : "780f8c4",
"build_date" : "2017-04-28T17:43:27.229Z",
"build_snapshot" : false,
"lucene_version" : "6.5.0"
},
"tagline" : "You Know, for Search"
}
5、客戶端測試
顯示“無法訪問”得需求修改配置文件
vi config/elasticsearch.yml
6、重啟服務(wù),出現(xiàn):
max file descriptors [4096] for elasticsearchprocess likely too low, increase to at least [65536]
解決:
vi /etc/security/limits.conf
添加如下內(nèi)容:
* soft nofile 65536
* hard nofile 65536
* soft nproc 2048
* hard nproc 4096
vi /etc/security/limits.d/20-nproc.conf
修改如下內(nèi)容:
* soft nproc 4096
#修改為
* soft nproc 65536
vi /etc/sysctl.conf
添加下面配置:
vm.max_map_count=655360
并執(zhí)行命令:
sysctl -p
然后,再啟動elasticsearch,即可啟動成功。
再,本地測試與客戶端測試:進行對比
curl 'http://localhost:9200'
http://192.168.137.7:9200/
7、安裝elasticsearch-head
.............待續(xù)...........
經(jīng)過幾天的測試,網(wǎng)上沒有響應(yīng)的教程,只有零零散散的片段,以下是本人親測安裝過程總結(jié):
http://down.51cto.com/data/2312780
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。