User Tools

Site Tools


project_management:redmine

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
project_management:redmine [2010/06/09 15:03] 172.26.14.218project_management:redmine [2010/06/09 15:58] 172.26.14.218
Line 135: Line 135:
  
 http://ip/redmine http://ip/redmine
 +
 +====== Migrate Trac projects ======
 +  * Reference: http://www.redmine.org/wiki/1/RedmineMigrate
 +
 +===== Install sqlite3-ruby =====
 +My Trac 11.x databases were in sqlite3 format, so I needed the ''sqlite3-ruby'' gem:
 +<code># gem install sqlite3-ruby</code>
 +
 +===== Migrate project =====
 +From the Redmine directory:
 +<code># rake redmine:migrate_from_trac RAILS_ENV="production"
 +(in /opt/redmine-0.9.4)
 +
 +WARNING: a new project will be added to Redmine during this process.
 +Are you sure you want to continue ? [y/N] y
 +
 +Trac directory []: /var/lib/trac/sampler
 +Trac database adapter (sqlite, sqlite3, mysql, postgresql) [sqlite]: sqlite3
 +Trac database encoding [UTF-8]: 
 +Target project identifier []: sampler
 +
 +Migrating components..
 +Migrating milestones....
 +Migrating custom fields
 +Migrating tickets
 +Migrating wiki........
 +
 +Components:      2/2
 +Milestones:      4/4
 +Tickets:         0/0
 +Ticket files:    0/0
 +Custom values:   0/0
 +Wiki edits:      8/8
 +Wiki files:      0/0</code>
 +
 +Make sure you don't use spaces in the project identifier; this is part of the URL path for the Redmine interface.
  
 ====== Active Directory Authentication ====== ====== Active Directory Authentication ======
Line 141: Line 177:
   * Reference: http://attic.ist.unomaha.edu/blogs/zac/2010/05/24/setting-up-redmine-or-php-with-ldapactive-directory-using-ldp/   * Reference: http://attic.ist.unomaha.edu/blogs/zac/2010/05/24/setting-up-redmine-or-php-with-ldapactive-directory-using-ldp/
   * Reference: http://www.rhonabwy.com/wp/2009/12/24/debugging-active-directory-ldap-authentication-in-redmine/   * Reference: http://www.rhonabwy.com/wp/2009/12/24/debugging-active-directory-ldap-authentication-in-redmine/
 +  * Reference: http://www.redmine.org/wiki/1/RedmineLDAP
  
 ===== Patch ===== ===== Patch =====