Updating Allegra#

Docker Composer Based#

If you had Allegra installed on Docker using the Docker compose file docker-compose.yml, you can simply upgrade to the latest published version like this:

cd $HOME/allegra
export WORKDIR="$HOME/allegra"
wget https://www.alltena.com/files/downloads/latest-dist/core/allegra-latest-docker.tar -O allegra-docker.tar

docker compose pull
docker compose up -d

Done!

Manual Installation#

In case you had installed Allegra manually, proceed as follows:

  1. Stop the Tomcat service:

service tomcat9 stop
  1. Delete directory $TOMCAT_HOME/webapps/allegra and file $TOMCAT_HOME/webapps/allegra.war.

cd $TOMCAT_HOME/webapps
rm -rf allegra allegra.war
  1. Download the new Allegra WAR file from the Allegra Download page:

wget https://www.alltena.com/files/downloads/latest-dist/core/allegra-latest.war -O allegra.war
  1. Start the Tomcat service with

service tomcat9 start