以下、インストール手順
参考サイト
環境
TestLink のインストール
Ruby のインストールと redMine 使用のための準備
1. ここからインストーラをダウンロードする
2. インストーラの指示に従いインストールする
3. インストールが終わったらコマンドプロンプトを開く
4. rails をインストールする
> gem install rails --include-dependencies
5. Mysql に redMine 用の DB を作成する
C:\>C:\xampp\mysql\bin\mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.0.51a Source distributionType 'help;' or '\h' for help. Type '\c' to clear the buffer.
6. "C:\redmine\config"にある"database.yml.example"をリネームし"database.yml"とする
7. "database.yml"の"production"を適宜変更する。TestLink側で文字化けするため、"encoding: utf8"は必ず追加する。
production:
encoding: utf8
adapter: mysql
database: redmine
host: localhost
username: root
password:
8. redMine のフォルダへ移動し、コマンドを実行
cd C:\redmine
rake db:migrate RAILS_ENV="production"
rake redmine:load_default_data RAILS_ENV="production"
ruby script/server -e production
9. "http://localhost:3000/"へアクセスし、login : admin、password : adminでログインする