🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 安全配置 有一些设置是敏感的,通过文件系统的权限来保护是不足够的。基于这种场景,elasticsearch提供了一个keystore,可以通过密码保护。`elasticsearch-keystore`就是用来管理与设置keystore的工具。 > 注意 > > 所有的指令都必须使用运行elasticsearch的用户来执行。 > 注意 > > Only some settings are designed to be read from the keystore. See documentation for each setting to see if it is supported as part of the keystore. > 注意 > > All the modifications to the keystore take affect only after restarting Elasticsearch. ## 创建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 ``` > my note > > 安全设置 `elasticsearch-keystore`