Hi,
As a registered user, I am trying to hotcopy my existing trac to trac JumpBox.
After copying, running trac upgrade I am receiving the error: "command failure: unsupported file format".
I suppose this is because my existing trac uses sqlite 3.4.0 and JB is different.
Any suggestions?
Importing existing trac/upgrading sqlite
Yeah, a hotcopy won't work if the sqlite version version changes. You will have to dump the sqlite database on your old one and import it into the JumpBox ... somewhat like shown here: http://trac.edgewall.org/wiki/TracMigrate
You may have to run trac-admin on the JumpBox once you have placed the SQLite db in the correct place and run upgrade and wiki-upgrade and resync.
So assuming you have made a sqlite dump (sqlite.sql) of your old trac, the things you need to do on the jumpbox are roughly this (this of course overwrites anything you have done on the jumpbox you perform this on):
I had the same issue when I imported from our legacy trac to a JumpBox. Plugins and svn hooks may need to be addressed as well. Also, if you are moving subversion, hotcopy probably won't work for you. You will have to use dump and load instead. Good luck.
Austin