Hi Dave, <div>My default config in was :</div><div><div>// default: $boxes[$box_id][&#39;mi&#39;][&#39;conn&#39;]=&quot;<a href="http://127.0.0.1:8000">127.0.0.1:8000</a>&quot;;</div><div>// default: $boxes[$box_id][&#39;mi&#39;][&#39;conn&#39;]=&quot;/tmp/opensips_fifo&quot;;</div>
</div><div><br></div><div>then i changed it to</div><div><div>$boxes[$box_id][&#39;mi&#39;][&#39;type&#39;]=&quot;fifo&quot;;</div><div>$boxes[$box_id][&#39;mi&#39;][&#39;fifo&#39;]=&quot;/tmp/opensips_fifo&quot;;</div><div>
<br></div></div><div>And i found some functions of CP works such as: Add/edit users; Add/edit domain.</div><div>But a lot of others still dont work such as: cdrs, show online users, ........</div><div><br></div><div>I see the &quot;apply changes to server&quot; button, i hit it and get this message for a new web browser tab:</div>
<div>&quot;<a href="http://10.2.14.122/cp/tools/system/domains/apply_changes.php">http://10.2.14.122/cp/tools/system/domains/apply_changes.php</a></div><div><span class="Apple-style-span" style="font-family: &#39;Times New Roman&#39;; font-size: medium; ">Cannot connect to OpenSIPS Server via Management Interface ()&quot;</span></div>
<div><span class="Apple-style-span" style="font-family: &#39;Times New Roman&#39;; font-size: medium; "><br></span></div><div><span class="Apple-style-span" style="font-family: &#39;Times New Roman&#39;; font-size: medium; ">I come to /cp/tools/system/domains but find no &quot;apply_changes.php&quot; file :-(</span></div>
<div><span class="Apple-style-span" style="font-family: &#39;Times New Roman&#39;; font-size: medium; "><br></span></div><div><font class="Apple-style-span" face="&#39;Times New Roman&#39;" size="3">Please help me to find out how i can connect to Opensips Server and making changes</font></div>
<div><font class="Apple-style-span" face="&#39;Times New Roman&#39;" size="3"><br></font></div><div><font class="Apple-style-span" face="&#39;Times New Roman&#39;" size="3">Thanks! </font></div><div><br><div class="gmail_quote">
2011/3/24 Dave Singer <span dir="ltr">&lt;<a href="mailto:dave.singer@wideideas.com">dave.singer@wideideas.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Duong,<br>
<br>
The MI commands are for opensips and ps does NOT take any arguments.<br>
The easiest way for it to connect when on the same box is with fifo.<br>
Here is a snippet from the boxes.global.inc.php:<br>
/*==================== DEFINITION OF BOXES (servers) ========================*/<br>
// each server is a box<br>
$box_id=0;<br>
$boxes[$box_id][&#39;mi&#39;][&#39;type&#39;]=&quot;fifo&quot;;<br>
$boxes[$box_id][&#39;mi&#39;][&#39;fifo&#39;]=&quot;/tmp/opensips_fifo&quot;;<br>
<br>
This does require that opensips module mi_fifo is loaded and<br>
configured with the same path/file as you set in the config above<br>
(above path is the default path).<br>
opensipsctl uses it also (unless it was configured to use xmlrpc (not<br>
sure it can)).<br>
Opensips xmlrpc module by default lisetns on port 8000, not the sip<br>
port 5060. That is why you got that message.<br>
I&#39;ve not been able to get xmlrpc to compile and work on Centos 5 servers.<br>
<br>
Dave<br>
<br>
On Thu, Mar 24, 2011 at 12:17 AM, Duong Manh Truong<br>
<div><div></div><div class="h5">&lt;<a href="mailto:ngoahotanglongbk@gmail.com">ngoahotanglongbk@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Thank Dave!<br>
&gt; When going to the &quot;MI commands&quot; tab, surprisingly i found that<br>
&gt; &quot;Cannot connect to OpenSIPS Server via Management Interface (<a href="http://127.0.0.1/8000" target="_blank">127.0.0.1/8000</a>)<br>
&gt; Execute MI Command&quot;<br>
&gt;<br>
&gt; After i executed the &quot;ps -A&quot; command, i only got this<br>
&gt; &quot;14:02:20  |  ps -A   |  <a href="http://127.0.0.1:8000" target="_blank">127.0.0.1:8000</a>&quot;<br>
&gt; The same result for &quot;opensipsctl online&quot; command<br>
&gt;  &quot;14:04:37  |   opensipsctl online   |  <a href="http://127.0.0.1:8000" target="_blank">127.0.0.1:8000</a>&quot;<br>
&gt; And i think the problem is my CP does not connect to my Opensips server on 5060 port. I remember that i have not configured CP listening port before, it is default :-(<br>
&gt; (CP &amp; Opensips server were installed in the same machine)<br>
&gt; Checking these files &quot;db.inc.php&quot; ; local.inc.php; globals.php  in the CP config directory &quot;/var/www/opensips-cp/config&quot;<br>
&gt; I don&#39;t see anywhere to config CP listening port !<br>
&gt; Please help me to figure out, thanks!<br>
&gt; 2011/3/24 Dave Singer &lt;<a href="mailto:dave.singer@wideideas.com">dave.singer@wideideas.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; Duong,<br>
&gt;&gt;<br>
&gt;&gt; Yea missed that. :-)<br>
&gt;&gt; To check basic CP connection to opensips, go to System, MI Commands.<br>
&gt;&gt; In box under Execute MI Command, put &quot;ps&quot; and click &quot;execute&quot;. It<br>
&gt;&gt; should show a bunch of lines about the opensips processes that are<br>
&gt;&gt; running.<br>
&gt;&gt;<br>
&gt;&gt; As far as showing Online Users, it may be using presence module/table<br>
&gt;&gt; rather than active registrations to qualify a user as &quot;online&quot;.<br>
&gt;&gt; Someone else will have to answer that or you can look at the CP source<br>
&gt;&gt; code for that answer.<br>
&gt;&gt;<br>
&gt;&gt; Dave<br>
&gt;&gt;<br>
&gt;&gt; On Wed, Mar 23, 2011 at 12:35 PM, Duong Manh Truong<br>
&gt;&gt; &lt;<a href="mailto:ngoahotanglongbk@gmail.com">ngoahotanglongbk@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; Thank David,<br>
&gt;&gt; &gt; But i found that in my opensips.cfg file:<br>
&gt;&gt; &gt; &quot;<br>
&gt;&gt; &gt; # ----- usrloc params -----<br>
&gt;&gt; &gt; # modparam(&quot;usrloc&quot;, &quot;db_mode&quot;,   0)<br>
&gt;&gt; &gt; /* uncomment the following lines if you want to enable DB persistency<br>
&gt;&gt; &gt;    for location entries */<br>
&gt;&gt; &gt; modparam(&quot;usrloc&quot;, &quot;db_mode&quot;,   2)<br>
&gt;&gt; &gt; modparam(&quot;usrloc&quot;, &quot;db_url&quot;,<br>
&gt;&gt; &gt; &quot;mysql://opensips:opensipsrw@localhost/opensips&quot;)<br>
&gt;&gt; &gt; &quot;<br>
&gt;&gt; &gt; So i think that my &quot;db_mode&quot; is not the cause of my failed CP<br>
&gt;&gt; &gt; &quot; 2 - Write-Back scheme. This is a combination of previous two schemes. All<br>
&gt;&gt; &gt; changes are made to memory and database synchronization is done in the<br>
&gt;&gt; &gt; timer. The timer deletes all expired contacts and flushes all modified or<br>
&gt;&gt; &gt; new contacts to database. Use this scheme if you encounter high-load peaks<br>
&gt;&gt; &gt; and want them to process as fast as possible. The mode will not help at all<br>
&gt;&gt; &gt; if the load is high all the time. Also, latency of this mode is much lower<br>
&gt;&gt; &gt; than latency of mode 1, but slightly higher than latency of mode 0.&quot;<br>
&gt;&gt; &gt; My CP still does  not work :-( , even the simple function like &quot;show online<br>
&gt;&gt; &gt; user&quot;  --- &quot;no data found&quot;<br>
&gt;&gt; &gt; (While checking by using opensipsctl is ok)<br>
&gt;&gt; &gt;  opensipsctl online<br>
&gt;&gt; &gt; database engine &#39;MYSQL&#39; loaded<br>
&gt;&gt; &gt; Control engine &#39;FIFO&#39; loaded<br>
&gt;&gt; &gt; 1001<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please tell me how to check my CP and its connection to Opensips server?<br>
&gt;&gt; &gt; Thanks !<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; ----------------------------------------------------------------------<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Message: 1<br>
&gt;&gt; &gt; Date: Tue, 22 Mar 2011 21:06:21 -0700<br>
&gt;&gt; &gt; From: Dave Singer &lt;<a href="mailto:dave.singer@wideideas.com">dave.singer@wideideas.com</a>&gt;<br>
&gt;&gt; &gt; Subject: Re: [OpenSIPS-Users] Opensips Control Pannel does not take<br>
&gt;&gt; &gt;        effect into Opensips Server<br>
&gt;&gt; &gt; To: OpenSIPS users mailling list &lt;<a href="mailto:users@lists.opensips.org">users@lists.opensips.org</a>&gt;<br>
&gt;&gt; &gt; Message-ID:<br>
&gt;&gt; &gt;        &lt;AANLkTimB=bQZ1buVKaWzMKq2LM=<a href="mailto:UsLhEsAQWW%2BuFrrw7@mail.gmail.com">UsLhEsAQWW+uFrrw7@mail.gmail.com</a>&gt;<br>
&gt;&gt; &gt; Content-Type: text/plain; charset=ISO-8859-1<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; The key I think is usrloc db mode is 0, which means db is not used.<br>
&gt;&gt; &gt; <a href="http://www.opensips.org/html/docs/modules/1.6.x/usrloc.html#id292029" target="_blank">http://www.opensips.org/html/docs/modules/1.6.x/usrloc.html#id292029</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Tue, Mar 22, 2011 at 6:47 PM, Duong Manh Truong<br>
&gt;&gt; &gt; &lt;<a href="mailto:ngoahotanglongbk@gmail.com">ngoahotanglongbk@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; Dear Dave!<br>
&gt;&gt; &gt;&gt; Thanks for your help.<br>
&gt;&gt; &gt;&gt; I&#39;ve checked the opensips.cfg again but i still can not find out what<br>
&gt;&gt; &gt;&gt; stuff<br>
&gt;&gt; &gt;&gt; is incorrect ! :-(<br>
&gt;&gt; &gt;&gt; I attached my config file in this email, hope that will help my problem to<br>
&gt;&gt; &gt;&gt; be?clearer!<br>
&gt;&gt; &gt;&gt; If anyone has had the same issue, please tell me how can i check or fix<br>
&gt;&gt; &gt;&gt; it.<br>
&gt;&gt; &gt;&gt; (Hope to receive relatively specific informations)<br>
&gt;&gt; &gt;&gt; Thanks and Best Regards.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Date: Mon, 21 Mar 2011 08:45:03 -0700<br>
&gt;&gt; &gt;&gt; From: Dave Singer &lt;<a href="mailto:dave.singer@wideideas.com">dave.singer@wideideas.com</a>&gt;<br>
&gt;&gt; &gt;&gt; Subject: Re: [OpenSIPS-Users] Opensips Control Pannel does not take<br>
&gt;&gt; &gt;&gt; ? ? ? ?effect into Opensips Server<br>
&gt;&gt; &gt;&gt; To: OpenSIPS users mailling list &lt;<a href="mailto:users@lists.opensips.org">users@lists.opensips.org</a>&gt;<br>
&gt;&gt; &gt;&gt; Message-ID:<br>
&gt;&gt; &gt;&gt; ? ? ? ?&lt;<a href="mailto:AANLkTinGLDzzbUgJgQXOd_93r31hjnHAVAzPMo64K-MQ@mail.gmail.com">AANLkTinGLDzzbUgJgQXOd_93r31hjnHAVAzPMo64K-MQ@mail.gmail.com</a>&gt;<br>
&gt;&gt; &gt;&gt; Content-Type: text/plain; charset=ISO-8859-1<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Duong,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Some modules, like drouting, you have to click a reload module button<br>
&gt;&gt; &gt;&gt; in the control pannel.<br>
&gt;&gt; &gt;&gt; However, I think your problem is that you haven&#39;t implemented the<br>
&gt;&gt; &gt;&gt; needed stuff in opensips.cfg script.<br>
&gt;&gt; &gt;&gt; CP only provides an interface to managing/accessing the databases<br>
&gt;&gt; &gt;&gt; tables. You still have to impliment the logic in opensips.cfg.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Dave<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On Sat, Mar 19, 2011 at 3:04 AM, Duong Manh Truong<br>
&gt;&gt; &gt;&gt; &lt;<a href="mailto:ngoahotanglongbk@gmail.com">ngoahotanglongbk@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt; Hi all,<br>
&gt;&gt; &gt;&gt;&gt; I have followed all instructions about Opensips CP installations<br>
&gt;&gt; &gt;&gt;&gt; After done all configurations, the Web interface is appeared<br>
&gt;&gt; &gt;&gt;&gt; but unfortunately, when i use modules in this interfaces, it seems there<br>
&gt;&gt; &gt;&gt;&gt; is<br>
&gt;&gt; &gt;&gt;&gt; no connection between Opensips CP and Opensips Server Core!<br>
&gt;&gt; &gt;&gt;&gt; Take add/manage users module as an example: I registered user 1001, then<br>
&gt;&gt; &gt;&gt;&gt; i<br>
&gt;&gt; &gt;&gt;&gt; selected this module to show online users<br>
&gt;&gt; &gt;&gt;&gt; =&gt; But the result was &quot;no data found&quot; :-(<br>
&gt;&gt; &gt;&gt;&gt; I&#39;ve created opensips database, correctly insert parameters to opensips<br>
&gt;&gt; &gt;&gt;&gt; CP<br>
&gt;&gt; &gt;&gt;&gt; config files (including mysql user/pass to connect to opensips database)<br>
&gt;&gt; &gt;&gt;&gt; No error found !<br>
&gt;&gt; &gt;&gt;&gt; But i still can not use Opensips CP, someone help me to figure out why<br>
&gt;&gt; &gt;&gt;&gt; Opensips CP has no effect ??<br>
&gt;&gt; &gt;&gt;&gt; Do i misconfig ?(or forget to config) some important parameters to make<br>
&gt;&gt; &gt;&gt;&gt; Opensips CP connect properly to Opensips Server Core?<br>
&gt;&gt; &gt;&gt;&gt; (Something likes authentications........etc)<br>
&gt;&gt; &gt;&gt;&gt; Thanks a lot!<br>
&gt;&gt; &gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt;&gt; Users mailing list<br>
&gt;&gt; &gt;&gt;&gt;?<a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br>
&gt;&gt; &gt;&gt;&gt;?<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; Users mailing list<br>
&gt;&gt; &gt;&gt; <a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br>
&gt;&gt; &gt;&gt; <a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Users mailing list<br>
&gt;&gt; &gt; <a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br>
&gt;&gt; &gt; <a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;<br>
</div></div></blockquote></div><br></div>