{"id":5238,"date":"2018-07-03T20:56:33","date_gmt":"2018-07-03T16:56:33","guid":{"rendered":"https:\/\/www.howtoforge.com\/tutorial\/ubuntu-airsonic-media-server\/"},"modified":"2018-07-03T20:56:33","modified_gmt":"2018-07-03T16:56:33","slug":"how-to-install-airsonic-media-server-on-ubuntu-18-04-lts","status":"publish","type":"post","link":"https:\/\/afaghhosting.net\/blog\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts\/","title":{"rendered":"How to Install Airsonic Media Server on Ubuntu 18.04 LTS"},"content":{"rendered":"<p>Airsonic is free and open source media server. It&#8217;s a self-hosted web-based media streamer that provides ubiquitous access to your music, makes it easy to share your music with friends or listen to your music while at work. Airsonic has been created with Java as a full fork of the Subsonic, and designed to handle very large music collections and optimized for MP3 stream. Airsonic works with any audio or video formats that can stream over the HTTP protocol, including WMA, FLAC, APE etc.<\/p>\n<p>In this tutorial, I will show you step-by-step how to install Airsonic on Ubuntu 18.04. We will show you how to deploy the stand-alone Airsonic installation using the .WAR package, run Airsonic as a service, and then configure the Nginx web server as a reverse proxy for Airsonic.<\/p>\n<h2 id=\"prerequisites\">Prerequisites<\/h2>\n<ul>\n<li>Ubuntu 18.04<\/li>\n<li>Root privileges<\/li>\n<\/ul>\n<h2 id=\"what-we-will-do\">What we will do?<\/h2>\n<ol>\n<li>Install Java OpenJDK<\/li>\n<li>Install and Configure AirSonic<\/li>\n<li>Generate New SSL Letsencrypt Certificate<\/li>\n<li>Configure Nginx as a Reverse Proxy<\/li>\n<li>Configure UFW Firewall<\/li>\n<li>Testing<\/li>\n<\/ol>\n<h2 id=\"step-install-java-openjdk\">Step 1 &#8211; Install Java OpenJDK<\/h2>\n<p>Airsonic is a Java-based application software, so we need to install Java on the server, and it requires the OpenJDK 1.8x series installation. In this first step, we will install Java OpenJDK from the PPA repository webupd8team.<\/p>\n<p>Install the &#8216;software-properties-common&#8217; packages and then add the Java OpenJDK PPA repository.<\/p>\n<p>Run the following apt commands.<\/p>\n<p class=\"command\">sudo apt install software-properties-common apt-transport-https -y<br \/>sudo add-apt-repository ppa:webupd8team\/java -y<\/p>\n<p>Now install the Java OpenJDK.<\/p>\n<p class=\"command\">sudo apt install oracle-java8-installer -y<\/p>\n<p>And after the installation is complete, check the Java OpenJDK version.<\/p>\n<p class=\"command\">java -version<\/p>\n<p>Now you will get the Java OpenJDK 1.8 series has been installed on the Ubuntu 18.04 system.<\/p>\n<p><a class=\"fancybox\" id=\"img-1\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/1.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts.png\" alt=\"Install Java OpenJDK\" width=\"500\" height=\"125\" title=\"\"><\/a><\/p>\n<h2 id=\"step-install-and-configure-airsonic\">Step 2 &#8211; Install and Configure Airsonic<\/h2>\n<p>Airsonic provides different installation packages, for this guide, we will be using the &#8216;stand-alone WAR installation&#8217;.<\/p>\n<p>Create a new user named &#8216;airsonic&#8217;, and create a new directory &#8216;\/opt\/airsonic&#8217;.<\/p>\n<p class=\"command\">useradd airsonic<br \/>mkdir -p \/opt\/airsonic<\/p>\n<p>Now go to the &#8216;\/opt\/airsonic&#8217; directory and download the Airsonic &#8216;.WAR&#8217; package file using wget.<\/p>\n<p class=\"command\">cd \/opt\/airsonic<br \/>wget https:\/\/github.com\/airsonic\/airsonic\/releases\/download\/v10.1.1\/airsonic.war<\/p>\n<p>And change the owner of the &#8216;\/opt\/airsonic&#8217; directory to the &#8216;airsonic&#8217; user and group.<\/p>\n<p class=\"command\">chown -R airsonic:airsonic \/opt\/airsonic<\/p>\n<p>The Airsonic &#8216;.WAR&#8217; binary package has been downloaded.<\/p>\n<p><a class=\"fancybox\" id=\"img-2\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/2.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-1.png\" alt=\"Install and Configure Airsonic\" width=\"500\" height=\"208\" title=\"\"><\/a><\/p>\n<p>Next, we need to create a new service file for Airsonic, go to the &#8216;\/etc\/systemd\/system&#8217; directory and create a new service file &#8216;airsonic.service&#8217;.<\/p>\n<p class=\"command\">cd \/etc\/systemd\/system\/<br \/>vim airsonic.service<\/p>\n<p>Paste the following Airsonic service configuration there.<\/p>\n<pre>[Unit]&#13;\nDescription=Airsonic Media Server&#13;\nAfter=remote-fs.target network.target&#13;\nAssertPathExists=\/opt\/airsonic&#13;\n&#13;\n[Service]&#13;\nType=simple&#13;\nEnvironment=\"JAVA_JAR=\/opt\/airsonic\/airsonic.war\"&#13;\nEnvironment=\"JAVA_OPTS=-Xmx700m\"&#13;\nEnvironment=\"AIRSONIC_HOME=\/opt\/airsonic\"&#13;\nEnvironment=\"PORT=8080\"&#13;\nEnvironment=\"CONTEXT_PATH=\/airsonic\"&#13;\nEnvironment=\"JAVA_ARGS=\"&#13;\nEnvironmentFile=-\/etc\/sysconfig\/airsonic&#13;\nExecStart=\/usr\/bin\/java \\&#13; $JAVA_OPTS \\&#13; -Dairsonic.home=${AIRSONIC_HOME} \\&#13; -Dserver.context-path=${CONTEXT_PATH} \\&#13; -Dserver.port=${PORT} \\&#13; -jar ${JAVA_JAR} $JAVA_ARGS&#13;\nUser=airsonic&#13;\nGroup=airsonic&#13;\n&#13;\n[Install]&#13;\nWantedBy=multi-user.target<\/pre>\n<p>Save and exit.<\/p>\n<p>Reload the systemd system and create a new airsonic default configuration file on the &#8216;\/etc\/default&#8217; directory.<\/p>\n<p class=\"command\">sudo systemctl daemon-reload<br \/>vim \/etc\/default\/airsonic<\/p>\n<p>Paste the following default airsonic configuration there.<\/p>\n<pre># Set the location of the standalone war to use&#13;\nJAVA_JAR=\/opt\/airsonic\/airsonic.war&#13;\n&#13;\n# Set any java opts separated by spaces&#13;\nJAVA_OPTS=-Xmx700m&#13;\n&#13;\n# Set a different location for the airsonic home.&#13;\n# If this path is \/opt\/libresonic or even contains \"libresonic\",&#13;\n# the data from a previous libresonic can be used as is (i.e. without&#13;\n# renaming libresonic.properties,db\/libresonic*, etc&#13;\nAIRSONIC_HOME=\/opt\/airsonic&#13;\n&#13;\n# Change the port to listen on&#13;\nPORT=8080&#13;\n&#13;\n# Change the path that is listened to on&#13;\nCONTEXT_PATH=\/airsonic&#13;\n&#13;\n# Add any java args. These are different than JAVA_OPTS in that&#13;\n# they are passed directly to the program. The default is empty:&#13;\n#JAVA_ARGS=&#13;\n&#13;\n# Note that there are several settings for spring boot, not explicitly listed&#13;\n# here, but can be used in either JAVA_OPTS or JAVA_ARGS. The full list&#13;\n# can be found here:&#13;\n# https:\/\/docs.spring.io\/spring-boot\/docs\/1.4.5.RELEASE\/reference\/htmlsingle\/#common-application-properties&#13;\n# For example to set debug across the board:&#13;\n#JAVA_ARGS=--debug&#13;\n&#13;\n# Or to change the IP address that is listened to:&#13;\nJAVA_ARGS=--server.address=127.0.0.1<\/pre>\n<p>Save and exit.<\/p>\n<p>Now start the Airsonic service and enable it to launch everytime at system boot.<\/p>\n<p class=\"command\">systemctl start airsonic<br \/>systemctl enable airsonic<\/p>\n<p><a class=\"fancybox\" id=\"img-3\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/3.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-2.png\" alt=\"Start airsonic service\" width=\"500\" height=\"130\" title=\"\"><\/a><\/p>\n<p>The airsonic &#8216;stand-alone&#8217; installation is complete, and now it&#8217;s up and running, check it using the netstat command.<\/p>\n<p class=\"command\">netstat -plntu<\/p>\n<p>And you will get the default port Airsonic &#8216;8080&#8217; on the &#8216;LISTEN&#8217; state, used by the Java Airsonic service.<\/p>\n<p><a class=\"fancybox\" id=\"img-4\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/4.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-3.png\" alt=\"Check network with netstat\" width=\"500\" height=\"155\" title=\"\"><\/a><\/p>\n<h2 id=\"step-generate-new-ssl-letsencrypt-certificate\">Step 3 &#8211; Generate New SSL Letsencrypt Certificate<\/h2>\n<p>In this tutorial, we will deploy Airsonic under the HTTPS connection of Nginx reverse proxy with the domain name &#8216;music.hakase-labs.io&#8217;.<\/p>\n<p>And for this step, we will generate the SSL certificates from Letsencrypt. Install the Letsencrypt tool using the following apt command.<\/p>\n<p class=\"command\">sudo apt install letsencrypt -y<\/p>\n<p>The Letsencrypt tool has been installed.<\/p>\n<p>Next, we need to generate the new SSL certificates for the &#8216;music.hakase-labs.io&#8217; domain using the command below.<\/p>\n<p class=\"command\">certbot certonly &#8211;standalone -d music.hakase-labs.io<\/p>\n<p>You will be asked for the email address, and it&#8217;s used for the renew notification. For the Letsencrypt TOS agreement, type &#8216;A&#8217; to agree and for the share email address, you can type &#8216;N&#8217; for No.<\/p>\n<p><a class=\"fancybox\" id=\"img-5\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/5.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-4.png\" alt=\"Create SSL cert\" width=\"500\" height=\"382\" title=\"\"><\/a><\/p>\n<p>When all is complete, you will get the result as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-6\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/6.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-5.png\" alt=\"Letsencrypt SSL certificate has been issued\" width=\"500\" height=\"290\" title=\"\"><\/a><\/p>\n<p>SSL Letsencrypt for the &#8216;music.hakase-labs.io&#8217; domain has been generated, all certificates located at the &#8216;\/etc\/letsencrypt\/live\/domain&#8217; directory.<\/p>\n<h2 id=\"step-install-and-configure-nginx-as-a-reverse-proxy\">Step 4 &#8211; Install and Configure Nginx as a Reverse proxy<\/h2>\n<p>In this step, we will install the Nginx web server and configure it as a reverse proxy for the Airsonic software on port 8080.<\/p>\n<p>Install the Nginx web server using the following apt command.<\/p>\n<p class=\"command\">sudo apt install nginx -y<\/p>\n<p>Now go to the &#8216;\/etc\/nginx&#8217; directory and create a new virtual host file &#8216;airsonic&#8217;.<\/p>\n<p class=\"command\">cd \/etc\/nginx\/<br \/>vim sites-available\/airsonic<\/p>\n<p>Paste the following configuration there.<\/p>\n<pre>server {&#13; listen 80;&#13; listen [::]:80;&#13; server_name music.hakase-labs.io;&#13; # enforce https&#13; return 301 https:\/\/$server_name$request_uri;&#13;\n}&#13;\n&#13;\nserver {&#13; listen 443 ssl;&#13; server_name music.hakase-labs.io;&#13; ssl_certificate \/etc\/letsencrypt\/live\/music.hakase-labs.io\/fullchain.pem;&#13; ssl_certificate_key \/etc\/letsencrypt\/live\/music.hakase-labs.io\/privkey.pem;&#13;\n&#13; location \/airsonic {&#13; proxy_set_header X-Real-IP $remote_addr;&#13; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;&#13; proxy_set_header X-Forwarded-Proto https;&#13; proxy_set_header X-Forwarded-Host $http_host;&#13; proxy_set_header Host $http_host;&#13; proxy_max_temp_file_size 0;&#13; proxy_pass http:\/\/127.0.0.1:8080;&#13; proxy_redirect http:\/\/ https:\/\/;&#13; }&#13;\n}<\/pre>\n<p>Save and exit.<\/p>\n<p>Activate the &#8216;airsonic&#8217; virtual host file and test the configuration.<\/p>\n<p class=\"command\">ln -s \/etc\/nginx\/sites-available\/airsonic \/etc\/nginx\/sites-enabled\/<br \/>nginx -t<\/p>\n<p>Make sure there is no error, then restart the nginx service and enable it to launch everytime at system boot.<\/p>\n<p class=\"command\">systemctl restart nginx<br \/>systemctl enable nginx<\/p>\n<p><a class=\"fancybox\" id=\"img-7\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/7.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-6.png\" alt=\"Install Nginx and configure it as reverse proxy\" width=\"500\" height=\"191\" title=\"\"><\/a><\/p>\n<p>The Nginx web server is now running as a reverse proxy for the Airsonic on port 8080, and it&#8217;s running under the https secure connection.<\/p>\n<p>Check it using netstat command below.<\/p>\n<p class=\"command\">netstat -plntu<\/p>\n<p><a class=\"fancybox\" id=\"img-8\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/8.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-7.png\" alt=\"Check nginx port\" width=\"500\" height=\"168\" title=\"\"><\/a><\/p>\n<h2 id=\"step-configure-ufw-firewall\">Step 5 &#8211; Configure UFW Firewall<\/h2>\n<p>In this tutorial, we will turn on the firewall, and we will be using the UFW firewall for Ubuntu.<\/p>\n<p>Open the SSH, HTTP and HTTPS service on the UFW firewall list by running commands below.<\/p>\n<p class=\"command\">ufw allow ssh<br \/>ufw allow http<br \/>ufw allow https<\/p>\n<p>Now enable the ufw firewall.<\/p>\n<p class=\"command\">ufw enable<\/p>\n<p>Type &#8216;y&#8217; and press Enter to start and enable the UFW firewall.<\/p>\n<p>And the ufw firewall has been enabled.<\/p>\n<p><a class=\"fancybox\" id=\"img-9\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/9.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-8.png\" alt=\"Configure UFW Firewall\" width=\"500\" height=\"423\" title=\"\"><\/a><\/p>\n<h2 id=\"step-testing\">Step 6 &#8211; Testing<\/h2>\n<p>Open your web browser and type the Airsonic installation URL on the address bar. Mine is:<\/p>\n<p><em><strong>https:\/\/music.hakase-labs.io\/airsonic\/<\/strong><\/em><\/p>\n<p>Now you will be shown the Airsonic login page.<\/p>\n<p><a class=\"fancybox\" id=\"img-10\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/10.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-9.png\" alt=\"Airsonic login\" width=\"500\" height=\"217\" title=\"\"><\/a><\/p>\n<p>Log in as a default user &#8216;admin&#8217; with password &#8216;admin&#8217;, and press the &#8216;Log In&#8217; button.<\/p>\n<p>And when you logged in, you will see the Airsonic Dashboard.<\/p>\n<h3 id=\"-change-default-password\">&#8211; Change Default Password<\/h3>\n<p>Click on the &#8216;Change administrator password&#8217; button.<\/p>\n<p><a class=\"fancybox\" id=\"img-11\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/11.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-10.png\" alt=\"Change the password\" width=\"500\" height=\"286\" title=\"\"><\/a><\/p>\n<p>Now select the &#8216;admin&#8217; user and give a mark on the &#8216;Change password&#8217;, then type new admin password and click &#8216;Save&#8217;.<\/p>\n<p><a class=\"fancybox\" id=\"img-12\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/12.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-11.png\" alt=\"Admin settings\" width=\"500\" height=\"224\" title=\"\"><\/a><\/p>\n<p>The default admin password for Airsonic has been changed.<\/p>\n<h3 id=\"-set-up-media-folders\">&#8211; Set up Media Folders<\/h3>\n<p>Back to the terminal shell server, create new media folders manually and change the owner of media folder directory to &#8216;airsonic&#8217; user.<\/p>\n<p class=\"command\">mkdir -p \/var\/music<br \/>chown -R airsonic:airsonic \/var\/music<\/p>\n<p>Now on the Airsonic admin dashboard, click the &#8216;Settings&#8217; button and click the &#8216;Media folders&#8217; tab.<\/p>\n<p><a class=\"fancybox\" id=\"img-13\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/13.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-12.png\" alt=\"Configure Media folder\" width=\"500\" height=\"295\" title=\"\"><\/a><\/p>\n<p>Make sure the default &#8216;Music&#8217; media folders has been enabled, then click &#8216;Save&#8217; button.<\/p>\n<p>Now move to the &#8216;User&#8217; tab, select the &#8216;admin&#8217; user and make a check on the &#8216;Music&#8217; media folder as below.<\/p>\n<p><a class=\"fancybox\" id=\"img-14\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/14.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-13.png\" alt=\"User tab\" width=\"500\" height=\"291\" title=\"\"><\/a><\/p>\n<p>The default &#8216;Music&#8217; media folder has been enabled, and the &#8216;admin&#8217; user now has an access to the media folders.<\/p>\n<p>Below is my Airsonic dashboard after making some changes.<\/p>\n<p><a class=\"fancybox\" id=\"img-15\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_airsonic_on_ubuntu_1804\/big\/15.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-14.png\" alt=\"Airsonic dashboard\" width=\"500\" height=\"288\" title=\"\"><\/a><\/p>\n<p>The Airsonic media streamer installation with Nginx as a reverse proxy on Ubuntu 18.04 has been completed successfully.<\/p>\n<h2 id=\"reference\">Reference<\/h2>\n<div>\n<p><b>Share this page:<\/b><\/p>\n<p>\n<a href=\"https:\/\/www.facebook.com\/sharer.php?u=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fubuntu-airsonic-media-server%2F\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-15.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fubuntu-airsonic-media-server%2F&amp;text=How+to+Install+Airsonic+Media+Server+on+Ubuntu+18.04+LTS&amp;via=howtoforgecom&amp;related=howtoforgecom\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-16.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/twitter.com\/howtoforgecom\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-17.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/plus.google.com\/share?url=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fubuntu-airsonic-media-server%2F\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/07\/how-to-install-airsonic-media-server-on-ubuntu-18-04-lts-18.png\" height=\"20\" alt=\"\" title=\"\"><\/a>\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Airsonic is free and open source media server. It&#8217;s a self-hosted web-based media streamer that provides ubiquitous access to your music, makes it easy to share your music with friends or listen to your music while at work. Airsonic has been created with Java as a full fork of the Subsonic, and designed to handle &hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36],"tags":[],"class_list":["post-5238","post","type-post","status-publish","format-standard","hentry","category-36"],"_links":{"self":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts\/5238","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/comments?post=5238"}],"version-history":[{"count":0,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts\/5238\/revisions"}],"wp:attachment":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/media?parent=5238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/categories?post=5238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/tags?post=5238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}