Hey guys,<br><br>I&#39;m using kamailio-1.4.3-notls with ACC module on mysql.<br><br>I&#39;m trying to benchmark it installed on a virtual server (Xen on CentOS) and I have everything going OK for my basic configuration but when I turn on ACC (by flagging transactions) I get the following lines on the log:<br>
<br>Feb 19 08:48:57 ops3 /usr/local/sbin/kamailio[4895]: INFO:core:handle_sigs: child process 4899 exited by a signal 11<br>Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4895]: INFO:core:handle_sigs: core was generated<br>
Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4895]: INFO:core:handle_sigs: terminating due to SIGCHLD<br>Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4902]: INFO:core:sig_usr: signal 15 received<br>Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4903]: INFO:core:sig_usr: signal 15 received<br>
Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4901]: INFO:core:sig_usr: signal 15 received<br>Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4897]: INFO:core:sig_usr: signal 15 received<br>Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4904]: INFO:core:sig_usr: signal 15 received<br>
Feb 19 08:48:58 ops3 /usr/local/sbin/kamailio[4898]: INFO:core:sig_usr: signal 15 received<br><br>This issue only happens when i account messages using the following lines:<br>if (is_method(&quot;INVITE|BYE|CANCEL&quot;))<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setflag(1);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setflag(2);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>and the configuration for the modules are ass follows:<br># ----- acc params -----<br>&nbsp;/* what sepcial events should be accounted ? */<br>
modparam(&quot;acc&quot;, &quot;early_media&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;report_ack&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;report_cancels&quot;, 1)<br>&nbsp;/* by default ww do not adjust the direct of the sequential requests.<br>
&nbsp;&nbsp;&nbsp; if you enable this parameter, be sure the enable &quot;append_fromtag&quot;<br>&nbsp;&nbsp;&nbsp; in &quot;rr&quot; module */<br>modparam(&quot;acc&quot;, &quot;detect_direction&quot;, 0)<br>&nbsp;/* account triggers (flags) */<br>modparam(&quot;acc&quot;, &quot;failed_transaction_flag&quot;, 3)<br>
modparam(&quot;acc&quot;, &quot;log_flag&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;log_missed_flag&quot;, 2)<br>&nbsp;/* uncomment the following lines to enable DB accounting also */<br>modparam(&quot;acc&quot;, &quot;db_flag&quot;, 1)<br>
modparam(&quot;acc&quot;, &quot;db_missed_flag&quot;, 2)<br>&nbsp;# Descomentar para guardar parametros adicionales<br>&nbsp;# modparam(&quot;acc&quot;, &quot;log_extra&quot;, &quot;src_user=$fU;src_domain=$fd;dst_user=$rU;dst_domain=$rd&quot;)<br>
modparam(&quot;acc&quot;, &quot;db_table_acc&quot;, &quot;acc&quot;)<br>modparam(&quot;acc&quot;, &quot;db_table_missed_calls&quot;, &quot;missed_calls&quot;)<br>modparam(&quot;acc&quot;, &quot;db_url&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;mysql://kamailio:kamailiorw@localhost/kamailio&quot;)<br>
modparam(&quot;acc&quot;, &quot;acc_method_column&quot;, &quot;method&quot;)<br>modparam(&quot;acc&quot;, &quot;acc_from_tag_column&quot;, &quot;from_tag&quot;)<br>modparam(&quot;acc&quot;, &quot;acc_to_tag_column&quot;, &quot;to_tag&quot;)<br>
modparam(&quot;acc&quot;, &quot;acc_callid_column&quot;, &quot;callid&quot;)<br>modparam(&quot;acc&quot;, &quot;acc_sip_code_column&quot;, &quot;sip_code&quot;)<br>modparam(&quot;acc&quot;, &quot;acc_sip_reason_column&quot;, &quot;sip_reason&quot;)<br>
modparam(&quot;acc&quot;, &quot;acc_time_column&quot;, &quot;time&quot;)<br>modparam(&quot;acc&quot;, &quot;db_extra&quot;,<br>&quot;cseq=$cs;privacy=$dip;reason=$dir;from_uri=$fu;from_username=$fU;from_displayname=$fn;from_domain=$fd;req_username=$rU;req_domain=$rd;rpid=$re;source_ip_addr=$si;source_port=$sp;to_uri=$tu;to_username=$tU;to_displayname=$tn;to_domain=$td;original_uri=$ou;original_uri_username=$oU;original_uri_domain=$od;unix_timestamp=$Ts&quot;)<br>
<br>Do you think there is something I&#39;m missing on the configuration? I tried to modify parameters on mysql but get the same errors all the time?<br><br>Thanks in advance!<br>Uriel<br>