How to upgrade subsonic on Fedora

Tutorials, tips and tricks.

Moderator: moderators

How to upgrade subsonic on Fedora

Postby jigsaw » Sun Oct 04, 2009 2:23 pm

This is a short and simple tutorial which explains how you may upgrade your subsonic installation without loosing any settings or configurations. It's not complicated but there's been some posts with questions regarding this in the past so here goes:

In this case I'm presenting upgrade of Subsonic 3.7 to 3.8.beta1 on Fedora 11 using the standalone version. However the procedure is identical on any minor or major version upgrades of the standalone version. Upgrades of the windows installer or the WAR-installation is not covered by this tutorial.

The steps include:
1. Download new version
2. Backup files from previous version
3. Stop Subsonic
4. Upgrade
5. Check differences to preserve local modifications
6. Start Subsonic


1. Download new version
Find the latest version from the Official Subsonic Site and download to a local folder.
Code: Select all
$ wget http://prdownloads.sourceforge.net/subsonic/subsonic-3.8.beta1-standalone.tar.gz

Copy the tar.gz to your SUBSONIC_HOME ( assuming /var/subsonic here ) and chown to subsonic user ( assuming subsonic here ).

Code: Select all
$ sudo cp subsonic-3.8.beta1-standalone.tar.gz /var/subsonic/
$ cd /var/subsonic
$ sudo chown subsonic.subsonic subsonic-3.8.beta1-standalone.tar.gz


2. Backup files from previous version
Code: Select all
$ sudo -u subsonic mkdir backup-3.7
$ sudo -u subsonic cp subsonic.* backup-3.7/


3. Stop Subsonic
Code: Select all
$ sudo service subsonic stop


4. Upgrade
Unpack the tar.gz
Code: Select all
$ sudo -u subsonic tar -xvf subsonic-3.8.beta1-standalone.tar.gz
Getting Started.html
LICENSE.TXT
README.TXT
subsonic.war
subsonic-booter-jar-with-dependencies.jar
subsonic.bat
subsonic.sh


5. Check differences to preserve local modifications

Code: Select all
$ sudo diff -uw backup-3.7/subsonic.sh subsonic.sh
+++ subsonic.sh   2009-07-01 20:23:10.000000000 +0200
--- backup-3.7/subsonic.sh   2009-10-04 15:52:09.636181221 +0200
@@ -9,12 +9,12 @@
SUBSONIC_HOME=/var/subsonic
SUBSONIC_HOST=0.0.0.0
SUBSONIC_PORT=8080
+SUBSONIC_CONTEXT_PATH=/
+SUBSONIC_MAX_MEMORY=64
-SUBSONIC_CONTEXT_PATH=/subsonic
-SUBSONIC_MAX_MEMORY=128
SUBSONIC_PIDFILE=
+SUBSONIC_DEFAULT_MUSIC_FOLDER=/var/music
+SUBSONIC_DEFAULT_PODCAST_FOLDER=/var/music/Podcast
+SUBSONIC_DEFAULT_PLAYLIST_FOLDER=/var/playlists
-SUBSONIC_DEFAULT_MUSIC_FOLDER=$SUBSONIC_HOME/music
-SUBSONIC_DEFAULT_PODCAST_FOLDER=$SUBSONIC_HOME/Podcast
-SUBSONIC_DEFAULT_PLAYLIST_FOLDER=$SUBSONIC_HOME/playlists

usage() {
     echo "Usage: subsonic.sh [options]"
@@ -103,11 +103,11 @@
   +Dsubsonic.defaultMusicFolder=${SUBSONIC_DEFAULT_MUSIC_FOLDER} \
   +Dsubsonic.defaultPodcastFolder=${SUBSONIC_DEFAULT_PODCAST_FOLDER} \
   +Dsubsonic.defaultPlaylistFolder=${SUBSONIC_DEFAULT_PLAYLIST_FOLDER} \
+  -jar subsonic-booter-jar-with-dependencies.jar > ${LOG} 2>&1 &
-  -jar subsonic-booter-jar-with-dependencies.jar >> ${LOG} 2>&1 &

# Write pid to pidfile if it is defined.
if [ $SUBSONIC_PIDFILE ]; then
     echo $! > ${SUBSONIC_PIDFILE}
fi

+echo Started Subsonic [PID $!, ${LOG}]
-echo Started Subsonic [PID $!]

Here you can see what has changed after the upgrade. A couple of things always important make sure is correct is the environment variables SUBSONIC_CONTEXT_PATH and SUBSONIC_MAX_MEMORY. I access subsonic through Apache and under the context path "/subsonic" so I need to fix that one. By default Subsonic only uses 64MB, but my installation uses 128MB for better performance. In addition I have changed the folder-variables to use the SUBSONIC_HOME-variable instead of being hard-coded ( cause it's not located right under /var on my installation ). Next is the consistent "bug" IMHO where subsonic overwrites the log-file at startup. I always change this to append by switching the ">" with ">>".
Any other alterations which does not affect anything you might have altered yourself should be kept in the new subsonic.sh - this is changes made by the developer.

After you've fixed the modifications you do a last check

Code: Select all
$ sudo diff -uw backup-3.7/subsonic.sh subsonic.sh
--- backup-3.7/subsonic.sh   2009-10-04 15:52:09.636181221 +0200
+++ subsonic.sh   2009-10-04 15:54:17.348520998 +0200
@@ -110,4 +110,4 @@
     echo $! > ${SUBSONIC_PIDFILE}
fi

-echo Started Subsonic [PID $!]
+echo Started Subsonic [PID $!, ${LOG}]

Looks ok.

6. Start Subsonic

Code: Select all
$ sudo service subsonic start
Starting Subsonic Media Streamer Started Subsonic [PID 7840, /var/subsonic//subsonic_sh.log]
                                                           [  OK  ]


Optional: If you have Subsonic running behind Apache with mod_proxy you may need to reload Apache after upgrading.
Code: Select all
$ sudo service httpd reload
Reloading httpd:                                           [  OK  ]


And that should be it :)
If you experience any problems be sure to check your logs and file-permissions.
Currently without Subsonic due to hardware failure :(
User avatar
jigsaw
 
Posts: 242
Joined: Sat Oct 13, 2007 12:01 pm
Location: Stavanger, Norway

Postby Poffa » Tue Feb 09, 2010 8:55 pm

Old thread, but thank you anyway. I always use this tutorial for my Ubuntu server and it works perfect.
Poffa
 
Posts: 62
Joined: Sun Jun 28, 2009 4:21 pm
Location: Bergen, Bergen

Postby salmagory » Wed Feb 24, 2010 5:50 am

How do i install Fedora/ubuntu on a g3 imac? I've just come under ownership of a g3 imac. In it's current state all it will do is boot to a screen with a icon of a folder that's alternating between a picture of face and a question mark. I've decided that i want to install fedora or ubuntu on the computer but it won't boot from the CD. What do i do?
Last edited by salmagory on Mon Jun 14, 2010 6:26 am, edited 1 time in total.
salmagory
 
Posts: 1
Joined: Mon Feb 22, 2010 10:23 am

Postby jigsaw » Sun Mar 07, 2010 11:04 am

salmagory wrote:How do i install Fedora/ubuntu on a g3 imac? I've just come under ownership of a g3 imac. In it's current state all it will do is boot to a screen with a icon of a folder that's alternating between a picture of face and a question mark. I've decided that i want to install fedora or ubuntu on the computer but it won't boot from the CD. What do i do?
____________
matrimonial


hi salmagory,

It seems to me that you should be asking this question in the fedora-, ubuntu- and/or mac-forums. This is the subsonic forum which focuses on the application subsonic, not on the operating system which it might run on.

-jigsaw
Currently without Subsonic due to hardware failure :(
User avatar
jigsaw
 
Posts: 242
Joined: Sat Oct 13, 2007 12:01 pm
Location: Stavanger, Norway

Re: How to upgrade subsonic on Fedora

Postby nonchiedercilaparola » Tue Jun 24, 2014 8:52 am

Is there information about mac os x subsonic update?
nonchiedercilaparola
 
Posts: 5
Joined: Tue Jun 24, 2014 8:44 am

Re: How to upgrade subsonic on Fedora

Postby GJ51 » Sun Jun 29, 2014 10:15 pm

In a thread labeled "How to Install on Fedora" ?

Common' - really? :roll:

http://www.subsonic.org/pages/installation.jsp#mac
Gary J

http://bios-mods.com
http://www.maplegrovepartners.com
http://theaverageguy.tv/category/tagpodcasts/cyberfrontiers/
User avatar
GJ51
 
Posts: 3492
Joined: Wed Oct 20, 2010 11:58 pm
Location: Western New York

Re: How to upgrade subsonic on Fedora

Postby nonchiedercilaparola » Sun Aug 03, 2014 10:41 pm

i wrote here because is the only ufficial post regarding subsonic update!!!!

your link and the content of it is inadequate. Please integrated it with this Simple information:

"to upgrade simply launch the application and it override the old installation".
nonchiedercilaparola
 
Posts: 5
Joined: Tue Jun 24, 2014 8:44 am

Re: How to upgrade subsonic on Fedora

Postby GJ51 » Sun Aug 03, 2014 11:54 pm

Sure thing! I'll get right on that ...
Gary J

http://bios-mods.com
http://www.maplegrovepartners.com
http://theaverageguy.tv/category/tagpodcasts/cyberfrontiers/
User avatar
GJ51
 
Posts: 3492
Joined: Wed Oct 20, 2010 11:58 pm
Location: Western New York


Return to Tutorials

Who is online

Users browsing this forum: No registered users and 3 guests