查看ID爲2的這條數據:curl
使用更新命令:elasticsearch
使用腳本對年齡+5url
curl -XPOST http://192.168.6.16:9200/my_new_index/user/2/_update?pretty -d '{"script" : "ctx._source.age += 5"}'
報錯:spa
"reason" : "scripts of type [inline], operation [update] and lang [groovy] are disabled"
解決方法:code
在es的conf目錄下的 elasticsearch.yml 文件添加以下配置:blog
script.inline: on
script.indexed: on
以後重啓,再重試該命令ip
執行成功:io
查看ast
curl -XGET http://192.168.6.16:9200/my_new_index/user/2?pretty