<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Arial,Helvetica,sans-serif;" dir="ltr">
<p><font size="2"><span style="font-size:10pt;">Philipp,</span></font><br>
</p>
<p><br>
</p>
<p>I replaced:   ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r kill -9<br>
</p>
<div><br>
with:   pkill icecast<br>
This works.<br>
<br>
<br>
I did try "pkill -HUP icecast" but it didn't seem to have intended effect of refreshing certificate.<br>
<br>
</div>
<br>
<p></p>
<br>
<br>
<div style="color: rgb(0, 0, 0);">
<div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" color="#000000" face="Calibri, sans-serif"><b>From:</b> Icecast <icecast-bounces@xiph.org> on behalf of Philipp Schafft <lion@lion.leolix.org><br>
<b>Sent:</b> Monday, May 29, 2017 11:27 AM<br>
<b>To:</b> Icecast streaming server user discussions<br>
<b>Subject:</b> Re: [Icecast] Proper way to start multiple icecast services through bash script?</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">Good afternoon,<br>
<br>
<br>
On Mon, 2017-05-29 at 17:35 +0300, Yahav Shasha wrote:<br>
> try this:<br>
> /usr/bin/icecast -c /etc/icecast.xml -b > /dev/null 2>&1 &<br>
> as for killing them, don't overcomplicate things, killall icecast -KILL<br>
<br>
You should never kill process with SIGKILL if not really, really needed.<br>
Using SIGKILL will not give them a chance to clean up. E.g. no flushing<br>
of logs, no telling clients (just connection resets), no cleanup of open<br>
sockets (may result in stalled connections), no closing of databases<br>
(for applications that use databases) or other backend services and<br>
child processes.<br>
<br>
Icecast2 perfectly handles SIGTERM.<br>
<br>
<br>
> On Mon, May 29, 2017 at 5:27 PM, Walter York <walteryork@hotmail.com> wrote:<br>
> >>>  #Kill all processes with the name icecast<br>
> >>>  ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r<br>
> >>>  kill -9<br>
<br>
use pkill here. That is portable. It has a lot options to select the<br>
correct process.<br>
<br>
Also avoid using signal numbers. they're not portable and bad style.<br>
SIGTERM is the default for pkill.<br>
<br>
with best regards,<br>
<br>
-- <br>
Philipp.<br>
 (Rah of PH2)<br>
_______________________________________________<br>
Icecast mailing list<br>
Icecast@xiph.org<br>
<a href="http://lists.xiph.org/mailman/listinfo/icecast" id="LPlnk866092" previewremoved="true">http://lists.xiph.org/mailman/listinfo/icecast</a>
<div id="LPBorder_GT_14960738988070.21447263505021952" style="margin-bottom: 20px; overflow: auto; width: 100%; text-indent: 0px;">
<table id="LPContainer_14960738988030.07165235287051808" style="width: 90%; background-color: rgb(255, 255, 255); position: relative; overflow: auto; padding-top: 20px; padding-bottom: 20px; margin-top: 20px; border-top: 1px dotted rgb(200, 200, 200); border-bottom: 1px dotted rgb(200, 200, 200);" role="presentation" cellspacing="0">
<tbody>
<tr style="border-spacing: 0px;" valign="top">
<td id="TextCell_14960738988050.603427211135097" style="vertical-align: top; position: relative; padding: 0px; display: table-cell;" colspan="2">
<div id="LPRemovePreviewContainer_14960738988050.023664224295796177"></div>
<div id="LPTitle_14960738988050.03344195682521567" style="top: 0px; color: rgb(0, 120, 215); font-weight: 400; font-size: 21px; font-family: "wf_segoe-ui_light","Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif; line-height: 21px;">
<a id="LPUrlAnchor_14960738988050.15965951165919068" style="text-decoration: none;" href="http://lists.xiph.org/mailman/listinfo/icecast" target="_blank">Icecast Info Page - Xiph.Org Foundation</a></div>
<div id="LPMetadata_14960738988060.5924509838181214" style="margin: 10px 0px 16px; color: rgb(102, 102, 102); font-weight: 400; font-family: "wf_segoe-ui_normal","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif; font-size: 14px; line-height: 14px;">
lists.xiph.org</div>
<div id="LPDescription_14960738988060.6251838414464088" style="display: block; color: rgb(102, 102, 102); font-weight: 400; font-family: "wf_segoe-ui_normal","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif; font-size: 14px; line-height: 20px; max-height: 100px; overflow: hidden;">
While this list and IRC are preferred for user support. There is also a web forum for user support. See icecast.org for links. To see the collection of prior postings ...</div>
</td>
</tr>
</tbody>
</table>
</div>
<br>
</div>
</span></font></div>
</div>
</body>
</html>