12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Installing Airsonic on Windows, Free Self-Hosted Music Streamer</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Airsonic,Subsonic,Music,Streaming,Self-Hosted,Apache Tomcat,Microsoft,Windows,Web Based,Browser Based,Home Lab,Home Lab Ideas,Install Guide,Web Based Tools,Apache,Tomcat,Airsonic Music Streaming Server,Open Source Software,Free Software,Freeware,Media Server,Media Streamer,Music Streamer,Music Streaming,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Installing Airsonic on Windows, Free Self-Hosted Music Streamer">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="04/09/2022 10:02:42 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Installing Airsonic on Windows, Free Self-Hosted Music Streamer</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Downloads and Pre-requisites</h2>
- <ol>
- <li>Download OpenJDK <a href="https://jdk.java.net/" target="_blank">Download</a></li>
- <li>Download Apache Tomcat <a href="https://tomcat.apache.org/download-90.cgi" target="_blank">Download</a></li>
- <li>Download Airsonic.war <a href="https://github.com/airsonic/airsonic/releases" target="_blank">Download</a></li>
- <li>Extract the OpenJDK archive to C:\program files\OpenJDK</li>
- <li>Click the Start button and search Control Panel</li>
- <li>Navigate to System > Advanced System Settings</li>
- <li>Click the Environment Variables button</li>
- <li>Under System Variables, click New</li>
- <li>In the Variable Name field enter JAVA_HOME</li>
- <li>In the Variable Value field enter the full path to C:\program files\OpenJDK</li>
- <li>Click OK to close all the open dialog windows</li>
- </ol>
- <h2>Installing Tomcat</h2>
- <ol>
- <li>Double click the Apache Tomcat installer executable</li>
- <li>Click Next and then I Agree</li>
- <li>On the Choose Components screen, uncheck everything except Core, Service Startup and Native > Click Next</li>
- <li>Set the port to 8000 and Service Name > Click Next</li>
- <li>At the Java Virtual Machine screen, input C:\program files\OpenJDK > Click Next</li>
- <li>Verify the install location > Click Install</li>
- <li>After the installation completes, open a web browser and navigate to http://DNSorIP:8000</li>
- <li>An Apache Tomcat splash screen should display with the version of Tomcat that is currently running</li>
- </ol>
- <h2>Installing Airsonic</h2>
- <ol>
- <li>Copy the airsonic.war file downloaded earlier to the Apache Tomcat/webapps directory</li>
- <li>Within a few moments Apache Tomcat should see the .war file and extract it to a /airsonic sub-directory
- <ol start="1" style="list-style-type: lower-alpha;">
- <li>If this doesn't occur automatically, try right clicking the Start button > Run > services.msc and restarting the Apache Tomcat service</li>
- </ol>
- </li>
- <li>Once the .war file has extracted itself to a directory, open a web browser and navigate to http://DNSorIP:8000/airsonic</li>
- <li>Login with username: admin, password: admin</li>
- <li>Click the Change administrator password link</li>
- <li>Check the Change password box</li>
- <li>Input the new password twice and click the Save button</li>
- <li>Select Media folders from the top navigation</li>
- <li>Add one or more media folders and click the Save button</li>
- <li>Click the Scan media folders now link for Airsonic to begin importing your music library</li>
- <li>Click the Home button in the top navigation</li>
- <li>Scanning files should show in the top right of the screen to indicate the import progress</li>
- <li>Click the Refresh link on the left navigation to watch as artists are scanned and added</li>
- </ol>
- <h2>Optional Steps</h2>
- <ol>
- <li>To remove the need to navigate to /airsonic, navigate to the Apache Tomcat/webapps directory in Explorer</li>
- <li>Delete the ROOT directory if it exists</li>
- <li>Rename the airsonic directory ROOT</li>
- <li>Open a web browser and navigate to http://DNS-or-IP:8000/ to reach the Airsonic</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|