HowTo install Redmine on CentOS 5

http://www.ossxp.com/doc/redmine/user_guide/user_guide.html

Assumptions

  • Apache is up and running
  • Apache has previously been used and works quite well
  • MySQL is up and running
  • MySQL has previously been used and works quite well
  • Your are logged as root
  • The next steps are done successively without errors

Steps to take

Install gem and passenger dependencies

yum -y install zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel mysql-devel

Get Ruby

cd ~/Downloads  # YOUR FOLDER OF CHOICE
ftp ftp.ruby-lang.org
cd /pub/ruby
get ruby-1.8.7.pXXX.tar.gz
tar zxvf ruby-1.8.7.pXXX.tar.gz ruby-1.8.7.pXXX
cd ruby-1.8.7.pXXX
./configure
make
make install
ruby -v
which ruby
cd ..

Get Gems 1.4 (does not work with Gems 1.5)

wget http://production.cf.rubygems.org/rubygems/rubygems-1.4.2.tgz
tar zxvf rubygems-1.x.tgz rubygems-1.x
cd rubygems-1.x
ruby setup.rb
gem -v
which gem
cd ..

Install Passenger

gem install passenger
passenger-install-apache2-module

Restart Apache

service httpd restart

Download Redmine

wget http://rubyforge.org/frs/download.php/75518/redmine-1.2.2.tar.gz 
# GET LATEST VERSION ON RUBYFORGE
tar zxvf redmine-1.2.2.tar.gz

Copy the folder to its HTTP document root folder

cp -av redmine-1.2.2/* /var/www/redmine

Configure Apache to host the documents

more information can be found here: HowTo configure Apache to run Redmine

Install Bundler

gem install bundler

Add the Bundler Boot and preinitializer code

For more info go to the Bundler site.

Create the Gemfile and register these gems in it

 cd /var/www/redmine/
touch Gemfile
vi gemfile
  • source "http://rubygems.org"
  • gem "rake", "0.8.3"
  • gem "rack", "1.1.0"
  • gem "i18n", "0.4.2"
  • gem "rubytree", "0.5.2", :require => "tree"
  • gem "RedCloth", "~>4.2.3", :require => "redcloth" # for CodeRay
  • gem "mysql"
  • gem "coderay", "~>0.9.7"
bundle install

Create the Redmine MySQL database

For MySQL:
start the mysql client and enter the following commands

create database redmine character set utf8;
create user 'redmine'@'localhost' identified by 'my_password';
grant all privileges on redmine.* to 'redmine'@'localhost'; 

For versions of MySQL prior to 5.0.2 - skip the 'create user' step and instead:

 grant all privileges on redmine.* to 'redmine'@'localhost' identified by 'my_password';

Configure database.yml (rename database.yml.example)

Set the production environment (optional)

Uncomment the following line in file redmine/config/environment.rb:

ENV['RAILS_ENV'] ||= 'production'

Generate the session store

RAILS_ENV=production bundle exec rake generate_session_store

Migrate the database models

RAILS_ENV=production bundle exec rake db:migrate

Load default data (optional)

RAILS_ENV=production bundle exec rake redmine:load_default_data

Follow instructions.

Rename dispatch CGI files

mv dispatch.cgi.example dispatch.cgi
mv dispatch.fcgi.example dispatch.fcgi
mv dispatch.rb.example dispatch.rb

Edit .htaccess file for CGI dispatch configuration

mv htaccess.fcgi.example .htaccess

Chown and Chmod files for read/write access for the Apache user

cd ..
chown -R apache:apache redmine-1.x
chmod -R 755 redmine-1.x

Redmine should be fully installed now and fully usable


Restart Remind Server

http://www.vitki.net/book/page/redmine-installation-centos-5


ps aux | grep ruby


kill -9 pid

ruby script/server -e production
ruby script/server -e production -d 后体运行

更多Plugins http://www.redmine.org/projects/redmine/wiki/Plugin_List


安装CKEditor Plugin

下载地址

 

https://github.com/ebrahim/redmine_ckeditor

Redmine CKEditor plugin

使用CKEditor代替redmine默认的text编辑功能

What is CKEditor?

CKEditor is a WYSIWYG text editor. See the official site for more details.

环境要求

  • 必须redmine1.1版本以上

Plugin installation and setup

  1. 下载压缩文件,解压缩,将解压缩文件修改为redmine_ckeditor,然后复制到redmine的vendor\plugins目录下

  2. 重启redmine

  3. 改变文本格式到ckeditor


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值