redmine安装过程
1、 下载相关包
?主要安装包、依赖包已经上传至华为网盘
2、 解压redmine1.4.4
3、 安装rubyinstall1.8.7-p334
4、 gem install rails -v=2.3.14 (需要联网)
6、 安装mysql
7、 create database redmine character set utf8;
create user 'redmine'@'localhost' identified by 'redmine123';
grant all privileges on redmine.* to 'redmine'@'localhost';
8、 在Redmine/config目录里将database.yml.example文件复制并改名为database.yml并编辑内容。
production: adapter: mysql database: redmine host: localhost username: redmine password: redmine123 encoding: utf8
9、 cd 到 redmine目录,gem install bundler
10、 bundle install --without development test rmagick postgresql sqlite
11、
复制http://instantrails.rubyforge.org/svn/trunk/InstantRails-win/InstantRails/mysql/bin/libmySQL.dll
libmySQL.dll到mysql\lib 以及 ruby\bin 下面
12、 rake generate_session_store
13、 set RAILS_ENV=production
rake db:migrate
14、
rake redmine:load_default_data RAILS_ENV="production"
15、 Ruby命令行模式下,到redmine目录执行以下命令启动服务
ruby script/server webrick -e production
16、
有人报怨说局域网访问redmine慢 这是由于Redmine自带的WebrickWeb发布的问题,需要使用Mongrel组件来替换Webrick。 Ruby命令行模式下 gem install mongrel (也可以离线安装,依赖包放到同一目录即可,版本1.1.5 gem install mongrel***1.1.5.gem -l)
修改 redmine 目录下的 Gemfile 文件,增加一行 gem "mongrel",然后用下面的命令启动(Ruby命令行模式下) ruby script/server mongrel -e production
浏览器中输入http://localhost:3000 进入系统主页面,是不是感觉快了很多.
17、 下载VisualSVN 配置 SVN版本库 http://www.visualsvn.com/server/download/
进入Redmine目录下Config,有文件“configuration.yml.example”,
复制该文件重命名“configuration.yml”,修改其中的SVN配置 scm_subversion_command: svn
再重启服务器,配置SCM,选用SVN设置库路径,就可以看到代码了。