| View previous topic :: View next topic |
| Author |
Message |
Loran_gva
Joined: 18 Feb 2009 Posts: 1
|
Posted: Wed Feb 18, 2009 1:13 pm Post subject: Best way to start multiple ices0.4 at startup on Debian |
|
|
Hello,
We are running an Icecast2 server on Debian and we would like to have multiple stream, each one streaming a different playlist. We think that we have to use one ices per stream but we don't know what is the best way (startup script) to start the different ices when the server start ? Any idees or recommandations ?
Thx a lot in advance !!!
Laurent |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Wed Feb 18, 2009 1:41 pm Post subject: |
|
|
When ever I've seen a startup script for ices, it has always assumed one configuration file. All you need to do is start ices with the configuration file as an argument eg
#!/bin/sh
# startup the various ices streams
ices -c ices-stream1.conf &
ices -c ices-stream2.conf &
...
not really a difficult thing
karl. |
|
| Back to top |
|
 |
|