1, 啓動trial license(30天試用)
curl -H "Content-Type:application/json" -XPOST http://127.0.0.1:19200/_xpack/license/start_trial?acknowledge=true
複製代碼
2,設置用戶名和密碼
bin/elasticsearch-setup-passwords interactive
複製代碼
3,若是發現以下錯誤提示
org.elasticsearch.ElasticsearchException: Security must be explicitly enabled when using a trial license. Enable security by setting [xpack.security.enabled] to [true] in the elasticsearch.yml file and restart the node
複製代碼
4, 那麼就須要在配置文件中開啓x-pack驗證, 修改config目錄下面的elasticsearch.yml文件,在裏面添加以下內容,並重啓
xpack.security.enabled: true
複製代碼
5,再次執行設置用戶名和密碼的命令,這裏須要爲4個用戶分別設置密碼,elastic, kibana, logstash_system,beats_system
bin/elasticsearch-setup-passwords interactive
複製代碼
Initiating the setup of passwords for reserved users elastic,kibana,logstash_system,beats_system.
You will be prompted to enter passwords as the process progresses.
Please confirm that you would like to continue [y/N]y
Enter password for [elastic]:
passwords must be at least [6] characters long
Try again.
Enter password for [elastic]:
Reenter password for [elastic]:
Passwords do not match.
Try again.
Enter password for [elastic]:
Reenter password for [elastic]:
Enter password for [kibana]:
Reenter password for [kibana]:
Enter password for [logstash_system]:
Reenter password for [logstash_system]:
Enter password for [beats_system]:
Reenter password for [beats_system]:
Changed password for user [kibana]
Changed password for user [logstash_system]
Changed password for user [beats_system]
Changed password for user [elastic]
複製代碼
6,修改密碼命令以下
curl -H "Content-Type:application/json" -XPOST -u elastic 'http://127.0.0.1:9200/_xpack/security/user/elastic/_password' -d '{ "password" : "123456" }'
複製代碼
7,修改kibana配置文件,config下的kibana.yml,添加以下內容
elasticsearch.username: "elastic"
elasticsearch.password: "123456"
複製代碼