转载网址:http://blog.csdn.net/nightload/archive/2010/02/03/5284002.aspx
安装 SVN
这个比较简单,去 这里下载源码
http://subversion.tigris.org/ 自己编译下装好就是了。
对于 SVN 的配置,建议查看如下连接,说的很详细,我也不在多说哈 ~
http://www.ibm.com/developerworks/cn/java/j-lo-apache-subversion/#N10250
不过,有一点,上边说的进行目录访问控制 ,这个比较麻烦,后来在网上找到一个小工具,配置起来很爽 ~~ 哈哈
去下边的地方下载 submin
会得到一个 web 管理界面,这样比自己手写 authz 的策略文件好多了。
为了安装 Redmine 到我们的 Linux 上,我们需要先安装如下 Ruby 应用:
1 、 Ruby
Ruby 的官方网站是 http://ruby-lang.org/ ,当前最新版本是 1.9.1 ,不过考虑到与 Redmine 的兼容性,我们最好安装 1.8.7 版。如果用 centos 5.4 也可以用 yum 里边的 1.8.5 版本。
1.8.7 版的 Ruby 下载链接: ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p248.tar.gz
安装 Ruby
- tar xfvj ruby-1.8.7.tar.bz2
- ./configure –prefix=/opt /ruby //根据自己情况更改路径
- make && make install
将 ruby 安装到你所指定的目录中。
安装完成后,记得设置 PATH 环境变量,加上你所指定的目录,以便运行 ruby 。
两种设置环境变量 PATH 的方法。第一种适用于为单一用户设置 PATH ,第二种是为全局设置 PATH 。
第一种方法:
在用户主目录下有一个 .bashrc 文件,可以在此文件中加入 PATH 的设置如下:
注意:每一个 path 之间要用 “ : “ 分隔。
第二种方法:
在 /etc/profile 中增加。
如果要使得计时生效 , 使用 source 命令
2 、 RubyGems
RubyGems 的官方网站是 http://www.rubygems.org/ ,当前最新版本是 1.3.5 ,下载地址:
http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
安装 RubyGems :
3 、 Rake
Rake 的官方网站是 http://rake.rubyforge.org/ ,可以让 gem 联网下载安装,也可以在官方网站下载后本地安装。
4 、 Ruby on Rails
Ruby on Rails 的官方网站是 http://rubyonrails.org/ ,同样使用 gem 联网下载安装
安装Redmine
1 、 下载并解开 Redmine
下载: http://rubyforge.org/frs/download.php/68515/redmine-0.9.0.tar.gz
2 、 创建数据库
- create database redmine character set utf8;
- create user 'redmine'@'localhost' identified by 'my_password';
- grant all privileges on redmine.* to 'redmine'@'localhost';
3 、设置 redmine 的数据库参数
进入 redmine 所在目录
Copy config/database.yml.example
to config/database.yml
打开 database.yml,找到以下字段:
4 、创建数据库结构
5 、载入默认配置
6 、运行并测试 redmine
# ruby script/server webrick -e production
或 # ruby /usr/local/redmine/script/server webrick -e production
停止 web 服务方法:在当前启动窗口按 ctrl+C
访问 http://ip:3000/
初始用户名 / 密码: admin/admin
这样启动后,启动窗口是不能关闭的,所以要使 Redmine 作为服务启动,需添加 -d 参数:
# ruby script/server webrick -e production -d
或 # ruby /usr/local/redmine/script/server webrick -e production – d
apache 与 redmine 整合
通过 http://ip:3000/ 这样访问 redmine 貌似很慢 , 要把 apache 与 redmine 整合效果就好很多了。不过 Apache 上面沒有 mod_rails ,我们需要安装后才能进行。方法也很简单。由于我们之前安装有 Ruby ,那麼安裝方式就是:
(就这个东西,搞的我浪费很多时间。。。之前没有装。。。死也运行不了。)
下边就是从官方文档找到的方法。英文好的朋友就可以直接看下边的文章了。
官方文档 URL : http://www.redmine.org/wiki/1/HowTo_configure_Apache_to_run_Redmine
1 、 首先要让 Apache 支持 cgi
2 、 配置 redmine 源码目录下的 public/dispath.cgi 脚本
3 、 编辑 Apache 主配置文件
- #vi /etc/httpd /conf/httpd.conf ( 这里假定 redmine 源码的目录放在 /var/html/redmine 下 )
- <VirtualHost *:80>
- ServerName redmine.xxxxxx.com
- ServerAdmin webmaster@xxxxxx.com
- DocumentRoot /var/html/redmine/public/ 你安装的 redmine 下的 public 目录
- ErrorLog logs/redmine_error_log
- <Directory "/var/html/redmine/public/">
- Options Indexes ExecCGI FollowSymLinks
- Order allow,deny
- Allow from all
- AllowOverride all
- </Directory>
- </VirtualHost>
相关连接:
http://www.ibm.com/developerworks/cn/java/j-lo-apache-subversion/
http://www.redmine.org/wiki/redmine/HowTos
http://www.redmine.org/wiki/1/HowTo_configure_Apache_to_run_Redmine
- cd /var/www/redmine
- cp public/dispatch.cgi.example public/dispatch.cgi
- #vi /etc/httpd/conf/httpd.conf
- Options Indexes FollowSymLinks ( 找到这一行,删除“ Indexes ”,并添加“ Includes ”、“ ExecCGI ” )
- Options Includes ExecCGI FollowSymLinks ( 允许服务器执行 CGI 及 SSI)
- #AddHandler cgi-script .cgi ( 找到这一行,去掉行首的“ # ”,并在行尾添加“ .pl ” )
- AddHandler cgi-script .cgi .pl ( 允许扩展名为 .pl 的 CGI 脚本运行 )
- #gem i passenger
- #passenger-install-apache2-module
- #rake redmine:load_default_data RAILS_ENV="production"
- #rake db:migrate RAILS_ENV="production"
- production:adapter: mysql 数据库类型 不要更改
- database: redmine 数据库名称
- host: localhost 主机: localhost
- username: root 数据库用户名
- password: 数据库密码
- encoding:utf8 数据库表编码 UTF8不要更改否则会乱码
- development:
- adapter: mysql
- database: redmine_development
- host: localhost
- username: root
- password:
- encoding: utf8
- # tar xfvz redmine-0.9.0.tar.gz
- #gem install rails
- #gem install rake
- #tar xfvz rubygems-1.3.1.tgz
- #cd rubygems-1.3.1
- #ruby setup.rb
- #source .bashrc
- PATH="$PATH:/home/zhengb66/bin"
- export PATH
- export PATH=”$PATH:/your path1/:/your path2/…..”