한국어

소프트스위치

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


http://www.powerpbx.org/content/opensips-and-control-panel-install-guide


http://opensips-cp.sourceforge.net/


OpenSIPS Control Panel (OCP) Installation Guide

-----------------------------------------------

 

 

OCP was tested and developed mostly on Debian Linux , but of course it works

with other Linux distros as well. Some of the paths and commands in this INSTALL

guide might be debian specific.  

 

 

 

You will need apache , php and a mysql/postgres server for OCP to work.

 

Apache

------

 

1. You need to add this entry in your httpd.conf (or apache.conf) :

 

Alias /cp /var/www/opensips-cp/web

 

 

 

If you want to use another webserver , note the OCP has been tested only

on apache and lighthttpd.

 

 

2. Make ocp's access.log file writeable by apache :

 

chown www-data.www-data /var/www/opensips-cp/config/access.log

 

You might be not running debian, so check out the user and the group apache is

running on (www-data is debian specific,httpd for other distros like centos).

 

 

 

 

PHP

---

 

 

You must have PHP installed end enabled in the web server.

The MySQL support  and  XMLRPC support in PHP must be enabled.

 

1. php-mysql package must be installed and the mysql module loaded in php.ini

You must have this line into your php.ini:

extension=mysql.so

 

2. php-xmlrpc package must be installed and the xmlrpc module loaded in php.ini.

You must have this line into your php.ini:

extension=xmlrpc.so

 

A must-have option to be set into your php.ini :

 

short_open_tag = On ; 

 

4. MDB2 package needs to be installed with the 2 drivers (mysql and postgresql)

pear install MDB2

pear install MDB2#mysql

pear install MDB2#pgsql

pear install log

 

 

 

PostgreSQL

------------

 

1. in /etc/postgresql/8.3/main/postgresql.conf set:

regex_flavour = extended

 

2. in /etc/postgresql/8.3/main/pg_hba.conf search for the line starting with:

#IPv4 local connections

set the ident parameter  to trust

 

 

Database server

------------

 

The OpenSIPS Control Panel can connect to a remote database server,

so the MySQL server can be used from the SIP Server machine or another

machine in the network.

 

 

 

* MySQL v4.1+ and PostgreSQL 8.3+ must be installed . If you plan to use the the cdrviewer tool you will need Mysql 5.

The cdrviewer tool uses a mysql stored procedure, and there is no stored procedures support into Mysql 4.

 

 

* You will need the opensips database schema from the opensips distribution. (www.opensips.org)

(OCP is made for it)

 

 

* Additional steps:

 

    * For the admin tool you must add a table.

 

    Follow these steps:

           

            1. install the ocp_admin_privileges table schema ocp_admin_privileges.mysql/ocp_admin_privileges.pgsql

            (config/tools/admin/add_admin/ocp_admin_privileges.mysql)

        mysql -Dopensips -p < ocp_admin_privileges.mysql

                or

        psql -h host_name -U postgres_username -d opensips < ocp_admin_privileges.pgsql

           

            2. For being able to login create an admin account with the following username and password: admin/admin. Add it into the database:

            INSERT INTO ocp_admin_privileges (username,password,ha1,available_tools,permissions) values ('admin','admin',md5('admin:admin'),'all','all');                

 

    * For the cdrviewer tool you must add a table and a stored procedure to the OpenSIPS database.

 

    Follow these steps:  

    

            1 . install the cdr table schema cdrs.mysql/cdrs.pgsql

            (opensips-cp/config/tools/system/cdrviewer/cdrs.mysql)

            mysql -Dopensips -p < cdrs.mysql

                        or

            psql -h host_name -U postgres_username -d opensips < cdrs.pgsql

           

            2. * for mysql install opensips_cdrs_1_6.mysql , a mysql stored procedure that generates cdr records

            from the acc table : 

           

            mysql -Dopensips -p < opensips_cdrs_1_6.mysql

 

              * for postgres install opensips_cdrs_1_6.postgres, a postgresql procedure that generates cdr records

            from the acc table:     

           

 

            3. *for mysql edit the cron_job/generate-cdrs_mysql.sh file and change the mysql connection data

            (hostname,username,password and database)

            3. *for postgresql edit the cron_job/generate-cdrs_pgsql.sh file and change the pgsql connection data

            (hostname,username,password and database)

           

            4. you will need to call this procedure from cron at an arbitrary interval.

            Here's a cron entry for a 3 minutes interval:

           

            */3 * * * * root /var/www/opensips-cp/cron_job/generate-cdrs_mysql.sh

                        or

 

            */3 * * * * root /var/www/opensips-cp/cron_job/generate-cdrs_pgsql.sh

           

    * For the smonitor module : you must add two tables to the OpenSIPS database .

 

    Follow these steps:  

   

            1. Install the monitored_stats and monitoring_stats tables.

            You will find them in :

                       

            opensips-cp/config/tools/system/cdrviewer/tables.mysql

                        or        

            opensips-cp/config/tools/system/cdrviewer/tables.pgsql

            This is where the smonitor tool of the panel stores data.

           

               

            2. Add a cron job that collects data from the opensips machine(s).

           

            Here's a cron job that collects data at 1 minute interval:

            (This interval is not arbitrary , it must be set at 1 minute , so is the smonitor tool designed )

           

            * * * * *   root   php /var/www/opensips-cp/cron_job/get_opensips_stats.php > /dev/null

           

           

            The cron jobs do not need to run as root, you might want to change the user.

 

    * For the add_admin module : you must add one table to the OpenSIPS database .

 

    Follow these steps:

 

        1. Install the ocp_admin_privileges.mysql or ocp_admin_privileges.pgsql.

        You will find them them here :

 

        opensips-cp/config/tools/admin/add_admin/ocp_admin_privileges.mysql

        or,

        opensips-cp/config/tools/admin/add_admin/ocp_admin_privileges.pgsql

        This is where the admin data is stored .

       

            mysql -Dopensips -p < ocp_admin_privileges.mysql

                or

        psql -h host_name -U postgres_username -d opensips < ocp_admin_privileges.pgsql

 

 

Configuration files

-------------------

 

*DB Configuration files are split in:

            1) global(config/db.inc.php)

            2) local(config/tools/(admin|users|system)/module_name/db.inc.php)     

 

NOTE: If all modules pull out data from the same database, there should be used only the global config file and the local config files should be left as they are defined by default.

      If modules draw out data from different databases, in the local config files all the fields should be left uncommented ( host, database name, port(if necessary) user, password ).

 

The 2 types of files (global and local) are almost identical, the exception is that in the global file there is a parameter that defines the database driver:

 $config->db_driver = "mysql"; (or pgsql)

 

*Configuration files:

            1) globals.php (config/globals.php)

 

            1)The globals.php file is used for parameters that are being accessed in more then one module.

                        *$config->table_aliases

                        Parameter used for the aliases tables in case there are more than the standard dbaliases table. The defined array has as key the

                        label and as value the table name.For defining more than one attribute/value pair, complete the list with identical elements

                        separated by comma.

 

                        $config->table_aliases = array("DBaliases"=>"dbaliases");

           

 

                        *$config->permissions

                        The permissions parameter is used by all modules, when setting the modules permissions for a certain admin.

                        This array has 2 values that will remain unchanged: read-only and read-write.

 

                        $config->permissions = array("read-only","read-write");

 

 

조회 수 :
279135
등록일 :
2014.03.06
18:58:23 (*.251.139.148)
엮인글 :
http://webs.co.kr/index.php?document_srl=38969&act=trackback&key=c0c
게시글 주소 :
http://webs.co.kr/index.php?document_srl=38969
List of Articles
번호 제목 글쓴이 조회 수sort 추천 수 날짜
» OpenSIPS Control Panel (OCP) Installation Guide admin 279135   2014-03-06
http://www.powerpbx.org/content/opensips-and-control-panel-install-guide http://opensips-cp.sourceforge.net/ OpenSIPS Control Panel (OCP) Installation Guide ----------------------------------------------- OCP was tested and de...  
170 Opensips Gateway between SIP and SMPP messages admin 265937   2019-02-19
 
169 What is new in 1.8.0 opensip admin 252526   2012-05-21
 
168 What is new in 2.3.0 opensips admin 244681   2017-09-04
 
167 Using SIP Devices behind NAT OPensip Asterisk IPPhone SIP Telephony file admin 225708   2013-03-31
 
166 OpenSIPS vs Asterisk admin 220262   2013-04-06
 
165 PUSH SERVER 푸시서버 안드로이드 애플 admin 207904   2017-09-11
 
164 MediaProxy Installation Guide admin 180459   2014-03-06
 
163 telepresence: Open Source SIP Telepresence/MCU admin 180063   2014-03-12
 
162 RTPproxy Frequentry Asked Questions (FAQ) ¶ admin 175048   2014-03-07
 
161 SIP PBX - OpenSIPS and Asterisk configuration admin 161821   2014-03-12
 
160 Asterisk v1.4x built on FreeBSD v7.1 UNIX admin 149580   2012-01-06
 
159 사설 망 환경에서 SIP 의 NAT Traversal 문제 admin 144180   2011-12-23
 
158 How to install Mediaproxy 2.5.2 on CentOS 6 64 bit admin 143027   2017-09-04
 
157 SIP 트래픽 생성 테스트 툴 admin 136365   2011-12-23
 
156 opensips command /sbin/opensipsctl detail admin 124484   2017-09-04
 
155 How to setup a Jabber / XMPP server on Debian 8 (jessie) using ejabberd admin 123595   2017-09-13
 
154 Opensips_1.9 install guide this is great I like this admin 107115   2014-03-04
 
153 OpenSIPS basic configuration script 기본 컨피그 admin 104763   2017-09-05
 
152 Welcome to the Smartvox Knowledgebase admin 104306   2013-04-06
 
151 Installing RTPproxy Start RTPproxy in Bridged mode very good admin 101976   2014-03-07
 
150 오픈소스 (사내)메신저 서버 구축, 오픈 파이어(openfire) 설치방법과 세팅 admin 101534   2014-08-11
 
149 Flooding Asterisk, Freeswitch and Kamailio with Metasploit admin 99677   2013-04-06
 
148 OpenSIPS Control Panel install guide admin 95596   2014-03-06
 
147 dictionary.opensips radius admin 94626   2017-12-09
 
146 Installation and configuration process record opensips 1.9.1 admin 94584   2014-08-09
 
145 My new toy: Bluebox-ng admin 91089   2013-04-06
 
144 in opensips what is lookup(domain [, flags [, aor]]) admin 90737   2017-12-09
 
143 Conference Support in Kamailio (OpenSER) admin 84960   2014-03-12
 
142 Kamailo OpenSIPs installation on Debian admin 81862   2014-03-09