Friday, September 27, 2013

How to upgrade subsonic to its latest version

Steps to upgrade subsonic to version subsonic 4.9

SSH server

check current version from the command 

rpm -qa | grep subsonic

download the package below
  • wget http://jaist.dl.sourceforge.net/project/subsonic/subsonic/4.9/subsonic-4.9.rpm
then use command

ll

output will be like

-rw-r--r-- 1 root root 35061093 Apr 18 00:40 subsonic-4.9.rpm

yum update --nogpgcheck subsonic-4.9.rpm

after installation check the version by command below 

rpm -qa | grep subsonic

result will be like

subsonic-4.9-3434


*Note To access subsonic IP:4040

6 comments:

Rohan said...

Very helpful post.

I have another small query i have pointed a domain to my server IP that has subsonic installed but i dont want to use domain.com:4040 i want to access subsonic directly by my domain.com only, how can i do this ????

Basically i want subsonic to listen on port 80 rather than 4040

Your help would be highly appreciated.

Unknown said...

Hii Rohan,

You can redirect all the request coming to port 4040 to port 80 using IP tables by running command below.

========
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 4040
========

For detailed information refer link below.

============
http://www.dexterserver.com/2013/12/apache-tomcat-redirecting-traffic-from.html
============

Rohan said...

Thanx Ronak it worked

iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 4040

Unknown said...

Hi rohan Good to know your issue is resolved :)

Rohan said...

Redirection doesent work any more??????

Unknown said...

Rohan Check your IPTABLES it must me stopped or not working.

Post a Comment

Do Write about the Blog and Welcome to the world where open source is every thing :-)