134 lines
3.7 KiB
Bash
Executable File
134 lines
3.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# T&M Hansson IT AB © - 2019, https://www.hanssonit.se/
|
|
# SwITNet Ltd © - 2019, https://switnet.net/
|
|
|
|
# shellcheck disable=2034,2059
|
|
true
|
|
# shellcheck source=lib.sh
|
|
NC_UPDATE=1 && ES_INSTALL=1 . <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
|
|
unset NC_UPDATE
|
|
unset ES_INSTALL
|
|
|
|
print_text_in_color "$ICyan" "Installing Elastic Search & Full Text Search on Nextcloud..."
|
|
|
|
# Check for errors + debug code and abort if something isn't right
|
|
# 1 = ON
|
|
# 0 = OFF
|
|
DEBUG=0
|
|
debug_mode
|
|
|
|
# Must be root
|
|
root_check
|
|
|
|
# Nextcloud 13 is required.
|
|
lowest_compatible_nc 13
|
|
|
|
# Make sure there is an Nextcloud installation
|
|
if ! [ "$(occ_command -V)" ]
|
|
then
|
|
msg_box "It seems there is no Nextcloud server installed, please check your installation."
|
|
exit 1
|
|
fi
|
|
|
|
# Disable and remove Nextant + Solr
|
|
if [ -d "$NC_APPS_PATH"/nextant ]
|
|
then
|
|
# Remove Nextant
|
|
msg_box "We will now remove Nextant + Solr and replace it with Full Text Search"
|
|
occ_command app:disable nextant
|
|
rm -rf $NC_APPS_PATH/nextant
|
|
|
|
# Remove Solr
|
|
service solr stop
|
|
rm -rf /var/solr
|
|
rm -rf /opt/solr*
|
|
rm /etc/init.d/solr
|
|
deluser --remove-home solr
|
|
deluser --group solr
|
|
fi
|
|
|
|
# Reset Full Text Search to be able to index again, and also remove the app to be able to install it again
|
|
if [ -d $NC_APPS_PATH/fulltextsearch ]
|
|
then
|
|
print_text_in_color "$ICyan" "Removing old version of Full Text Search and resetting the app..."
|
|
sudo -u www-data php $NCPATH/occ fulltextsearch:reset
|
|
occ_command app:disable fulltextsearch
|
|
rm -rf $NC_APPS_PATH/fulltextsearch
|
|
fi
|
|
if [ -d $NC_APPS_PATH/fulltextsearch_elasticsearch ]
|
|
then
|
|
occ_command app:disable fulltextsearch_elasticsearch
|
|
rm -rf $NC_APPS_PATH/fulltextsearch_elasticsearch
|
|
fi
|
|
if [ -d $NC_APPS_PATH/files_fulltextsearch ]
|
|
then
|
|
occ_command app:disable files_fulltextsearch
|
|
rm -rf $NC_APPS_PATH/files_fulltextsearch
|
|
fi
|
|
|
|
# Check & install docker
|
|
install_docker
|
|
set_max_count
|
|
mkdir -p "$RORDIR"
|
|
if does_this_docker_exist "$nc_fts"
|
|
then
|
|
docker_prune_this "$nc_fts"
|
|
else
|
|
docker pull "$nc_fts"
|
|
fi
|
|
|
|
# Create configuration YML
|
|
cat << YML_CREATE > /opt/es/readonlyrest.yml
|
|
readonlyrest:
|
|
access_control_rules:
|
|
- name: Accept requests from cloud1 on $INDEX_USER-index
|
|
groups: ["cloud1"]
|
|
indices: ["$INDEX_USER-index"]
|
|
|
|
users:
|
|
- username: $INDEX_USER
|
|
auth_key: $INDEX_USER:$ROREST
|
|
groups: ["cloud1"]
|
|
YML_CREATE
|
|
|
|
# Set persmissions
|
|
chown 1000:1000 -R $RORDIR
|
|
chmod ug+rwx -R $RORDIR
|
|
|
|
# Run Elastic Search Docker
|
|
docker run -d --restart always \
|
|
--name $fts_es_name \
|
|
--ulimit memlock=-1:-1 \
|
|
--ulimit nofile=65536:65536 \
|
|
-p 9200:9200 \
|
|
-p 9300:9300 \
|
|
-v esdata:/usr/share/elasticsearch/data \
|
|
-v /opt/es/readonlyrest.yml:/usr/share/elasticsearch/config/readonlyrest.yml \
|
|
-e "discovery.type=single-node" \
|
|
-e "bootstrap.memory_lock=true" \
|
|
-e ES_JAVA_OPTS="-Xms512M -Xmx512M" \
|
|
-i -t $nc_fts
|
|
|
|
# Wait for bootstraping
|
|
docker restart $fts_es_name
|
|
countdown "Waiting for docker bootstraping..." "20"
|
|
docker logs $fts_es_name
|
|
|
|
# Get Full Text Search app for nextcloud
|
|
install_and_enable_app fulltextsearch
|
|
install_and_enable_app fulltextsearch_elasticsearch
|
|
install_and_enable_app files_fulltextsearch
|
|
chown -R www-data:www-data $NC_APPS_PATH
|
|
|
|
# Final setup
|
|
occ_command fulltextsearch:configure '{"search_platform":"OCA\\FullTextSearch_ElasticSearch\\Platform\\ElasticSearchPlatform"}'
|
|
occ_command fulltextsearch_elasticsearch:configure "{\"elastic_host\":\"http://${INDEX_USER}:${ROREST}@localhost:9200\",\"elastic_index\":\"${INDEX_USER}-index\"}"
|
|
occ_command files_fulltextsearch:configure "{\"files_pdf\":\"1\",\"files_office\":\"1\"}"
|
|
if occ_command fulltextsearch:index < /dev/null
|
|
then
|
|
msg_box "Full Text Search was successfully installed!"
|
|
fi
|
|
|
|
exit
|