惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
N
Netflix TechBlog - Medium
腾讯CDC
C
Check Point Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
S
SegmentFault 最新的问题
F
Fortinet All Blogs
美团技术团队
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
F
Full Disclosure
Recorded Future
Recorded Future
D
DataBreaches.Net
博客园 - 【当耐特】
Martin Fowler
Martin Fowler
J
Java Code Geeks
I
InfoQ
Y
Y Combinator Blog
A
About on SuperTechFans
AI
AI
爱范儿
爱范儿
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Forbes - Security
Forbes - Security
W
WeLiveSecurity
M
MIT News - Artificial intelligence
雷峰网
雷峰网
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Simon Willison's Weblog
Simon Willison's Weblog
Schneier on Security
Schneier on Security
The GitHub Blog
The GitHub Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
aimingoo的专栏
aimingoo的专栏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
Latest news
Latest news
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
D
Docker
Recent Commits to openclaw:main
Recent Commits to openclaw:main
量子位
V2EX - 技术
V2EX - 技术
Project Zero
Project Zero

博客园 - 家中慢步

AKShare 高频请求东财数据接口的异常问题及解决方案 quartz 2.2.1 jdbc 连接池参数配置 httpclient发送request请求时设置header和timeout redmine 安装roadmap 插件 centos 下自动备份redmine 数据 centos 5.6 安装redmine 步骤 解决mysql 写入中文读出乱码的问题 SVN的Redmine集成插件 Quartz.net Tutorial Lesson 2 Redmine 导入AD用户 RedMine 邮件通知配置 teamlab与redmine试用对比报告 Redmine集成LDAP认证 jqgrid 属性说明 [原创]sql server inner join 效率测试 为sql server客户端连接添加别名 [转载]sql server T-SQL 区分字符串大小写 的两种方法 [转载]sql server 常用存储过程 Quartz.net Tutorial Lesson 1
Redmine 初体验
家中慢步 · 2011-10-27 · via 博客园 - 家中慢步

1. 下载install rails和redmine,rubygem 1.3.7.gem,
http://rubyforge.org/frs/download.php/29867/InstantRails-2.0-win.zip
http://rubyforge.org/frs/download.php/75099/redmine-1.2.1.zip
http://rubyforge.org/frs/download.php/70695/rubygems-update-1.3.7.gem


2.解压install rails,解压redmine到install rails/rails apps


3.InstantRails/rails_apps/redmine/config里的database.yml.example去掉.example


4.运行installrails.exe,然后打开mysql管理界面创建数据库http://127.0.0.1/mysql/,执行
-- 对应production
create database redmine character set utf8; 
-- 对应development
create database redmine_development character set utf8;
-- 对应test
create database redmine_test character set utf8;


5.打开命令行,进入redmine目录比如c:\installrails\webapps\redmine_1.2.1,初始化数据结构和基础数据,并设置默认数据库
rake db:migrate RAILS_ENV="production"  创建production(即redmine数据库)的数据结构
这里可能会出现很多问题...
1>安装1.3.7.gem,进入1.3.7.gem所在路径,然后执行
gem install --local rubygems-update-1.3.7.gem
update_rubygems
gem install rack -v=1.1.0
gem install -v=2.3.5 rails
gem install -v=0.4.2 i18n
gem uninstall rack
gem install rack -v=1.1.0
进入redmine\config\environment.rb,在最后一个end前面加入配置
config.action_controller.session = { :key => "_myapp_session", :secret => "4035ba51531c6c96a27e3dd41e3d4471" }
完成后,再执行rake db:migrate RAILS_ENV="production", 这时会看到开始建表
2>rake redmine:load_default_data RAILS_ENV="production" 设置默认的数据来源为production对应的库,并选择语言.


6.进入redmine路径,执行ruby script/server -e production, 启动服务,然后可以登录了,地址为http://xxx.xxx.xxx.xxx/3000