Compare commits

...

2 Commits

Author SHA1 Message Date
Michel Roegl-Brunner
f6d2f4a782 Merge branch 'zammad' of https://github.com/michelroegl-brunner/ProxmoxVE into zammad 2024-12-19 15:43:54 +01:00
Michel Roegl-Brunner
98bce82293 Sync with develop branch 2024-12-19 15:40:14 +01:00
2 changed files with 29 additions and 27 deletions

View File

@ -20,12 +20,14 @@ $STD apt-get install -y \
sudo \
gpg \
wget \
nginx
nginx \
apt-transport-https \
gnupg
msg_ok "Installed Dependencies"
msg_info "Setting up Elasticsearch"
echo "deb [signed-by=/etc/apt/trusted.gpg.d/elasticsearch.gpg] https://artifacts.elastic.co/packages/7.x/apt stable main"| tee -a /etc/apt/sources.list.d/elastic-7.x.list
curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-7.x.list >/dev/null
$STD apt-get update
$STD apt-get -y install elasticsearch
echo "-Xms2g" >>/etc/elasticsearch/jvm.options