Shoutcastサーバーを使用すると、他の人が聞くために独自のオーディオストリームを設定することができます。 このガイドでは、UbuntuでShoutcastサーバーを設定する方法を説明します。 以下の手順に従ってください。
ステップ1:ユーザーの作成
セキュリティ上の理由から、ユーザーを作成します:
adduser shoutcast
必要な情報を入力し、新しいユーザーにsu
を入力します:
su shoutcast
ステップ2:Shoutcast
をダウンロードして、ユーザーのホームディレクトリに移動します:
cd ~
wget
:
wget https://download.nullsoft.com/shoutcast/tools/sc_serv2_linux_x64-latest.tar.gz
次に、ファイルを抽出します:
tar xfz sc*
次に、Shoutcastサーバー用のフォルダを作成します。 重要なファイルはすべてここに配置されます:
mkdir ../shoutcast
この新しいフォルダーにファイルをコピーします:
cp sc_serv ../shoutcast
次に、このディレクトリに移動します:
cd ../shoutcast
Shoutcastがインストールされている、今、我々はそれを設定する必要があります。
ステップ3:Shoutcastを構成する
Shoutcastが正しく機能するように、次のフォルダを作成します:
mkdir controlmkdir logs
設定ファイルを作成し、テキストエディタで開きます:
sc_serv.conf
ファイルに以下を追加します:
adminpassword=passwordpassword=password1requirestreamconfigs=1streamadminpassword_1=password2streamid_1=1streampassword_1=password3streampath_1=http://ServerIP:8000logfile=logs/sc_serv.logw3clog=logs/sc_w3c.logbanfile=control/sc_serv.banripfile=control/sc_serv.rip
を変更します。adminpassword
, password
, streamadminpassword_1
, そしてstreampassword_1
の値は安全なパスワードになります。 adminpassword
はwebインターフェイスにアクセスするために使用され、streampassword_1
はストリームにアクセスするためのパスワードです。 ServerIP
をサーバーのIPに置き換えます。
Shoutcastバイナリを実行可能にする:
chmod +x sc_serv
最後に、Shoutcastサーバーを起動します:
./sc_serv &
これで、http://ServerIP:8000
からShoutcast webインターフェイスにアクセスできます。 Webインターフェイスを使用すると、ストリームをセットアップし、より多くのサーバー設定を構成できます。