Checkpoint has introduced a new mechanism to export smartcenter database ( from old migrate_export tool)
the script is in $MDS_FWDIR/scripts directory and is called migrate_server
see sk135172 for a complete reference
here is a brief list of commands to verify upgrade feasibility, export and import
First you may want to check you have the script (in later versions you have it by default)
Run in the Expert mode:
cpprod_util CPPROD_GetValue CPupgrade-tools-<Version> BuildNumber 1
<Version>
is the target version, to which you upgrade. One of these: R80.20, R80.20.M2, R80.30, R80.40, R81, R81.10
Example:cpprod_util CPPROD_GetValue CPupgrade-tools-R80.40 BuildNumber 1
The Verify command should be:
[Expert@HostName:0]# $MDS_FWDIR/scripts/migrate_server verify -skip_upgrade_tools_check -v <Target Version>
<Target Version>
is the target version, to which you upgrade. One of these: R80.20, R80.20.M2, R80.30, R80.40, R81, R81.10Example:
[Expert@HostName:0]# $MDS_FWDIR/scripts/migrate_server verify -skip_upgrade_tools_check -v R80.40
The Export command should be:
[Expert@HostName:0]# $MDS_FWDIR/scripts/migrate_server export -skip_upgrade_tools_check -v <Target Version> <Path and Name of the Export TGZ file>
Example:
[Expert@HostName:0]# $MDS_FWDIR/scripts/migrate_server export -skip_upgrade_tools_check -v R80.40 /var/log/Export_for_Upgrade_from_R8020_to_R8040.tgz
The Import command should be:
[Expert@HostName:0]# $MDS_FWDIR/scripts/migrate_server import -skip_upgrade_tools_check -v <Target Version> <Path and Name of the Exported TGZ file>
Example:
[Expert@HostName:0]# $MDS_FWDIR/scripts/migrate_server import -skip_upgrade_tools_check -v R80.40 /var/log/Export_for_Upgrade_from_R8020_to_R8040.tgz