项目管理和缺陷跟踪系统 Redmine

1. Redmine 概述

Redmine 是用 Ruby 开发的基于 web 的项目管理软件,是用 ROR 框架开发的一套跨平台项目管理系统,支持多种数据库,有不少自己独特的功能,例如提供 wiki、新闻台等。还可以集成其他版本管理系统和 BUG 跟踪系统;例如 SVN、CVS、TD 等。这种 Web 形式的项目管理系统通过项目(Project)的形式把成员、任务(问题)、文档、讨论以及各种形式的资源组织在一起,项目成员参与更新任务、文档等内容来推动项目。

安装 Redmine 一些有用的知识点

  • Redmine 集成环境(Redmine packaged by Bitnami )

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://bitnami.com/stack/redmine/installer</pre>

  • 集成环境(Install Ruby on Rails)

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://railsinstaller.org/</pre>

RailsInstaller 向 Windows 开发者提供了一种便捷的方式以轻松、快速创建 Ruby on Rails 3 应用。到目前为止,Windows 开发者需要搭建好 Ruby、RubyGems、Rails 以及 SQLite 才能开始创建 Rails 应用。

  • 集成环境(rubyinstaller)

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://rubyinstaller.org/downloads/</pre>

  • 开发者准备Ruby环境搭建的所有的软件,并且必须考虑依赖性,进行安装。

2. 安装 railsinstaller

  • 下载railsinstaller

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://github.com/railsinstaller/railsinstaller-windows
https://railsinstaller.org/</pre>

下载下来是一个exe安装文件,直接双击执行;同意安装协议后,点击Next>

image.png

可以自定义安装目录,无需安装 Git,把 Git 的勾选去掉。

安装完后的目录结构如下

image.png

同时会在 C: 盘,生成一个 Sites 文件夹;该文件夹的作用,就是用来存放项目的。Redmine 项目的部署目录就是该目录。

3. 安装 Redmine

安装的 Redmine 的版本一定要跟 railsinstaller 的 Ruby对应,具体对应关系参考:

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://www.redmine.org/projects/redmine/wiki/RedmineInstall</pre>

从第二步安装的 railsinstaller 得知 Ruby 的版本是 2.3.3;所以只能下载 Redmine 4.1版本,及比这个版本低的版本

image.png
  • 下载 Redmine

下载地址如下

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://www.redmine.org/projects/redmine/wiki/Download</pre>

将 redmine-4.1.6.zip解压到 Sites 目录,并且将文件夹名称修改为redmine,如下:

image.png

4. 配置 Redmine

Redmine 依赖数据库,这里使用 MySQL 数据库;请自行安装 MySQL 数据库服务。

  • 创建数据库

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">create database redmine character set utf8mb4;</pre>

  • 修改配置文件

打开 C:\Sites\redmine\config ,找到database.yml.example配置文件;复制一份,然后重命名为database.yml,修改 production 部分配置。修改如下

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">production:
adapter: mysql2
database: redmine
host: localhost
username: root
password: root
port: 3306

Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7

encoding: utf8mb4</pre>

  • 安装 Redmine 依赖

打开 RailsInstaller 的命令行窗口 Command Prompt with Ruby and Rails,进入 redmine 项目目录

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">cd redmine</pre>

image.png

如果Ruby 2.5 或者更低版本的 Ruby;先安装 bundler

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">gem install bundler</pre>

安装 bundler 可能遇到如下错误

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">C:\Sites>gem install bundler
ERROR: Could not find a valid gem 'bundler' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=error: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)</pre>

可以参考

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">https://www.cnblogs.com/smallbottle/p/4000825.html</pre>

执行下面的命令安装 Redmine 的所有依赖项

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">bundle install --without development test</pre>

  • 创建 Session 密钥

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">bundle exec rake generate_secret_token</pre>

生成一个随机密钥,Rails 使用该密钥对存储会话数据的 cookie 进行编码,从而防止它们被篡改。重新启动后,生成新的秘密令牌会使所有现有会话无效。

  • 创建数据库表结构

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">set RAILS_ENV=production
bundle exec rake db:migrate</pre>

将在 MySQL 数据库创建 Redmine 的相关表机构

image.png
  • 设置数据库默认数据集

默认情况下是汉语的;所以不需要进行语言切换;如果需切换

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">set RAILS_ENV=production
set REDMINE_LANG=zh
bundle exec rake redmine:load_default_data</pre>

  • 启动 Redmine

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">bundle exec rails server webrick -e production</pre>

image.png

5. 访问 Redmine

Redmine的默认端口是3000,默认用户是 admin / admin,所以访问地址是

<pre class="cm-s-default" style="font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important; -webkit-font-smoothing: antialiased; margin: 0px; padding: 0px; font-size: 14px; overflow: auto; line-height: 1.45; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: rgb(89, 89, 89);">http://127.0.0.1:3000</pre>


image.png

登录后进行先进行秘密修改,修改后进入主界面。至此完成 Redmine 的安装。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容