Navigation

Update

Download Airsonic WAR package

Download the latest Airsonic .war package from the download page, or with the command below:

wget https://github.com/airsonic/airsonic/releases/download/v10.6.2/airsonic.war

Download and import Andrew DeMaria public key:

gpg --keyserver keyserver.ubuntu.com --recv 0A3F5E91F8364EDF

Download the signed checksums file and verify the previously download .war package:

wget https://github.com/airsonic/airsonic/releases/download/v10.6.2/artifacts-checksums.sha.asc
gpg --verify artifacts-checksums.sha.asc
sha256sum -c artifacts-checksums.sha.asc

Standalone deployment

If you’re using systemd, a simple systemctl restart airsonic should be enough.

Tomcat deployment

service tomcat8 stop
cd /usr/local/apache-tomcat-8.0/webapps
rm -R ROOT
mv airsonic.war ROOT.war
chown www:www ROOT.war
service tomcat8 start