Centova Technologies Forum

Centova Cast v3 => Bugs and issues => Topic started by: steff2012 on May 11, 2012, 06:36:38 am

Title: Server start: Application binary has not been configured for ShoutCast on...
Post by: steff2012 on May 11, 2012, 06:36:38 am
...
Stream could not be started: Could not start server:
Application binary has not been configured for ShoutCast on Local server. "

Pls help
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: KL Web Consultants on May 11, 2012, 07:41:20 am
sounds like the config did not get setup.... does this folder exist?

/usr/local/centovacast/sc_trans2

if it does then run the commands pointed out here: http://www.centova.com/doc/manuals/centovacast/quickref/addsoftware.html#manually_installed
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: steff2012 on May 11, 2012, 08:24:35 am
/usr/local/centovacast/sc_trans2
... does exist

but i write in the console:
/usr/local/centovacast/sbin/enable_package SCTRANS2 /usr/bin/sctrans

I get the following message:
/usr/bin/sctrans does not exist
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: KL Web Consultants on May 11, 2012, 08:27:10 am
run the below command, twill fix that.

/usr/local/centovacast/sbin/enable_package SCTRANS2 /usr/local/centovacast/sctrans2/sc_trans
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: steff2012 on May 11, 2012, 08:33:33 am
 :-\

ok ...

Processing account sc2 ...
Could not start server: Application binary has not been configured for ShoutCast2 on Local server
Processed 1 accounts, 0 successful, 1 errors
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: steff2012 on May 11, 2012, 11:38:00 am
ok SC2 sc_serv & sc_trans is running....

Now how do I get to run SC1 sc_serv & sc_trans?

/usr/local/centovacast/sbin/enable_package shoutcast1 /usr/local/centovacast/shoutcast1/sc_serv

^^ doesn't work

sorry for my bad english *g*
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: hellboundRKG on January 25, 2017, 05:00:06 pm
...
Stream could not be started: Could not start server:
Application binary has not been configured for ShoutCast on Local server. "

Pls help
Title: Re: Server start: Application binary has not been configured for ShoutCast on...
Post by: Alexiu on January 27, 2017, 08:46:26 am
You can see exactly what's happening simply by running Shoutcast directly from the command line, like so:

/usr/local/centovacast/shoutcast1/sc_serv

Most commonly, you'll see an error message such as "Bad ELF interpreter","No such file or directory" or something of the sort, which simply means that you'll need to install a Glibc that is compatible with 32 bit binaries (as the Shoutcast v1 binary is only available for 32 bit).

The way of installing Glibc for 32 bit varies depending on your Linux distribution.

For CentOS 5.8+ and later run this:
yum install glibc.i686 (or if it doesn't work try "yum install ld-linux.so.2")

For older CentOS, RedHat:
yum install lib32-glib

For Debian 6.x and older:
apt-get install ia32-libs

For Debian 7 and later:
apt-get install libc6-i386