mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
* Turn on elastic search 7 tests, and Install ES first, check later this give ES time to start in the background instead of slowing us down
31 lines
1.3 KiB
Bash
Executable File
31 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -z "$ELASTIC_SEARCH_VERSION" ]]; then
|
|
echo "ELASTIC_SEARCH_VERSION variable not set"
|
|
else
|
|
echo "Downloading Elasticsearch ${ELASTIC_SEARCH_VERSION}"
|
|
sudo dpkg -r elasticsearch
|
|
|
|
|
|
wget "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ELASTIC_SEARCH_VERSION}.deb"
|
|
wget "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ELASTIC_SEARCH_VERSION}.deb.sha512"
|
|
|
|
shasum -a 512 -c "elasticsearch-${ELASTIC_SEARCH_VERSION}.deb.sha512"
|
|
|
|
|
|
echo "Installing Elasticsearch ${ELASTIC_SEARCH_VERSION}"
|
|
sudo dpkg -i --force-confnew "elasticsearch-${ELASTIC_SEARCH_VERSION}.deb"
|
|
|
|
if [[ $ELASTIC_SEARCH_VERSION == 7\.* ]]; then
|
|
# https://stackoverflow.com/questions/55951531/running-elasticsearch-7-0-on-a-travis-xenial-build-host
|
|
sudo sed -i.old 's/-Xms1g/-Xms128m/' /etc/elasticsearch/jvm.options
|
|
sudo sed -i.old 's/-Xmx1g/-Xmx128m/' /etc/elasticsearch/jvm.options
|
|
echo -e '-XX:+DisableExplicitGC\n-Djdk.io.permissionsUseCanonicalPath=true\n-Dlog4j.skipJansi=true\n-server\n' | sudo tee -a /etc/elasticsearch/jvm.options
|
|
sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch
|
|
fi
|
|
|
|
echo "Starting Elasticsearch ${ELASTIC_SEARCH_VERSION}"
|
|
# sudo service elasticsearch start
|
|
sudo systemctl start elasticsearch
|
|
fi
|