한국어

소프트스위치

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

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app



https://linoxide.com/ubuntu-how-to/install-opensips-server-ubuntu-15-04/



OpenSIPS is an open source SIP Proxy program that runs on Linux platforms and play in the infrastructure of an Internet Telephony Service Provider. There are number of open source applications available that are used to build IP Telephony solutions. OpenSIPS may not be as well-known as Asterisk, but it is widely used by VOIP service providers as a core part of their infrastructure because of its robustness, speed and capacity.

In this article we will take you through the steps needed for downloading OpenSIPS sources and then compiling and installing it on the Ubuntu 15 server. So at the end of this article you'll see a working openSIPS server and able to see that how it will generate a working configuration file based on your desired functionalities.

Prerequisites:

OpenSIPS server installation requires some basic modules to be installed on the Ubuntu server that can be installed using the simple 'apt-get' command. Once your back end server is ready to deploy the OpenSIPS then login using the sudo or root user to perform the following tasks.

1) System Update

Once you are connected to your CentOS 7 server, run the following command as a root user to update your system with latest updates and security patches.

# apt-get update

system update

2) Installing Dependencies:

After system update you need to install the missing packages using the 'apt-get' command if these are not already installed.

# apt-get install build-essential openssl bison flex

To continue the installation you will be asked to type 'y' key. This will install all required missing packages including their dependencies as shown .

OpenSips Dependencies

Still few more dependencies left that need to be installed, to do so run the following command.

# apt-get install perl libdbi-perl libdbd-mysql-perl libdbd-pg-perl libfrontier-rpc-perl libterm-readline-gnu-perl libberkeleydb-perl ncurses-dev

Opesips dependencies

3) Installing MySQL Server:

In order setup database for the OpenSIPS server we need a Database server. So, we are going to use MySQL-Server by using the community repository. Let's run the following commands to install MySQL server and it development libraries.

# apt-get install mysql-server libmysqlclient-dev

Installing Mysql

Now you will be able to install the MySQL local server and MySQL headers by press the 'y' key. During its setup you will be asked to configure the root password for MySQL server, so type your secure password and press 'OK' to proceed.

set mysql password

4) Download OpenSIPS Package:

Open the Official OpenSIPS Source Page to download the package.

OpenSIPS Source

We are going to download the package into the following directory using 'wget' command and the extract within th esame directory.

# cd /usr/src

# wget http://opensips.org/pub/opensips/latest/opensips-2.1.2.tar.gz

# tar -zxvf opensips-2.1.2.tar.gz

download opensips

5) Compiling OpenSIPS Source:

Moving step ahead let's move into the opensips directory and run the command below to start the compilation process.

# cd opensips-2.1.2/
# make all

Compiling Opensips

6) Installing OpenSIPS Source:

Once the compilation process completes, you can start making its installation as shown below.

# make install

make install

7) OpenSIPS Configuration:

The OpenSIPS has been installed, now we are going to configure some of its basic parameters and startup script. Let's first create a new directory for the OpenSIPS run files.

# mkdir /var/run/opensips

Now move to the following 'debians' directory and list the files in it.

# cd packaging/debian/

Debian Files

Here you see the opensips default and init files that we will copying to the '/etc/default/' directory using the following commands.

# cp opensips.default /etc/default/opensips
# cp opensips.init /etc/init.d/opensips

Then run the following commands to give executable permissions to the opensips startup script, create and new user and then update its default boot configurations as shown below.

# chmod +x /etc/init.d/opensips
# useradd opensips
# update-rc.d opensips defaults 99

Opensips settings

Open the default file of Opensips using any of your editor to configure its startup options.

# vim /etc/default/opensips

Here you need to replace the 'RUN_OpenSIPS' to 'Yes'. You can also change the user and group and name that you wish to use for the Opensips services and also change the shared memory to minimum 128 which is recommended for the OpenSIPS server.

Opensips Statup

we also need to update the daemon on OpenSIP and change it location in its startup script and update its state from 'off' to 'on' and then close the file after making changes as shown in the below image.

# vim /etc/init.d/opensips

opensips daemon

Starting OpenSIPS Service:

All necessary configurations has been setup to proceed on starting OpenSIPS service. Simply run the following command to start OpenSIPS and the check its status, that should be active and running as shown in the image.

# /etc/init.d/opensips start

# systemctl status opensips

start opensips

You can also check the state of OpenSIPS services and the port on which its running that is '5060' by using the below commands.

# ps -ef | grep opensips
# netstat -alnp | grep opensips

opensips processes

Conclusion

OpenSIPS server has been installed successfully on Ubuntu 15.04 including of its required dependencies. But there are alot of things to work on and explore. In the next article we show you its web control panel installation. We have you enjoyed following this article and did not face any issue. Feel free to comment us back in case of any difficulty and leave you valuable suggestions.

조회 수 :
25882
등록일 :
2017.09.01
18:59:53 (*.160.88.18)
엮인글 :
http://webs.co.kr/index.php?document_srl=3311715&act=trackback&key=7b8
게시글 주소 :
http://webs.co.kr/index.php?document_srl=3311715
List of Articles
번호 제목 글쓴이 날짜 조회 수
138 Using TLS in OpenSIPS v2.2.x admin 2017-09-14 44056
137 opensips tls cfg admin 2017-09-14 29165
136 How to setup a Jabber / XMPP server on Debian 8 (jessie) using ejabberd admin 2017-09-13 122991
135 SIP to XMPP Gateway + SIP Presence Server opensips admin 2017-09-13 51448
134 OpenSIPS command line tricks admin 2017-09-13 44249
133 Fail2Ban Freeswitch How to secure admin 2017-09-12 60592
132 opensips.cfg. sample admin 2017-09-12 23517
131 Advanced SIP scenarios with Event-based-Routing admin 2017-09-11 32447
130 PUSH SERVER 푸시서버 안드로이드 애플 admin 2017-09-11 206815
129 오픈소스 (사내)메신저 서버 구축, 오픈 파이어(openfire) 설치방법과 세팅(리눅스 기준) admin 2017-09-09 70705
128 rtpengine config basic and opensips configuration and command admin 2017-09-06 52735
127 WebSocket Transport using OpenSIPS configuration 웹 소켓 컨피그레이션 기본 admin 2017-09-06 20382
126 OpenSIPS basic configuration script 기본 컨피그 admin 2017-09-05 104054
125 rtpengine install and config admin 2017-09-05 57792
124 Installing RTPEngine on Ubuntu 14.04 admin 2017-09-05 31565
123 compile only the textops module make modules=modules/textops modules admin 2017-09-05 18532
122 opensips command /sbin/opensipsctl detail admin 2017-09-04 123750
121 2017 08 31 opensips 2.32 install debian8.8 module install compile err modules admin 2017-09-04 41479
120 Build-Depends debian 8.8 opensips 2.3 admin 2017-09-04 63704
119 What is new in 2.3.0 opensips admin 2017-09-04 243274
118 ubuntu 安装配置opensips,rtpproxy,mediaproxy admin 2017-09-04 23166
117 How to install Mediaproxy 2.5.2 on CentOS 6 64 bit admin 2017-09-04 142153
116 Using TLS in OpenSIPS v2.2.x configuration admin 2017-09-04 46470
115 How to 2.3 download , OpenSIPS new apt repository. DEBs for Debian / Ubuntu admin 2017-09-02 18237
114 You can install CDRTool in the following ways: admin 2017-09-01 19746
» How to Install OpenSIPS 2.1.2 Server on Ubuntu 15.04 admin 2017-09-01 25882
112 Opensips 2.32 download admin 2017-09-01 17628
111 OpenSIPS 2.3 install admin 2017-09-01 23685
110 JsSIP: The JavaScript SIP Library admin 2017-09-01 19903
109 WebSocket Transport using OpenSIPS admin 2017-09-01 23509