Login | Register

Documentation

Documentation -> Migration -> Migration from 3.5.x to 3.6.x

This page has been visited 269 times.


This section is meant to provide useful help in migrating your OpenSIPS installations from the 3.5.x version to 3.6.x.

You can find the all the new additions in the 3.6 release compiled under this page. The ChangeLog may help your understanding of the migration / update process.

Make sure you don't carry a left-over Makefile.conf file in your OpenSIPS source tree if migrating to a new branch! This configuration file, generated by make menuconfig, is usually not compatible with the one of a previous major release!


1.  DB migration

You can migrate your 3.5.x MySQL DB to the 3.6.x format using the opensips-cli tool :

   # opensips-cli -x database migrate 3.5_to_3.6 opensips_3_5 opensips_3_6

where :

  • opensips_3_5 is the existing DB name corresponding to version 3.5.x format
  • opensips_3_6 is the DB name to be created for 3.6.x format

See the opensips-cli documentation for more details.

NOTE:

  • the old database will not be deleted, altered or changed - it will not be touched at all
  • new database will be created and data from old DB will be imported into it

1.1  Subscriber table

  • email_address and rpid columns have been completely dropped from the subscriber table = if you want to preserve the columns in your setup, you need to manually add them to the new migrated table and copy the values from the old one.

Back to Table of Contents


2.  Script migration

The following is the full list of backwards-incompatible syntax or functional changes in the OpenSIPS configuration script:

  • none

2.1  Global Parameters

  • example

2.2  Core Variables

  • example

2.3  Core keywords

  • example

2.4  Core functions

  • example

2.5  Core MI commands

  • example

2.6  Statistics migration

  • example

3.  Module migration

3.1  Event_route module

  • the event_route module has been completely dropped and merged into core. Thus, you no longer need to load the module in your script, as it will be automatically loaded at startup. In order to migrate, simply delete the loadmodule "event_route.so" line from your script.

3.2  RabbitMQ module

  • the rabbitmq module has been completely merged into the event_rabbitmq module. In order to migrate, you need to remove the loadmodule "rabbitmq.so" line and add the loadmoule "event_rabbitmq.so" line, in case it was not previously loaded.

3.3  Prometheus module

  • paramameter script_route_avp_result has been dropped, and its behavior has been replaced with the newly added return values. Check the script_route documentation for more information.

3.4  SIPREC module

  • the media_ip parameter in the $siprec has been dropped, being fully replaced with the media parameter.

4.  Packaging migration

  • On Debian and Fedora/Redhat, the opensips-berkeley-module, opensips-mysql-module, opensips-postgres-module and opensips-sqlite-module packages no longer come with the associated database schemas for each backend - instead, four new packages are being built, namely opensips-berkeley-dbschema, opensips-mysql-dbschema, opensips-postgres-dbschema and opensips-sqlite-dbschema, which contain the corresponding database schema for each backend. Since there is no cross dependency between the module and the dbschema, if one needs the schema as well, it needs to be installed the dbschema package separately. This change is being done on purpose, to be able to install the dbschema files on separate machines, and use them separately to install (for example using opensips-cli).

Page last modified on September 09, 2024, at 02:49 PM