Thursday, January 27, 2022

How To Install Subsonic Media Server with Apache On Rocky Linux 8.5

 in This Tutorial you will learn" How to Install Subsonic Media Server With Apache On Rocky Linux 8.5 "                      
Subsonic is a web-based media server written in Java language, so it can run on any operating system with Java support. It comes with a user-friendly web interface and allows us to share music and video with multiple users. You can stream your music from home and listen to your music from anywhere.
Homepage - http://www.subsonic.org/pages/index.jsp
________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; hostname ; hostname -I ; java -version
dnf groupinstall "Development Tools" -y

Subsonic Download page - http://www.subsonic.org/pages/download.jsp
wget https://s3-eu-west-1.amazonaws.com/subsonic-public/download/subsonic-6.1.6.rpm
dnf install subsonic-6.1.6.rpm
systemctl restart subsonic ; systemctl enable subsonic ; systemctl status subsonic
http://localhost:4040/

dnf update ; dnf install httpd -y
nano /etc/httpd/conf.d/subsonic.conf
<VirtualHost *:80>
        ServerAdmin admin@subsonic.com
        ServerName www.subsonic.com    
        ErrorLog /var/log/httpd/error.log
        CustomLog /var/log/httpd/access.log combined
        ProxyRequests On
        ProxyPass / http://localhost:4040/
        ProxyPassReverse / http://localhost:4040/
</VirtualHost>
systemctl start httpd ; systemctl enable httpd ; systemctl status httpd
apachectl configtest
nano /etc/hosts
192.168.1.60    www.subsonic.com    
systemctl restart httpd ; systemctl status httpd
www.subsonic.com    
admin/admin
__________________________________________________________________________________________

No comments:

Post a Comment