Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
install:kamailio-devel-from-git [2011/06/08 12:11] – created miconda | install:kamailio-devel-from-git [2011/09/05 08:56] (current) – [Notes on Kamailio vs SER] 85.178.70.62 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ======= Install And Maintain Kamailio (OpenSER) Devel From GIT ======= | ||
+ | < | ||
+ | Main author: | ||
+ | | ||
+ | </ | ||
+ | |||
+ | This is a step by step tutorial about how to install and maintain Kamailio (OpenSER) using the sources from GIT - the choice for those willing to write code for Kamailio or to try the new features to be released in the future with the next major stable version. | ||
+ | |||
+ | This document focuses on Kamailio (OpenSER) devel (at this time upcoming v3.2.0) with MySQL support, using a Debian unstable system. | ||
+ | |||
+ | |||
+ | ==== Notes on Kamailio vs SER ==== | ||
+ | |||
+ | Since version 3.0.0, Kamailio and SER are built from same source code, meaning that they are more or less same application. | ||
+ | |||
+ | The difference is in few compile time options that are enabled in Kamailio. These are: | ||
+ | * enable Kamailio-style statistics framework - if you don't know what they are, then you don't need them anyhow | ||
+ | * enable application server extensions in TM module needed only by seas module - unless you use seas module, these extensions make no difference to you | ||
+ | |||
+ | You can build as well SER with these extensions by editing the Makefiles. Also, all modules work with Kamailio-style statistics framework disabled. | ||
+ | |||
+ | ===== 1. Prerequisites ===== | ||
+ | |||
+ | To be able to follow the guidelines from this document you need **root** access. | ||
+ | |||
+ | The following packages are required before proceeding to the next steps. | ||
+ | |||
+ | * __git__ client: apt-get install git-core - it is recommended to have the latest version, which might not be part of the distribution yet, but you can get it from: http:// | ||
+ | * __gcc__ compiler: apt-get install gcc | ||
+ | * __flex__ - apt-get install flex | ||
+ | * __bison__ - apt-get install bison | ||
+ | * __libmysqlclient15-dev__ - apt-get install libmysqlclient15-dev | ||
+ | * __make__ - apt-get install make | ||
+ | * if you want to enable more modules, some of them require extra libraries: | ||
+ | * __libcurl__ - apt-get install libcurl4-openssl-dev | ||
+ | * __libxml2__ - apt-get install libxml2-dev | ||
+ | * __libpcre3__ - apt-get install libpcre3-dev | ||
+ | |||
+ | ===== 2. Getting sources from GIT ===== | ||
+ | |||
+ | First of all, you have to create a directory on the file system where the sources will be stored. | ||
+ | |||
+ | < | ||
+ | mkdir -p / | ||
+ | cd / | ||
+ | </ | ||
+ | |||
+ | Download the sources from GIT using the following commands. | ||
+ | |||
+ | < | ||
+ | git clone --depth 1 git:// | ||
+ | cd kamailio | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== 3.Tuning Makefiles ===== | ||
+ | |||
+ | The **most important and first step** is to set build flavour to **kamailio**. | ||
+ | |||
+ | < | ||
+ | make FLAVOUR=kamailio cfg | ||
+ | </ | ||
+ | |||
+ | If you forget to set the flavour to kamailio, the default build is SER (note that SER flavour does not enable by default Kamailio' | ||
+ | |||
+ | Next step is to enable the MySQL module. | ||
+ | |||
+ | < | ||
+ | nano -w modules.lst | ||
+ | </ | ||
+ | |||
+ | Remove **db_mysql** from the variable **exclude_modules**. | ||
+ | |||
+ | Save the **modules.lst** and exit. | ||
+ | |||
+ | NOTE: this is the mechanism to enable modules which are not compiled by default, such as lcr, dialplan, presence -- remove the module from **exclude_modules** variable inside the **modules.lst** file. | ||
+ | |||
+ | Alternative is to use ' | ||
+ | |||
+ | < | ||
+ | make FLAVOUR=kamailio | ||
+ | </ | ||
+ | |||
+ | If you want to install everything in one directory (so you can delete all installed files at once), say / | ||
+ | |||
+ | < | ||
+ | make PREFIX="/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | More hints about Makefile system at: | ||
+ | * http:// | ||
+ | |||
+ | ===== 4. Compile Kamailio (OpenSER) ===== | ||
+ | |||
+ | Once the mysql module was removed from excluded modules list, you can compile Kamailio (OpenSER). | ||
+ | |||
+ | < | ||
+ | make all | ||
+ | </ | ||
+ | |||
+ | You can get full compile flags output using: | ||
+ | |||
+ | < | ||
+ | make Q=0 all | ||
+ | </ | ||
+ | |||
+ | ===== 5. Install Kamailio (OpenSER) ===== | ||
+ | |||
+ | When the compilation is ready, install Kamailio (OpenSER) with the following command: | ||
+ | |||
+ | < | ||
+ | make install | ||
+ | </ | ||
+ | |||
+ | ===== 6. What and where was installed ===== | ||
+ | |||
+ | The binaries and executable scripts were installed in: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | |||
+ | These are: | ||
+ | |||
+ | * __kamailio__ - Kamailio (OpenSER) server | ||
+ | * __kamdbctl__ - script to create and manage the Databases | ||
+ | * __kamctl__ - script to manage and control Kamailio (OpenSER) server | ||
+ | * __sercmd__ - CLI - command line tool to interface with Kamailio (OpenSER) server | ||
+ | |||
+ | To be able to use the binaries from command line, make sure that '/ | ||
+ | |||
+ | < | ||
+ | PATH=$PATH:/ | ||
+ | export PATH | ||
+ | </ | ||
+ | |||
+ | Kamailio (OpenSER) modules are installed in: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | The documentation and readme files are installed in: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | The man pages are installed in: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | The configuration file was installed in: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | ===== 7. Create MySQL database ===== | ||
+ | |||
+ | To create the MySQL database, you have to use the database setup script: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | In order to create the database you need to specify the wanted db type (DBENGINE=MYSQL) in the | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | file. Call this script without any parameter to get some help for the usage. You will be asked for the domain name Kamailio (OpenSER) is going to serve (e.g., mysipserver.com) and the password of the ' | ||
+ | |||
+ | The script will add two users in MySQL: | ||
+ | |||
+ | - **openser** - having the password ' | ||
+ | |||
+ | - **openserro** - having the password ' | ||
+ | |||
+ | **__Do change the passwords for these two users immediately after the database is created.__** | ||
+ | |||
+ | ===== 8. Edit configuration file ===== | ||
+ | |||
+ | To fit your requirements for the VoIP platform, you have to edit the configuration file. | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | Follow the instruction in the comments to enable usage of MySQL. Basically you have to add several lines at the top of config file, like: | ||
+ | |||
+ | < | ||
+ | #!define WITH_MYSQL | ||
+ | #!define WITH_AUTH | ||
+ | #!define WITH_USRLOCDB | ||
+ | </ | ||
+ | |||
+ | If you changed the password for the ' | ||
+ | |||
+ | You can browse [[http:// | ||
+ | |||
+ | ===== 9. The init.d script ===== | ||
+ | |||
+ | The init.d script can be used to start/stop the Kamailio (OpenSER) server in a nicer way. A sample of init.d script for Kamailio (OpenSER) is provided at: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | Just copy the init file into the / | ||
+ | |||
+ | < | ||
+ | chmod 755 / | ||
+ | </ | ||
+ | |||
+ | then edit the file updating the $DAEMON value: | ||
+ | < | ||
+ | DAEMON=/ | ||
+ | </ | ||
+ | |||
+ | You need also setup a configuration file in the / | ||
+ | |||
+ | < | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | You need to rename the file to ' | ||
+ | |||
+ | Create the directory for pid file: | ||
+ | |||
+ | < | ||
+ | mkdir -p / | ||
+ | </ | ||
+ | |||
+ | Default setting is to run Kamailio as user " | ||
+ | |||
+ | < | ||
+ | adduser --quiet --system --group --disabled-password \ | ||
+ | --shell /bin/false --gecos " | ||
+ | --home / | ||
+ | |||
+ | # set ownership to / | ||
+ | chown kamailio: | ||
+ | </ | ||
+ | |||
+ | Then you can start/stop Kamailio (OpenSER) using the following commands: | ||
+ | |||
+ | < | ||
+ | / | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | ===== 10. Ready to rock ===== | ||
+ | |||
+ | Now everything is in place. You can start the VoIP service, creating new accounts and setting the phones. | ||
+ | |||
+ | A new account can be added using ' | ||
+ | |||
+ | kamctl add test testpasswd test@mysipserver.com | ||
+ | |||
+ | If you are asked for SIP_DOMAIN environment variable do one of the following option. | ||
+ | |||
+ | < | ||
+ | 1. | ||
+ | export SIP_DOMAIN=mysipserver.com | ||
+ | |||
+ | 2. | ||
+ | edit '/ | ||
+ | SIP_DOMAIN=mysipserver.com | ||
+ | </ | ||
+ | |||
+ | ===== 11. Maintenance ===== | ||
+ | |||
+ | The maintenance process is very simple right now. You have to be user ' | ||
+ | |||
+ | < | ||
+ | cd / | ||
+ | git pull origin | ||
+ | make all | ||
+ | make install | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | Now you have the latest Kamailio (OpenSER) devel running on your system. | ||
+ | |||
+ | |||
+ | ===== 12. Time for maintenance service ===== | ||
+ | |||
+ | Notification about GIT commits are sent to the mailing list: **sr-dev@lists.sip-router.org**. Each commit notification contains the reference to the branch where the commit has been done. If the commit message contains the lines: | ||
+ | |||
+ | < | ||
+ | Module: sip-router | ||
+ | Branch: master | ||
+ | </ | ||
+ | |||
+ | then an update has been made to Kamailio (OpenSER) devel version and it will be available to the public GIT in no time. | ||
+ | |||
+ | ===== Installation Stuff ===== | ||
+ | |||
+ | {{indexmenu> |