Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Jul 2004
    Location
    Sunshine Coast, Queensland, AU
    Posts
    1,830
    Tokens
    467

    Latest Awards:

    Default shoutcast on a server

    how do you setup shoutcast on your own linux server

  2. #2
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    You need shell.

    Upload the zip into your home/root folder. Then press Extract File Contents, then rename the dir to "radio".

    Go into the radio dir and edit the config (sc_serv.conf)

    You only need to edit
    Code:
    MaxUser=32
    
    Password=changeme
    
    PortBase=8000
    Okay now open your shell program (download.com or use cpanels one called "SSH/Shell Access" on your main cpanel page)

    Log into it using your details and type

    Code:
    cd /home/username/radio/
    Once you have done that type in

    Code:
    ./sc_serv
    Now use your servers IP address and the details you entered in the config to login to winamp (Password and port)!

    Enjoy

    For updated version see

    http://habboxforum.com/showthread.ph...24#post1480224
    Last edited by Luckyrare; 10-03-2006 at 10:00 PM.

  3. #3
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    Better way:

    wget
    http://www.shoutcast.com/downloads/s...-glibc6.tar.gz

    tar -zxvf shoutcast-1-9-2-linux-glibc6.tar.gz

    rm -rf shoutcast-1-9-2-linux-glibc6.tar.gz

    mv shoutcast-1-9-2-linux-glibc6 shoutcast

    cd shoutcast

    Then open up sc_serv.conf and edit: MaxUser, Password, and BasePort. Also uncomment admin pass and put a diffrent password in there. Save and upload the file.

    To run shoutcast type:

    ./sc_serv sc_serv.conf

    Also to keep the shoutcast server up and running make a cron job for about evey 5 mins:

    #!/bin/bash

    if [ "`/sbin/pidof /pathtoscservdir/sc_serv`" == "" ]; then
    nohup /pathtoscservdir/sc_serv /pathtoscservdir/sc_serv.conf &
    fi

    Replace /pathtoscservdir with the path to your shoutcast folder.

  4. #4
    Join Date
    Feb 2006
    Location
    Coventry
    Posts
    2,096
    Tokens
    0

    Latest Awards:

    Default

    Perl 0.o

  5. #5
    Join Date
    Jul 2004
    Location
    Sunshine Coast, Queensland, AU
    Posts
    1,830
    Tokens
    467

    Latest Awards:

    Default

    i've done that but it won't accept my admin pass

  6. #6
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    Have you got shell/perl?

  7. #7
    Join Date
    Jul 2004
    Location
    Sunshine Coast, Queensland, AU
    Posts
    1,830
    Tokens
    467

    Latest Awards:

    Default

    yes i have

  8. #8
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    Sure you uncommented the admin pass part? And did you use the username admin?

  9. #9
    Join Date
    Jul 2004
    Location
    Sunshine Coast, Queensland, AU
    Posts
    1,830
    Tokens
    467

    Latest Awards:

    Default

    danny the shoutcast is on ur reseller maybe you could help

  10. #10
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    Lol I fixed the problem, he forgot to uncomment the admin pass. Still need to restart the shoutcast though..

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •