UbuntuでShoutcastサーバーを設定する方法

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インターフェイスを使用すると、ストリームをセットアップし、より多くのサーバー設定を構成できます。

Leave a Reply

コメントを残す

メールアドレスが公開されることはありません。