第一种方式 (一键安装):

准备工作:

1、最小化安装CentOS7

2、更新YUM源

3、更新系统关闭防火墙

yum -y update

systemctl stop firewalld

systemctl disable firewalld

4、如果出现下图的提示:请执行: yum install perl perl-Data-Dumper wget -y

5、下载一键安装包

cd /tmp

wget https://downloads.bitnami.com/files/stacks/redmine/3.4.5-1/bitnami-redmine-3.4.5-1-linux-x64-installer.run

添加执行权限:

chmod +x /tmp/bitnami-redmine-3.4.5-1-linux-x64-installer.run

安装过程如下

[root@youway bak]# ./bitnami-redmine-2.6.3-0-linux-installer.run

Language Selection

Please select the installation language

[1] English - English

[2] Spanish - Español

[3] Japanese - 日本語

[4] Korean - 한국어

[5] Simplified Chinese - 简体中文

[6] Hebrew - עברית

[7] German - Deutsch

[8] Romanian - Română

[9] Russian - Русский

Please choose an option [1] :

----------------------------------------------------------------------------

欢迎来到 Bitnami Redmine Stack 安装程序。

----------------------------------------------------------------------------

选择您想要安装的组件,清除您不想安装的组件。当您准备继续时,点击前进。

Subversion [Y/n] :n

PhpMyAdmin [Y/n] :n

Redmine : Y (Cannot be edited)

Git [Y/n] :n

上述选择是否正确? [Y/n]:y

----------------------------------------------------------------------------

安装文件夹

请选择安装Bitnami Redmine Stack的文件夹

选择一个文件夹 [/opt/redmine-2.6.3-0]: /var/www/redmine

警告: 选中的文件夹非空。请选择另外的文件夹

按 [Enter] 继续:

----------------------------------------------------------------------------

创建管理员帐户

Bitnami Redmine Stack admin 用户创建

您的真实姓名 [User Name]: admin

Email地址 [user@example.com]: youway@abc.com

登录 [user]: admin

密码 :

请确认密码 :

----------------------------------------------------------------------------

缺省数据配置语言

选择缺省数据配置语言:

[1] Bosnian

[2] 保加利亚语

[3] Catalan

[4] 捷克语

[5] Danish

[6] 德语

[7] 英语

[8] 西班牙

[9] 法语

[10] Galician

[11] 希伯来语

[12] Hungarian

[13] 意大利语

[14] 日语

[15] 朝鲜语

[16] Lithuanian

[17] 荷兰语

[18] Norwegian

[19] 波兰语

[20] 葡萄牙语

[21] 罗马尼亚语

[22] 俄语

[23] Slovak

[24] Slovenian

[25] 塞尔维亚语

[26] 瑞典语

[27] Turkish

[28] Ukrainian

[29] Vietnamese

[30] 中文

请选择选项 [30] :

----------------------------------------------------------------------------

Do you want to configure mail support? [y/N]:y

---------------------------------------------------------------------------

配置SMTP设置

This is required so your application can send notifications via email.

默认电子邮件提供商:

[1] GMail

[2] 自定义

请选择选项 [1] : 2

----------------------------------------------------------------------------

配置SMTP设置

This data is stored in the application configuration files and may be visible to

others. For this reason, it is recommended that you do not use your personal

account credentials.

用户名 []:

密码:

SMTP主机[]:

SMTP端口[]

安全链接:

【1】没有

【2】SSL

【3】TLS

----------------------------------------------------------------------------

安装程序已经准备好将 Bitnami Redmine Stack 安装到您的电脑。

您确定要继续吗? [Y/n]:y

----------------------------------------------------------------------------

正在安装 Bitnami Redmine Stack 至您的电脑中,请稍候。

正在安装

0% ______________ 50% ______________ 100%

#########################################

----------------------------------------------------------------------------

安装程序已经将 Bitnami Redmine Stack 安装于您的电脑中。

启动Redmine应用程序。 [Y/n]: y

信息: To access the Bitnami Redmine Stack, go to

http://127.0.0.1:80 from your browser.

按 [Enter] 继续:

然后再通过http://ipaddress,使用安装时的使用的用户名和密码,访问进行其它配置

默认安装目录:

/var/www/redmine

配置目录:

/var/www/redmine/apps/redmine/htdocs/config/configuration.yml

/var/www/redmine/apps/redmine/htdocs/config/settings.yml

可选操作:

取消数据库限制访问:

/var/www/redmine/mysql/my.cnf中取消

bind_address=127.0.0.1本地访问数据库:

mysql -u root -p -S /opt/redmine-2.6.3-0/mysql/tmp/mysql.sock -P 3306

重启:

/var/www/redmine/ctlscript.sh restart

第二种方式 (直接下载VM进行导入):

1、下载地址:

https://downloads.bitnami.com/files/stacks/redmine/3.4.6-0/bitnami-redmine-3.4.6-0-linux-debian-9-x86_64.ova

2、VM导入过程(略)

3、启动虚拟机至如下图面,提示初始WEB登录用户名和密码:登录系统的用户和密码默认为bitnami

4、登录WEB界面

5、参考文档:

https://docs.bitnami.com/virtual-machine/faq/#how-to-find-application-credentials

https://docs.bitnami.com/virtual-machine/faq/#how-to-connect-to-the-server-through-ssh

优化:

1、工具栏字体太小:

vi /var/www/redmine/apps/redmine/htdocs/public/stylesheets/application.css

第二行:

body { font-family: Verdana, sans-serif; font-size:px; color:#333; margin: 0; padding: 0; min-width: 900px; }

2、与LDAP集成(此环境是在microsft AD)

注意:base DN:区分大小 登录名属性区分大小写。redmine主机需要把DNS指向DC,或者配置HOST文件。

   
 

AD里面必须要填姓、名、邮箱字段,否则用户在首次使会报错,让手动填账号姓、名、邮箱地址

3、修改服务端口号

更改为3000为列,需要修改2个文件:

3.1:httpd.conf文件

vi /etc/httpd.conf下找到这行

#Listen 12.34.56.78:8081

Listen 8081

更改为

#Listen 12.34.56.78:3000

Listen 3000

在把下面

# If your host doesn't have a registered DNS name, enter its IP address here.

ServerName localhost:8081

更改为

# If your host doesn't have a registered DNS name, enter its IP address here.

ServerName localhost:3000

3.2 bitnami.conf文件

vi /var/www/redmine/apache2/conf/bitnami.conf

# Default Virtual Host configuration.

<IfVersion < 2.3 >

NameVirtualHost *:8081

NameVirtualHost *:443

</IfVersion>

<VirtualHost _default_:8081>

DocumentRoot "/var/www/redmine/apache2/htdocs"

<Directory "/var/www/redmine/apache2/htdocs">

Options Indexes FollowSymLinks

AllowOverride All

<IfVersion < 2.3 >

Order allow,deny                          

Allow from all

</IfVersion>

<IfVersion >= 2.3 >

Require all granted

</IfVersion>

</Directory>

更改为:

# Default Virtual Host configuration.

<IfVersion < 2.3 >

NameVirtualHost *:3000

NameVirtualHost *:443

</IfVersion>

<VirtualHost _default_:3000>

DocumentRoot "/var/www/redmine/apache2/htdocs"

<Directory "/var/www/redmine/apache2/htdocs">

Options Indexes FollowSymLinks

AllowOverride All

<IfVersion < 2.3 >

Order allow,deny

Allow from all

</IfVersion>

<IfVersion >= 2.3 >

Require all granted

</IfVersion>

</Directory>

Redmine 安装指南的更多相关文章

  1. centos+nginx+redmine+gitosis安装指南

    说明 这篇文章我现在的主要目的是记录自己安装redmine和gitosis的过程,可能写的有些糙,请各位读者见谅.我会在后面的时间里逐渐完善细节.但我想,这已经是网上迄今为止国内最详细的nginx+r ...

  2. Redmine(window7)安装

    首先要准备Ruby相关文件,Redmine是基于Ruby on rails开发的. 1.下载railsinstaller,我这时下载的版本是railsinstaller-2.2.1.exe,对应的官网 ...

  3. 开源Bug管理系统Redmine安装和使用心得

    最终忍受不了公司使用论坛+Excel来进行bug反馈和管理工作了,于是花了一个上午时间研究了下bug管理系统.这样一个bug管理系统能够轻松的查看bug新增了哪些,攻克了哪些.当前是谁,要在什么时间解 ...

  4. Ubuntu+Ruby+MySQL+Nginx+Redmine部署记录

    (2019年2月19日注:这篇文章原先发在自己github那边的博客,时间是2016年7月26日) 周五的时候老大布置了一个任务下来,要部署一个Redmine用于研发部,同时升级工作室的Redmine ...

  5. bitnami redmine版本由2.3.1升级至3.2.2过程

    环境: 操作系统为ubuntu13.**版本,非长期支持版. 安装目录:/opt/redmine-2.3.1-0/ 所有者用户:root 安装过程: 1. 备份2.3.1数据库 sudo /opt/r ...

  6. nGrinder安装指南

    NGrinder 由两个模块组成,其运行环境为 Oracle JDK 1.6 nGrinder controller  web 应用程序,部署在Tomcat 6.x 或更高的版本 nGrinder A ...

  7. postgresql pgsql最新版安装指南及数据存储路径更改及主从配置

    postgresql pgsql最新版安装指南及数据存储路径更改及主从配置 安装指南 首先在apt的list添加你当前系统版本对应的apt列表 目前官网有16.04,14.04,12.04 分别对应下 ...

  8. redmine整合GIT版本库

    redmine整合GIT版本库   服务器的环境: Ubuntu 11.10 64位 Redmine 1.4.5.stable.10943 git version 1.7.5.4 + gitolite ...

  9. Centos 6.5 部署 redmine 3.3

    验证ruby版本 如果有就卸载安装最新的 yum install gcc* openssl openssl-devel -y wget https://ruby.taobao.org/mirrors/ ...

随机推荐

  1. Django之FBV&CBV

    CBV与FBV是django视图中处理请求的两种方式 FBV FBV也就是function base views,字面意思函数基础视图,使用函数的方式处理请求url分发中添加的参数为视图处理函数名, ...

  2. Python学习--- requests库中文编码问题

    为什么会有ISO-8859-1这样的字符集编码 requests会从服务器返回的响应头的 Content-Type 去获取字符集编码,如果content-type有charset字段那么request ...

  3. Django基础必会套装

    from django.shortcuts import HttpResponse, render, redirect 1. HttpResponse('OK') --> 把字符串的OK转成二进 ...

  4. [python] 私有变量和私有方法

    1.在Python中要想定义的方法或者变量只在类内部使用不被外部调用,可以在方法和变量前面加 两个 下划线 #-*- coding:utf-8 -*- class A(object): name = ...

  5. 9.Solr4.10.3数据导入(post.jar方式和curl方式)

    转载请出自出处:http://www.cnblogs.com/hd3013779515/ 1.使用post.jar方式 java -Durl=http://192.168.137.168:8080/s ...

  6. Use MusicBrainz in iOS(三)查询专辑的完整信息

    版权声明:本文为博主原创文章.未经博主同意不得转载. https://blog.csdn.net/u010962810/article/details/24066737 本文讨论下通过专辑名获取专辑的 ...

  7. php isset+{} 判断字符串长度比strlen效率高

    PHP 变量后面加上一个大括号{},里面填上数字,就是指 PHP 变量相应序号的字符.例如:$str = 'hello';echo $str{0}; // 输出为 hecho $str{1}; // ...

  8. ethereum/EIPs-170 Contract code size limit

    eip title author type category status created 170 Contract code size limit Vitalik Buterin Standards ...

  9. 使用docker-compose快速构建wordpress

    前提必须是在docker的环境下,关于docker的安装可以参考(考虑目前国内使用ubuntu和centos的比较多,所以就列出这两个): Ubuntu16.04安装docker centos7之do ...

  10. switchable图片切换

    前提: 最近由于项目的需要jquery "switchable图片切换"效果 所以趁着周末有空时间研究下 ,以前工作都依赖于kissy框架,所以也没有综合的写过类似的,如下图所示效 ...