mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
7c7e47aa0f
This is related to elastic/x-pack-elasticsearch#1217. This change introduces a tool bin/x-pack/setup-passwords that will streamline the setting of internal user passwords. There are two modes of operation. One mode called auto, automatically generates passwords and prints them to the console. The second mode called interactive allows the user to enter passwords. All passwords are changed using the elastic superuser. The elastic password is the first password to be set. Original commit: elastic/x-pack-elasticsearch@00974234a2
9 lines
362 B
Batchfile
9 lines
362 B
Batchfile
@echo off
|
|
|
|
rem Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
rem or more contributor license agreements. Licensed under the Elastic License;
|
|
rem you may not use this file except in compliance with the Elastic License.
|
|
|
|
PUSHD "%~dp0"
|
|
CALL "%~dp0.in.bat" org.elasticsearch.xpack.security.authc.esnative.tool.SetupPasswordTool %*
|
|
POPD |