8 lines
481 B
Bash
Executable File
8 lines
481 B
Bash
Executable File
#!/bin/bash
|
|
cd /usr/share/elasticsearch/bin/
|
|
./elasticsearch-users useradd x_pack_rest_user -p x-pack-test-password -r superuser || true
|
|
echo "testnode" > /tmp/password
|
|
cat /tmp/password | ./elasticsearch-keystore add -x -f -v 'xpack.security.transport.ssl.keystore.secure_password'
|
|
cat /tmp/password | ./elasticsearch-keystore add -x -f -v 'xpack.security.http.ssl.keystore.secure_password'
|
|
/usr/local/bin/docker-entrypoint.sh | tee > /usr/share/elasticsearch/logs/console.log
|