Bootstrap your Elasticsearch installation real quick for dev purpose!
brew install coreutils
chmod u+x ./bootstrap.sh
if needed- Execute
./bootstrap.sh
- Follow the instructions to bootstrap your Elasticsearch installation!
Note:
You can even add a symlink to call the script from any directory:
sudo ln -s ~/code/elasticsearch-bootstrap/bootstrap.sh /usr/bin/esdl
Or add an alias in your shell config
alias esdl="~/code/elasticsearch-bootstrap/bootstrap.sh"
(need tosource
reload your config after adding the line)Then use
esdl
to trigger the script.
- Mac & Linux compatible
- OS auto-detection
- Simple Elasticsearch / Kibana installation wizard
- Stack versions check
- Custom directory installation
- Services auto-startup (Elasticsearch & Kibana)
- Add args support for
./bootstrap.sh
(e.g../bootstrap.sh --interactive
) - Add USAGE (
./boostrap.sh --help
)