Created
June 6, 2019 17:50
-
-
Save colehocking/9695faa5112274c9864e8b239b2db86a to your computer and use it in GitHub Desktop.
Icecast Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install | |
sudo apt install icecast2 | |
# find lost configs | |
dpkg -L icecast2 | grep etc | |
# default config path | |
/etc/icecast2/icecast.xml | |
# Start | |
/etc/init.d/icecast2 start | |
# Stop | |
/etc/init.d/icecast2 stop | |
# Restart | |
/etc/init.d/icecast2 restart | |
# Status | |
/etc/init.d/icecast2 status | |
# [or] | |
pgrep -fl icecast | |
# Admin console location | |
http://xxx.xxx.xxx.xxx:8000/admin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment