Follow the instructions to convert an older repository to TSS v15 on UNIX.
To convert an older repository server to TSS 15.x
In the system where you installed TSS v15.x, use the copy command to point to the source repository. For example:
/home/username/TSS15/metabase/bin/mtb_admin -user
madmin-password
madmin-copy /home/username/data13.0/
where data13.0 is the path to the source repository.
Start the repository conversion:
/home/username/TSS15/metabase/bin/mtb_admin -user
madmin-password
madmin-convert ddl convert.ddl
where user is the TSS v15.x repository administrator ID and password is the password associated with that ID.
Note: If you are using Windows-authentication with TSS, you must log in with your fully-qualified user name.A series of messages display on the console, as shown below.
Converting metabase "_control" Converted metabase "_control" Converting metabase "meta1152" Converted metabase "meta1152" Upgrading metabases Upgraded metabases
When the conversion is complete, restart the TSS Scheduler service.
/home/username/TSS15/metabase/bin/scheduler -start
Sample
#!/bin/sh
/home/username/TSS15/metabase/bin/scheduler -stop
echo "Deleting 15 metabase"
rm -rf /data/discovery/engg/username/DATA/metabase
rm -rf /data/discovery/engg/username/DATA/logging
rm -rf /data/discovery/engg/username/DATA/logs
rm -rf /data/discovery/engg/username/DATA/tmp
rm -rf /data/discovery/engg/username/DATA/license.db
echo "Copy & upgrade source metabase to v15..."
/home/username/TSS15/metabase/bin/mtb_admin -usermadmin-passwordmadmin-copy /home/username/data13.5.1/
echo "Running conversion..."
/home/username/TSS15/metabase/bin/mtb_admin -usermadmin-passwordmadmin-convert ddl convert.ddl
/home/username/TSS15/metabase/bin/scheduler -start