Migration from sipxchange 2.4

For the configuratin system, the only data that is migratable from SIPxchange 2.4 is the database.

SIPxchange 2.4 Backup

  1. For existing sipXchange 2.4 config server installations, you can make a backup of the database by running the following command. This database can be used to directly in a 2.6 installation:
        su - postgres -c "vacuumdb --all --analyze; pg_dump -f /var/lib/pgsql/pds-backup.db -F p PDS"
      
    Where file /var/lib/pgsql/pds-backup.db is a backup of your database.

sipXconfig 2.6 Restoration

  1. Copy the database backup to your sipXconfig 2.6 installed system and run the following commands:
       sipxdbmgr --drop PDS
       createdb -U sipxchange --encoding=UNICODE PDS
       psql -U postgres -d PDS < pds-backup.db
    
Last modified: Fri Oct 8 15:02:47 EDT 2004