DOKK / manpages / debian 11 / liblemonldap-ng-common-perl / convertSessions.1p.en
CONVERTSESSIONS(1p) User Contributed Perl Documentation CONVERTSESSIONS(1p)

convertSessions - A tool to convert Lemonldap::NG sessions between storage backends.

  convertSession [-di] -c parameters.ini

convertConfig is a command line tool to migrate all sessions stored in a source backend (sessions_from), into a new backend (sessions_to).

It requires a special configuration file in which you must list the source and destination backend modules and parameters.

Sessions will not be deleted from the source backend. Existing sessions in the destination backend will be kept, unless they have the same session ID as a session in the source backend. In that case, the source will overwrite the destination.

The configuration file needs two sections to describe the source and destination backends

Here is an example

    [sessions_from]
    storageModule = Apache::Session::File
    storageModuleOptions = {    \
          'Directory' => '/var/lib/lemonldap-ng/sessions',      \
          'LockDirectory' => '/var/lib/lemonldap-ng/sessions/lock', \
    }
    # Only migrate some session types
    # sessionKind = Persistent, SSO
    
    [sessions_to]
    storageModule = Apache::Session::Browseable::Postgres
    storageModuleOptions = {    \
        'DataSource' => 'DBI:Pg:database=lemonldapdb;host=pg.example.com', \
        'UserName' => 'lemonldaplogin', \
        'Password' => 'lemonldappw', \
        'Commit' => 1, \
        'Index' => 'ipAddr _whatToTrace user', \
        'TableName' => 'sessions', \
    }

The "sessionKind" parameter may be used to filter only some session types.

Thanks to this, you can use this script to migrate from one database holding all your sessions to separate tables from each session type.

<http://lemonldap-ng.org/>

Use OW2 system to report bug or ask for features: <https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/issues>

Lemonldap::NG is available at <http://forge.objectweb.org/project/showfiles.php?group_id=274>

2023-09-29 perl v5.32.1