Thursday, January 27, 2022

How To Install Emby Media Server On Rocky Linux 8.5

 Emby is a free media server that allows your to organize and stream your movies, shows, music, and photos.
Hoempage - https://emby.media/
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; hostname ; hostname -I ; dnf groupinstall "Development Tools" -y

yum install https://github.com/MediaBrowser/Emby.Releases/releases/download/4.6.7.0/emby-server-rpm_4.6.7.0_x86_64.rpm
systemctl restart emby-server ; systemctl status emby-server
dnf update ; dnf install httpd -y
nano /etc/httpd/conf.d/example.conf
<VirtualHost *:80>
        ServerAdmin admin@example.com
        ServerName www.example.com    
        ErrorLog /var/log/httpd/error.log
        CustomLog /var/log/httpd/access.log combined
        ProxyRequests On
        ProxyPass / http://localhost:8096/
        ProxyPassReverse / http://localhost:8096/
</VirtualHost>
systemctl start httpd ; systemctl enable httpd ; systemctl status httpd
apachectl configtest
nano /etc/hosts
192.168.1.60    www.example.com    
systemctl restart httpd ; systemctl status httpd
www.example.com    

mkdir -p /opt/movies ; chmod -R 777 /opt/movies
_________________________________________________________________________________________


No comments:

Post a Comment