💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 安全配置 原文链接 : [https://www.elastic.co/guide/en/elasticsearch/reference/current/secure-settings.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/secure-settings.html) 译文链接 : [http://www.apache.wiki/pages/viewpage.action?pageId=9406540](http://www.apache.wiki/pages/viewpage.action?pageId=9406540) 贡献者 : [阿叩](/display/~luanqing),[ApacheCN](/display/~apachecn),[Apache中文网](/display/~apachechina) 校对 : [misaka nagisa](/display/~wangjueyimin) 有一些设置是敏感的,通过文件系统的权限来保护是不足够的。基于这种场景,elasticsearch提供了一个keystore,可以通过密码保护。`elasticsearch-keystore`就是用来管理与设置keystore的工具。 所有的指令都必须使用运行elasticsearch的用户来执行。 只有部分设置被设计为从keystore读取。请一一参阅设置项文档,以查看其是否为keystore支持的那部分设置。 ## 创建keystore 使用`create`指令来创建`elasticsearch.keystore`: ``` bin/elasticsearch-keystore create ``` `elasticsearch.keystore`文件将被创建在`elasticsearch.yml`文件的旁边。 ## 列出keystore的配置 使用`list`指令来列出`elasticsearch.keystore`的设置: ``` bin/elasticsearch-keystore list ``` ## 添加一个String设置 一些敏感的字符串,像云平台插件的一个认真参数,可以通过`add`指令来添加: ``` bin/elasticsearch-keystore add the.setting.name.to.set ``` 工具将提示这个值得设置。如果要通过控制台展示,使用`--stdin`参数: ``` cat /file/containing/setting/value | bin/elasticsearch-keystore add --stdin the.setting.name.to.set ``` ## 删除设置 使用`remove`指令来从`keystore`中删除配置: ``` bin/elasticsearch-keystore remove the.setting.name.to.remove ```