한국어

소프트스위치

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

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


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



OpenSIPS Control Panel (OCP) Installation Guide
-----------------------------------------------


OCP has been tested and developed mostly on Debian and Redhat Linux , but, being
a web portal qualifies it to work also with other Linux distros and operating
systems as well. Most of the paths and commands in this INSTALL guide are be
debian/redhat specific.   


You Will Need:
1. a web server (this tutorial focuses only on Apache Web Server)
2. PHP and some of it's extensions
3. DB (mysql/postgres/sqlite/oracle etc)

This tutorial assumes that your web directory is /var/www/ and the OCP files are
located in /var/www/opensips-cp/ folder

Apache
------

1. Install Apache
- debian: apt-get install apache2 libapache2-mod-php5
- redhat: yum install httpd

2. Configure Apache
- you can add the configuration below into one of Apache's existent VHOSTs or
  create a new one:

        <Directory /var/www/opensips-cp/web>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        <Directory /var/www/opensips-cp>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order deny,allow
                deny from all
        </Directory>

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

- you can read more about Apache's VHOSTS here:
    http://httpd.apache.org/docs/current/vhosts/examples.html


2. Apache is going to need write permissions on some files / folders in the
   opensips-cp directory :

- so you can do:
    - for debian: chown -R www-data:www-data /var/www/opensips-cp/
    - for redhat: chown -R apache:apache /var/www/opensips-cp/

- or, at least chown the mandatory files:
    - for debian: chown -R www-data:www-data /var/www/opensips-cp/web/tools/system/smonitor/generated
                  chown  www-data:www-data /var/www/opensips-cp/config/tools/system/drouting/group_ids.txt
                  chown  www-data:www-data /var/www/opensips-cp/config/tools/system/drouting/gw_types.txt
 
    - for redhat: chown -R apache:apache /var/www/opensips-cp/web/tools/system/smonitor/generated
                  chown  apache:apache /var/www/opensips-cp/config/tools/system/drouting/group_ids.txt
                  chown  apache:apache /var/www/opensips-cp/config/tools/system/drouting/gw_types.txt




PHP
---


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

In order to do that you will have to install php and some of it's extensions.

- on debian distros do:
    apt-get install php5 php5-gd php5-mysql php5-xmlrpc php-pear php5-cli
- on redhat distros do:
    yum install php php-gd php-mysql php-xmlrpc php-pear


Check if these extensions are enabled :
- for debian distros check /etc/php5/conf.d/ for mysql.ini, gd.ini, xmlrpc.ini
- for redhat distros check /etc/php.d/ for mysql.ini, gd.ini, xmlrpc.ini

If these are not there plese check if you have installed them correctly

Do not forget to set in your php.ini :
short_open_tag = On ;  

4. MDB2 package needs to be installed with the appropriate DB driver
   (mysql / postgresql / mssql / sqlite etc.)

    pear install MDB2
    pear install MDB2#mysql //should you choose to go with the mysql database
    pear install log



Database server
----------------

The OpenSIPS Control Panel can connect to a remote database server,
so the DB server can be used from the SIP Server machine or another
machine in the network.



* 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 (we only provide the
           schema for mysql and pgsql)
            - from the opensips-cp folder run:
                mysql -Dopensips -p < config/tools/admin/add_admin/ocp_admin_privileges.mysql
                    or
                psql -h host_name -U postgres_username -d opensips < config/tools/admin/add_admin/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 of use one that is already in
      your OpenSIPS Database (in case your OpenSIPS Server generates & stores
      CDRs in DB)

        Follow these steps (in case you do not have already a cdrs table in your
        opensips DB):    
     
            mysql -Dopensips -p < config/tools/system/cdrviewer/cdrs.mysql
                or
            psql -h host_name -U postgres_username -d opensips < config/tools/system/cdrviewer/cdrs.pgsql
    

    
    * 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.
                mysql -Dopensips -p < config/tools/system/smonitor/tables.mysql
                    or
                psql -h host_name -U postgres_username -d opensips < config/tools/system/smonitor/tables.pgsql
    
            2. Edit the cron_job/get_opensips_stats.php file and change:
                $path_to_smonitor="/var/www/opensips-cp/web/tools/system/smonitor"; to the actual path of your OpenSIPS CP
       
            3. Add a cron job that collects data from the opensips machine(s).
    
                Here's a cron job that collects data at 1 minute interval:
                * * * * *   root   php /var/www/opensips-cp/cron_job/get_opensips_stats.php > /dev/null
    
    

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 uncommented and provisioned accordingly
        ( host, database name, port -if necessary - user, password ).

* Configuration files:
    1) globals.php (config/globals.php)
    2) boxes.global.inc.php (config/boxes.global.inc.php)
    3) modules.inc.php (config/modules.inc.php)

    1)The globals.php file is used for parameters that are being accessed in
        more then one module.
       
        *$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");

        *$config->admin_passwd_mode
        You can use this parameter if you want your passwords to be
        encrypted (1) or left in plain text mode (0)

    2) The boxes.global.inc.php contains some important parameters like :
        - box_id - this is an integer unique ID of the box your are configuring
        - MI (management interface) connector - gives OpenSIPS Control Panel
          the ability to "talk" to OpenSIPS proxy via fifo, udp, xmlrpc and
          http json
        - Monit configuration - OpenSIPS CP can be integrated with Monit
          (see https://mmonit.com/monit/)
        - enable / disable Smonitor charts generator (you can choose to sample
          charts data on a box - be careful to configure the cron scripts)
        - choose the system id associated to the box
      
      You can define multiple boxes and group them into systems (see commented
          part of the file).

    3) The modules.inc.php file is used to configure what tools (modules)
       and/or groups of tools should appear in the main menu
        For example :

           "users"         => array (
                                                    "enabled"   => true,
                                                    "name"      => "Users",
                                                    "modules"   => array (
                                                                        "acl_management"    => array (
                                                                                                    "enabled"   => true,
                                                                                                    "name"      => "ACL Management"
                                                                        "alias_management"  => array (
                                                                                                    "enabled"   => false,
                                                                                                    "name"      => "Alias Management"
                                                                                            ),

        Above you can see that the Users tool group is enabled and the
        "ACL Management" module are enabled but the "Alias Management" is not
        enabled so it will not show up in the main menu.

조회 수 :
67299
등록일 :
2014.08.13
13:16:23 (*.160.88.200)
엮인글 :
http://webs.co.kr/index.php?document_srl=194118&act=trackback&key=46a
게시글 주소 :
http://webs.co.kr/index.php?document_srl=194118
List of Articles
번호 제목 글쓴이 조회 수 추천 수 날짜
78 OPENSIPS EBOOK admin 37362   2014-08-21
 
77 Opensips Documentation Function admin 40271   2014-08-21
 
76 Presence Tutorial OpenXCAP setup admin 39924   2014-08-18
 
75 Opensips Modules Documentation admin 41425   2014-08-18
 
74 A lightweight RPC library based on XML and HTTP admin 39409   2014-08-18
 
73 opensips Nat script with RTPPROXY - English Good perfect admin 36596   2014-08-15
 
» OpenSIPS Control Panel (OCP) Installation Guide Good admin 67299   2014-08-13
http://opensips-cp.sourceforge.net/ OpenSIPS Control Panel (OCP) Installation Guide ----------------------------------------------- OCP has been tested and developed mostly on Debian and Redhat Linux , but, being a we...  
71 Installation and configuration process record opensips opensips-cp admin 69202   2014-08-13
 
70 OpenSIPS as Homer Capture server admin 35992   2014-08-13
 
69 OpenSIPS , default script , Types of Routs , Routing in SIP, Video lecture admin 40043   2014-08-13
 
68 Configuracion de Kamailio 3.3 con NAT Traversal y XCAP. admin 35909   2014-08-12
 
67 Under RHEL6.5 install OpenSIPS 1.11.1 tls admin 37942   2014-08-12
 
66 OpenSIPS/OpenSER-a versatile SIP Server cfg admin 36935   2014-08-11
 
65 Kamailio Nat Traversal using RTPProxy admin 35909   2014-08-11
 
64 MediaProxy wiki page install configuration admin 42401   2014-08-11
 
63 오픈소스 (사내)메신저 서버 구축, 오픈 파이어(openfire) 설치방법과 세팅 admin 100284   2014-08-11
 
62 MediaProxy Installation Guide admin 38648   2014-08-10
 
61 RTPProxy 1.2.x Installation & Integration with OpenSIPS 1.5x admin 40526   2014-08-10
 
60 Opensips Installation, How to. Good guide wiki page admin 35650   2014-08-10
 
59 OpenSIPS Installation Notes admin 46660   2014-08-09
 
58 Installation and configuration process record opensips 1.9.1 admin 93352   2014-08-09
 
57 opensips 1.11.2 install Good Giide admin 65627   2014-08-09
 
56 fusionPBX install debian wheezy admin 37645   2014-08-09
 
55 opensips 1.11.2 install guide good 인스톨 가이드 admin 43758   2014-08-09
 
54 SigIMS IMS Platform admin 37165   2014-05-24
 
53 2013 2012년 분야별 최고의 오픈소스 소프트웨어 124선 admin 62323   2014-04-05
 
52 Video conference server OpenMCU-ru - Introduction admin 53669   2014-04-01
 
51 SIPSorcery admin 43124   2014-03-18
 
50 Ekiga (formely known as GnomeMeeting) is an open source SoftPhone admin 41287   2014-03-12
 
49 telepresence: Open Source SIP Telepresence/MCU admin 177118   2014-03-12