Joshua Hughes wrote: > Good afternoon, > > I have a server running OpenSUSE and it has developed some issues that > result in the OS loading in read only mode. I have another server > running TFS and would like to know if it is possible for me to export > or recover my Trac Ticket history out in some format which I would be > able to use and ideally import into TFS if that is possible. > > Anyone have any thoughts? I think the OpenSUSe machine at this point > (given it is 9 years old) is on its way out and I just want to get my > data off. Unfortunatly since it is in read only mode services do not > start so trac is not running. > >
It all depends on the database backend you were using. If you used the default sqlite: backend (look for the database entry in the [trac] section of your <tracenv>/conf/trac.ini), then all your ticket data is in the SQLite database usually located in <tracenv>/db/trac.db. The whole environment is thus self-contained below <tracenv> and relocatable on another machine. If you were using another database backend (postgres: or mysql: ), then you have to extract a database backup using the tools corresponding to the database (pg_dump and mysqldump, respectively). -- Christian -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
