首先引用百度介绍下redmine:

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

在安装redmine前,我们需要先来看下各个组件的版本要求:

Redmine version Supported Ruby versions Rails version used
current trunk ruby 1.9.3, 2.0.01, 2.1, 2.2 Rails 4.2
trunk < r13482 ruby 1.8.72, 1.9.2, 1.9.3, 2.0.01, 2.1, jruby-1.7.6 Rails 3.2
3.0 ruby 1.9.3, 2.0.01, 2.1, 2.2 Rails 4.2
2.6 ruby 1.8.72, 1.9.2, 1.9.3, 2.0.01, 2.1, jruby-1.7.6 Rails 3.2

目前官网2.0以上版本最新为2.6.3,由上图可以看到我们需要选择哪个版本的组件。

1.CentOS 6.5下安装基本的软件环境

yum -y install libyaml-devel zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel gcc ruby-devel gcc-c++ make postgresql-devel ImageMagick-devel sqlite-devel perl-LDAP mod_perl perl-Digest-SHA

2.安装apache和mysql,并配置redmine数据库

rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm

yum install mysql-community-server httpd -y

安装完成后,service mysqld start,并进行相关数据库配置

mysql> create database redmine_db character set utf8;

Query OK, 1 row affected (0.00 sec)

mysql> create user 'redmine'@'localhost' identified by 'redmine';

Query OK, 0 rows affected (0.00 sec)

mysql> grant all privileges on redmine.* to 'redmine'@'localhost';

Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;

    

Query OK, 0 rows affected (0.00 sec)

3.iptables设置

如果服务器开了防火墙,我们需要进行相关设置

/sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

/sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT

4.安装php环境

yum -y install php php-mysql php-gd php-imap php-ldap php-mbstring php-odbc php-pear php-xml php-xmlrpc php-pecl-apc php-soap

5.安装ruby环境

\curl -L https://get.rvm.io | bash

source /etc/profile.d/rvm.sh

[root@usvr-126 ~]# source /etc/profile.d/rvm.sh

[root@usvr-126 ~]# rvm list known

# MRI Rubies

[ruby-]1.8.6[-p420]

[ruby-]1.8.7[-head] # security released on head

[ruby-]1.9.1[-p431]

[ruby-]1.9.2[-p330]

[ruby-]1.9.3[-p551]

[ruby-]2.0.0[-p643]

[ruby-]2.1.4

[ruby-]2.1[.5]

[ruby-]2.2[.1]

[ruby-]2.2-head

2.6版本需要ruby 支持的版本,在这我们选择1.9.3 稳定版

rvm install 1.9.3

[root@usvr-126 ~]# ruby -v

ruby 1.9.3p551 (2014-11-13 revision 48407) [x86_64-linux]

6.安装rubygems

yum -y install rubygems

7.安装redmine的apache支持,这样可以通过apache访问

gem install passenger

passenger-install-apache2-module

命令执行完后按照提示进行配置http:

vim /etc/httpd/conf.d/passenger.conf

  LoadModule passenger_module /usr/local/rvm/gems/ruby-1.9.3-p551/gems/passenger-5.0.5/buildout/apache2/mod_passenger.so

  <IfModule mod_passenger.c>

    PassengerRoot /usr/local/rvm/gems/ruby-1.9.3-p551/gems/passenger-5.0.5

    PassengerDefaultRuby /usr/local/rvm/gems/ruby-1.9.3-p551/wrappers/ruby

  </IfModule>

vim /etc/http/conf.d/redmine.conf

  <VirtualHost *:80>

      ServerName www.yourhost.com

      # !!! Be sure to point DocumentRoot to 'public'!

      DocumentRoot /somewhere/public    

      <Directory /somewhere/public>

        # This relaxes Apache security settings.

        AllowOverride all

        # MultiViews must be turned off.

        Options -MultiViews

        # Uncomment this if you're on Apache >= 2.4:

        #Require all granted

      </Directory>

  </VirtualHost>

由于我们的redmine还没有安装,因此路径暂时还不配置,等按完redmine后在来配置具体路径,注意root目录必须是redmine下的public目录。

8.安装redmine

wget http://www.redmine.org/releases/redmine-2.6.3.tar.gz

tar -zxvf redmine-2.6.3.tar.gz

mv redmine-2.6.3 /data

安装完毕后,我们需要在httpd的redmine.conf中进行修改:

<VirtualHost *:80>

      ServerName 192.168.3.126

      # !!! Be sure to point DocumentRoot to 'public'!

      DocumentRoot /data/redmine-2.6.3/public

  ErrorLog logs/redmine_error_log

      <Directory /data/redmine-2.6.3/public>

<span style="white-space:pre"> </span> Options Indexes ExecCGI FollowSymLinks

        Order allow,deny

        Allow from all

        # This relaxes Apache security settings.

        AllowOverride all

        # MultiViews must be turned off.

        Options -MultiViews

        # Uncomment this if you're on Apache >= 2.4:

        #Require all granted

      </Directory>

  </VirtualHost>

不要忘了service httpd restart

9.redmine相关配置

cd /data/redmine-2.6.3/public

cp database.yml.example database.yml

注意:官网中说MySQL database using ruby 1.9 (adapter must be set to mysql2)

vim database.yml

production:

  adapter: mysql2

  database: redmine

  host: localhost

  username: redmine

  password: "redmine"

  encoding: utf8

10.安装rails,安装过程中会出现很多问题,我们来一一解决吧。

cd /data/redmine-2.6.3

gem install bundler

bundle install

这里会报错:

An error occurred while installing rack-cache (1.2), and Bundler cannot continue.

Make sure that `gem install rack-cache -v '1.2'` succeeds before bundling.

我们按照提示安装所需组件

gem install rack-cache -v '1.2'

然后再次bundle install,报错:

An error occurred while installing nokogiri (1.6.6.2), and Bundler cannot continue.

Make sure that `gem install nokogiri -v '1.6.6.2'` succeeds before bundling.

按照提示gem install nokogiri -v '1.6.6.2',再运行bundle install,报错:

ERROR:  Error installing nokogiri:

 ERROR: Failed to build gem native extension.

按照提示:

If you are using Bundler, tell it to use the option:

  

    bundle config build.nokogiri --use-system-libraries

    bundle install

我们来输入命令:

bundle config build.nokogiri --use-system-libraries

  bundle install

再次报错:

An error occurred while installing json (1.8.2), and Bundler cannot continue.

Make sure that `gem install json -v '1.8.2'` succeeds before bundling.

按照提示安装 gem install json -v '1.8.2',然后再次bundle install

又报错:

An error occurred while installing railties (3.2.21), and Bundler cannot continue.

Make sure that `gem install railties -v '3.2.21'` succeeds before bundling.

按照提示安装 gem install railties -v '3.2.21',然后再次bundle install

又报错:

An error occurred while installing mysql2 (0.3.18), and Bundler cannot continue.

Make sure that `gem install mysql2 -v '0.3.18'` succeeds before bundling.

执行gem install mysql2 -v '0.3.18'报错:

checking for mysql.h... no

checking for mysql/mysql.h... no

-----

mysql.h is missing

我们执行yum install mysql-devel后成功安装,接着bundle install

报错:

An error occurred while installing redcarpet (2.3.0), and Bundler cannot continue.

Make sure that `gem install redcarpet -v '2.3.0'` succeeds before bundling.

按照提示安装 gem install redcarpet  -v '2.3.0',然后再次bundle install

Please report any bugs. See https://github.com/gemhome/rmagick/compare/RMagick_2-13-2...master and https://github.com/rmagick/rmagick/issues/18

ok,终于安装成功。

rake generate_secret_token

初始化redmine数据库表名

RAILS_ENV=production rake db:migrate

RAILS_ENV=production rake redmine:load_default_data

11.修改fastcgi‘

cd /data/redmine-2.6.3/public

mkdir plugin_assets

cp dispatch.fcgi.example dispatch.fcgi

cp htaccess.fcgi.example .htaccess

12.安装mod_fcgi

rpm --import https://Fedoraproject.org/static/0608B895.txt

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

rpm -ivh epel-release-6-8.noarch.rpm

yum -y install mod_fcgid

13.创建文件目录

mkdir -p /data/redmine-2.6.3/files

cd /data/redmine-2.6.3/config

cp configuration.yml.example configuration.yml

由于我们的files目录在redmine根目录下,因此configuration不用配置了,如果files目录在其他地方,我们需要

vim configuration.yml

attachments_storage_path: /var/redmine/files

14.最后启动redmine

cd /data/redmine-2

chown -R apache:apache redmine-2.6.3

chmod -R 755 redmine-2.6.3

service httpd restart

测试吧,让我们访问下看看

默认的用户名和密码都为admin

另外若apache访问不了,我们可以先用redmine自己的启动方式启动,然后ip:3000端口进行访问,如果访问成功,则redmine配置没问题,可能是apache的配置问题或漏改配置了

下面是redmine的启动方式,

[root@usvr-126 redmine-2.6.3]# cd /data/redmine-2.6.3  

[root@usvr-126 redmine-2.6.3]# ruby script/rails server webrick -e production

=> Booting WEBrick

=> Rails 3.2.21 application starting in production on http://0.0.0.0:3000

=> Call with -d to detach

=> Ctrl-C to shutdown server

[2015-03-28 01:09:30] INFO  WEBrick 1.3.1

[2015-03-28 01:09:30] INFO  ruby 1.9.3 (2014-11-13) [x86_64-linux]

[2015-03-28 01:09:30] INFO  WEBrick::HTTPServer#start: pid=14577 port=3000

好了,就介绍到这里吧,这是第二次配,相比第一次容易很多,根据错误提示来就可,希望能给大家带来帮助。

CentOS 6.5下Redmine的安装配置的更多相关文章

  1. CentOS 6.5下Zabbix的安装配置

    1.确保开发环境lamp已经安装 2.下载zabbix 官方下载地址:http://www.zabbix.com/download.php 选择和自己系统对应的版本,这里选择安装与Linux内核为2. ...

  2. CentOS && Ubuntu 环境下 Docker 的安装配置

    CentOS 7 install Docker Docker 支持的 centos 版本:CentOS 6.5(64-bit)或更高的版本 使用 yum 安装 1)确保 yum 包更新到最新 [roo ...

  3. CentOS 6.5 下HeartBeat的安装与配置

    CentOS 6.5 下HeartBeat的安装与配置 参考网站: http://wenku.baidu.com/link?url=BvqJatdx1m12PLil-7YA1zkM0yUOEO8OnN ...

  4. Windows和Centos下Docker的安装配置

    Windows和Centos下Docker的安装配置 windows环境下的安装(win10) 在Windows系统上需要利用toolbox来安装Docker,现在 Docker 有专门的 Win10 ...

  5. CentOS下使用yum安装配置和使用svn

    安装说明 系统环境:CentOS-6.3安装方式:yum install (源码安装容易产生版本兼容的问题)安装软件:系统自动下载SVN软件 检查已安装版本 ? 1 2 3 4 5 6 7 8 9 1 ...

  6. CentOS6下Haproxy的安装配置

    Haproxy 是一个开源的负载均衡和反向代理软件,其提供了高可用的网络服务.其一般是应用于web服务,但同时也能为SMTP和终端服务等提供可靠的支持. 1.下载安装haproxy wget ftp: ...

  7. Linux下Kafka单机安装配置方法(图文)

    Kafka是一个分布式的.可分区的.可复制的消息系统.它提供了普通消息系统的功能,但具有自己独特的设计.这个独特的设计是什么样的呢 介绍 Kafka是一个分布式的.可分区的.可复制的消息系统.它提供了 ...

  8. Centos 6.5下一个SNMP简单配置(snmp protocol v3,监控宝)

    Centos 6.5下一个SNMP简单配置(snmp protocol v3.监控宝) jom_ch@2014/7/25 1,安装 >yum -y install net-snmp net-sn ...

  9. CentOS 7.0下使用yum安装MySQL

    CentOS7默认数据库是mariadb,配置等用着不习惯,因此决定改成mysql,但是CentOS7的yum源中默认好像是没有mysql的.为了解决这个问题,我们要先下载mysql的repo源. 1 ...

随机推荐

  1. 基于python的七种经典排序算法(转)

    一.排序的基本概念和分类 所谓排序,就是使一串记录,按照其中的某个或某些关键字的大小,递增或递减的排列起来的操作.排序算法,就是如何使得记录按照要求排列的方法. 排序的稳定性:经过某种排序后,如果两个 ...

  2. javascript拼接html代码

    转自开源中国社区:http://www.oschina.net/code/snippet_94055_21640经常做jsp开发的朋友可能遇到一个情况,显示列表数据不是table,而是div或者其他很 ...

  3. 进程 vs. 线程

    我们介绍了多进程和多线程,这是实现多任务最常用的两种方式.现在,我们来讨论一下这两种方式的优缺点. 首先,要实现多任务,通常我们会设计Master-Worker模式,Master负责分配任务,Work ...

  4. C++编译过程与内存空间

     为什么须要知道C/C++的内存布局和在哪能够能够找到想要的数据?知道内存布局对调试程序很有帮助,能够知道程序运行时,究竟做了什么,有助于写出干净的代码.本文的主要内容例如以下: 源文件转换为可运 ...

  5. 【Cocos游戏实战】功夫小子第八课之游戏打包和相关问题说明

    至此,功夫小子系列的Cocos2d-x的实战文章就结束了. 源代码地址: https://github.com/SuooL/KungfuBoy 如须要资源请邮件我 1020935219@qq.com ...

  6. ps 教程

    http://www.ps-xxw.cn/ps_cs5_shipinjiaochen.html https://68ps.com/zt/CS6/ https://68ps.com/zt/CC/ htt ...

  7. 【BZOJ4325】NOIP2015 斗地主 搜索+剪枝

    [BZOJ4325]NOIP2015 斗地主 Description 牛牛最近迷上了一种叫斗地主的扑克游戏.斗地主是一种使用黑桃.红心.梅花.方片的A到K加上大小王的共54张牌来进行的扑克牌游戏.在斗 ...

  8. joisino's travel

    D - joisino's travel Time limit : 2sec / Memory limit : 256MB Score : 400 points Problem Statement T ...

  9. 前端 为什么我选择用框架而不是Jquery

    对于很多习惯用Jquery的前端甚至后端,都很不解,为什么不用Jquery而是框架.觉得框架学起来麻烦,成本高,今天我以我浅薄的知识来总结一下为什么前台开发选择用框架: 前台开发,主要的性能是卡在回流 ...

  10. [python数据结构] hashable, list, tuple, set, frozenset

    学习 cs212 unit4 时遇到了 tuple, list, set 同时使用的问题,并且进行了拼接.合并操作.于是我就被弄混了.所以在这里进行一下总结. hashable and unhasha ...