| View previous topic :: View next topic |
| Author |
Message |
Anonymous Guest
|
Posted: Sun Aug 07, 2005 10:49 am Post subject: seek configuration example for 2nd port |
|
|
Hello world!
(sorry for my English, I apply. but I am Belgian)
I seek an example of configuration to launch one 2nd demon on port 8001 for streamer an already existing stream (Relay)
input: http://dummy:8000/live
output (icecast2 linux): http://myserver:8001/relaylivedumy
thank you with you!
and good Sunday |
|
| Back to top |
|
 |
bbk

Joined: 15 Oct 2005 Posts: 79
|
Posted: Sun Feb 12, 2006 11:10 pm Post subject: |
|
|
hello
do you want to stream with 2 servers the same stream? here you go.
i did this only once a long time ago (with icecast1.3) so try it maybe i did something wrong.
this is the configuration for a "single-broadcast relay"
if your input is icecast:
| Code: |
<relay>
<server>dummy</server>
<port>8000</port>
<mount>/live</mount>
<local-mount>/relaylivedummy</local-mount>
<on-demand>0</on-demand>
<relay-shoutcast-metadata>0</relay-shoutcast-metadata>
</relay>
|
if your input is shoutcast:
| Code: |
<relay>
<server>dummy</server>
<port>8000</port>
<mount>/</mount>
<local-mount>/relaylivedummy</local-mount>
<on-demand>0</on-demand>
<relay-shoutcast-metadata>1</relay-shoutcast-metadata>
</relay>
|
you can set the icecast deamon to listen also on port 8001 with the following:
| Code: |
<listen-socket>
<port>8000</port>
<bind-address>myserver</bind-address>
</listen-socket>
<listen-socket>
<port>8001</port>
<bind-address>myserver</bind-address>
<shoutcast-compat>1</shoutcast-compat>
</listen-socket>
|
btw there is only one deamon that listen on port 8000 and 8001 on the second server. _________________ ::bbk::
http://audioasyl.net |
|
| Back to top |
|
 |
liteFun
Joined: 13 Jan 2006 Posts: 79
|
Posted: Thu Feb 16, 2006 9:26 am Post subject: |
|
|
| I'd just use different mountpoints on same server, not different port. |
|
| Back to top |
|
 |
|