Install Redmine 3.2.0 on Ubuntu 14.04

To install redmine 3.2.0 on Ubuntu 14.04, mainly follow the tutorial:

HowTo Install Redmine 3.0.x on Ubuntu 14.04 with Apache2, Phusion Passenger, MySQL, Subversion and Git (Gitolite)

During the install process, some problems are encountered. The rest page will explain these problems and the related solutions.

1) Set the source of RubyGems and bundle gem

After install the ruby gem, set rubygems source.

$ rvm install 2.1.4

$ gem sources --add https://ruby.taobao.org/ --remove https://rubygems.org/
$ gem sources -l
*** CURRENT SOURCES ***

https://ruby.taobao.org

After install the bundle, set bundle gem mirror source.

$ gem install bundle

$ bundle config mirror.https://rubygems.org https://ruby.taobao.org

2) Miss gem ‘rbpdf-font‘

When run “bundle install” the first time,

[email protected]:~/redmine$ bundle install --without development test postgresql sqlite

Your Gemfile.lock is corrupt. The following gem is missing from the DEPENDENCIES section: ‘rbpdf-font‘

Solution

[email protected]:~/redmine$ gem install rbpdf-font

[email protected]:~/redmine$ rm Gemfile.lock

[email protected]:~/redmine$ bundle install --without development test postgresql sqlite

3) You cannot specify the same gem twice with different version requirements

When run “bundle install” the second time,

[!] There was an error parsing `Gemfile`: You cannot specify the same gem twice with different version requirements.
You specified: redcarpet (~> 3.3.2) and redcarpet (~> 3.1.2). Bundler cannot continue.

#  from /opt/redmine/redmine-3.2.0/plugins/redmine_git_hosting/Gemfile:9
#  -------------------------------------------
#  gem ‘gitlab-grack‘, git: ‘https://github.com/jbox-web/grack.git‘, require: ‘grack‘, branch: ‘fix_rails4‘
>  gem ‘redcarpet‘, ‘~> 3.1.2‘

#  -------------------------------------------
. Bundler cannot continue.

Solution

comment the line: /opt/redmine/redmine-3.2.0/plugins/redmine_git_hosting/Gemfile:9

时间: 2024-08-04 18:20:50

Install Redmine 3.2.0 on Ubuntu 14.04的相关文章

【转】install intel wireless 3165 driver for ubuntu 14.04.3

[转]install intel wireless 3165 driver for ubuntu 14.04.3 Ubuntu 14.04.3 with 3.19 kernel can’t drive the new Intel Wireless 3165 AC with firmware version 13.This is about how to install the driver mannually. Today I changed a new Dell vastro 5000 ser

Install CUDA 6.0 on Ubuntu 14.04 LTS

Ubuntu 14.04 LTS is out, loads of new features have been added. Here are some procedures I followed to install CUDA 6.0 on my DELL Inspiron. First of all, Ubuntu need to be installed successfully, and the necessary libs are also need to installed: su

Install Redmine 3.2.0 On Ubuntu: Preparation

Update Ubuntu Source list cd /etc/apt sudo cp sources.list sources.list.save sudo vi sources.list Be aware of your Ubuntu's version, my ubuntu is 14.04. so my source list is as follows: deb http://mirrors.163.com/ubuntu/ trusty main restricted univer

install hadoop 2.6.0 on ubuntu 15.04

本文基本按照kinglau的方法安装,在此表示感谢. 附主要参考的三篇文章http://www.cnblogs.com/kinglau/p/3794433.html 单机模式安装 http://www.cnblogs.com/kinglau/p/3796164.html 伪分布式安装 http://www.cnblogs.com/kinglau/p/3802705.html eclipse开发环境配置

Ubuntu 14.04.3 LTS 配置 DNS Server

我们目的是用一台局域网机器完成 192.168.1.113 <-->cloudshield.com的解析,指定A记录和CNAME; 0.关于Ubuntu 14.04.2 LTS 下载.安装.更新这里就直接跳过了; 1.下载安装工具 bind9 sudo apt-get install bind9 DNS 配置文件在/etc/bind 目录中.安装bind9后会生成如下三个配置文件: named.conf: named.conf.options: named.conf.local: 其中 nam

[django] Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04

关键点1:chmod-socket=666 (mysite_uwsgi.ini) 关键点2 : 工程目录和虚拟环境目录搞清楚 几个参考: http://uwsgi-docs.readthedocs.io/en/latest/tutorials/Django_and_nginx.html https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-

Install postfix on Ubuntu 14.04.txt

Ubuntu 14.04上安装和配置Postfix邮件服务详细教程 Postfix: 用来接受和发送邮件的邮件服务器,正确说法应该叫邮件传送代理(Mail Transfer Agent,MTA),是邮件服务最重要的部分:    Dovecot: POP 和 IMAP 服务器,用来管理本地邮件目录以便用户能通过 Mail.app, Thunderbird, Mutt 等邮件客户端(又叫邮件用户代理 Mail User Agent, MUA)登陆和下载邮件:    Postgrey: 邮件灰名单工具

NVIDIA DIGITS 学习笔记(NVIDIA DIGITS-2.0 + Ubuntu 14.04 + CUDA 7.0 + cuDNN 7.0 + Caffe 0.13.0)

转自:http://blog.csdn.net/enjoyyl/article/details/47397505?from=timeline&isappinstalled=0#10006-weixin-1-52626-6b3bffd01fdde4900130bc5a2751b6d1 NVIDIA DIGITS-2.0 + Ubuntu 14.04 + CUDA 7.0 + cuDNN 7.0 + Caffe 0.13.0环境配置 引言 DIGITS简介 DIGITS特性 资源信息 说明 DIGI

Ubuntu 14.04(x64) 安装cuda8.0

由于之前已经在Ubuntu 14.04 x64上面安装cuda7.0+caffe, 并且已经配置好,caffe也已经跑通. 但是最近需要使用Torch,而Torch对cuda的要求是8.0,因此决定对cuda的版本进行升级,以满足Torch平台的需求. 而最新版的caffe也已经支持cuda8.0. 话不多说,开始安装cuda8.0. 显卡:GeForce GTX TITAN X 系统:Ubuntu 14.04(x_64) CUDA:cuda_8.0.61_375.26_linux.run cu