Linux serverNETWORK ADMINISTRATIONS

How To Install Streama Media Streaming Application on CentOS 7



Streama is a free and open source media streaming application. It’s a self-hosted alternative to Netflix. It has numerous features such as easy drag and drop media management, beautiful media player, live sync watching, multi-user, subtitles and resume capability etc.
Github:- https://github.com/dularion/streama/releases/
java -version
wget https://github.com/dularion/streama/releases/download/v1.1/streama-1.1.war
mkdir /opt/streama
mv streama-1.1.war /opt/streama/streama.war
java -jar /opt/streama/streama.war
[ Press ctrl + C ]
mkdir /opt/streama/media
chmod 777 /opt/streama/media

nano /etc/systemd/system/streama.service
[Unit]
Description=Streama Server
After=syslog.target
After=network.target

[Service]
User=root
Type=simple
ExecStart=/bin/java -jar /opt/streama/streama.war
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=Streama

[Install]
WantedBy=multi-user.target

systemctl start streama && systemctl enable streama && systemctl status streama
======================================================

source
centos 7

Leave a Reply

Your email address will not be published. Required fields are marked *