一键安装 redmine on rhel6.4
一键安装 redmine on rhel6.4
一键式安装redmine省去了大量不必要的时间。下载:bitnami-redmine-2.5.2-1-linux-x64-installer.run。
https://bitnami.com/stack/redmine
安装过程如下:
[root@vm-redmine ~]# ./bitnami-redmine-2.5.2-1-linux-x64-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] : 5 ---------------------------------------------------------------------------- 欢迎来到 Bitnami Redmine Stack 安装程序。 ---------------------------------------------------------------------------- 选择您想要安装的组件,清除您不想安装的组件。当您准备继续时,点击前进。 Subversion [Y/n] :Y PhpMyAdmin [Y/n] :Y Redmine : Y (Cannot be edited) Git [Y/n] :Y 上述选择是否正确? [Y/n]: Y ---------------------------------------------------------------------------- 安装文件夹 请选择安装Bitnami Redmine Stack的文件夹 选择一个文件夹 [/opt/redmine-2.5.2-1]: ---------------------------------------------------------------------------- 创建管理员帐户 Bitnami Redmine Stack admin 用户创建 您的真实姓名 [User Name]: cl Email地址 [user@example.com]: ??????@qq.com 登录 [user]: master 密码 : 请确认密码 : ---------------------------------------------------------------------------- 缺省数据配置语言 选择缺省数据配置语言: [1] 保加利亚语 [2] 捷克语 [3] 德语 [4] 英语 [5] 西班牙 [6] 法语 [7] 希伯来语 [8] 意大利语 [9] 日语 [10] 朝鲜语 [11] 荷兰语 [12] 波兰语 [13] 葡萄牙语 [14] 葡萄牙语/巴西 [15] 罗马尼亚语 [16] 俄语 [17] 塞尔维亚语 [18] 瑞典语 [19] 中文 [20] 中文/繁体 请选择选项 [19] : 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. 用户名 []: ??????@qq.com 密码 : 重新输入 : SMTP 主机 []: smtp.qq.com SMTP端口 []: 25 安全连接 [1] 没有 [2] SSL [3] TLS 请选择选项 [3] : ---------------------------------------------------------------------------- 安装程序已经准备好将 Bitnami Redmine Stack 安装到您的电脑。 您确定要继续吗? [Y/n]: y ---------------------------------------------------------------------------- 正在安装 Bitnami Redmine Stack 至您的电脑中,请稍候。 正在安装 0% ______________ 50% ______________ 100% ######################################### ---------------------------------------------------------------------------- 安装程序已经将 Bitnami Redmine Stack 安装于您的电脑中。 启动Redmine应用程序。 [Y/n]: Y 信息: 访问 Bitnami Redmine Stack, 从你的浏览器访问http://localhost:80。 按 [Enter] 继续: [root@vm-redmine ~]#
安装好之后如果发现无法发邮件,登录qq邮箱,确定开启smtp。
游戏->设置->账户: POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务 开启服务: x POP3/SMTP服务 (如何使用 Foxmail 等软件收发邮件?) x IMAP/SMTP服务 (什么是 IMAP,它又是如何设置?) x Exchange服务 (什么是Exchange,它又是如何设置?) x CardDAV/CalDAV服务 (什么是CardDAV/CalDAV,它又是如何设置?) x (POP3/IMAP/SMTP/CardDAV/CalDAV服务均支持SSL连接。如何设置?)
我因为新申请了一个qq邮箱,而没有配置上面内容,出现错误:(end of file reached) 。导致折腾一天。
"redmine"测试邮件 发送邮件时发生错误 (end of file reached)
开启redmine:
# /opt/redmine-2.5.2-1/ctlscript.sh restart
访问:
http://vm-redmine:80
查看一下配置文件: /opt/redmine-2.5.2-1/apps/redmine/htdocs/config/configuration.yml
# default configuration options for all environments default: # Outgoing emails configuration (see examples above) email_delivery: delivery_method: :smtp smtp_settings: address: smtp.qq.com port: 25 domain: example.net authentication: :login user_name: ??????@qq.com password: ********
由于我是在内部网段安装的redmine,需要在对外服务的网段的nginx配置中指向它。nginx的配置如下:
1)在nginx的安装目录(/usr/local/nginx/)里,找到conf/nginx.conf,修改如下(在http {...} 里面加入include redmine.conf;):
... http { ... include redmine.conf; ... } ...
2)创建/usr/local/nginx/redmine.conf,内容如下:
# 指向内网redmine的web服务(192.168.10.100:80) # upstream redmine { server 192.168.10.100:80; } server { server_name vm-redmine; # /var/log/nginx 本地目录必须存在 access_log /var/log/nginx/redmine_access.log; error_log /var/log/nginx/redmine_error.log; location /redmine { try_files $uri @ruby; # @ruby 名字是任意的 } location @ruby { proxy_set_header Host $host; proxy_set_header X-Real_IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_read_timeout 300; proxy_connect_timeout 300; proxy_redirect off; proxy_pass http://redmine; # 指向 upstream redmine } }
============================= A nginx sample on ubuntu14.04 ============================
1) install nginx on ubuntu:
$ sudo apt-get install nginx
2) config files
/etc/nginx/nginx.conf
user www-data; worker_processes 4; pid /run/nginx.pid; events { worker_connections 768; # multi_accept on; } http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # server_tokens off; # server_names_hash_bucket_size 64; # server_name_in_redirect off; include /etc/nginx/mime.types; default_type application/octet-stream; ## # Logging Settings ## access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; ## # Gzip Settings ## gzip on; gzip_disable "msie6"; # gzip_vary on; # gzip_proxied any; # gzip_comp_level 6; # gzip_buffers 16 8k; # gzip_http_version 1.1; # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; ## # nginx-naxsi config ## # Uncomment it if you installed nginx-naxsi ## #include /etc/nginx/naxsi_core.rules; ## # nginx-passenger config ## # Uncomment it if you installed nginx-passenger ## #passenger_root /usr; #passenger_ruby /usr/bin/ruby; ## # Virtual Host Configs ## # PLEASE NOTE BELOW 2 LINES: include /etc/nginx/conf.d/*.conf; ######## include /etc/nginx/sites-enabled/*; } #mail { # # See sample authentication script at: # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript # # # auth_http localhost/auth.php; # # pop3_capabilities "TOP" "USER"; # # imap_capabilities "IMAP4rev1" "UIDPLUS"; # # server { # listen localhost:110; # protocol pop3; # proxy on; # } # # server { # listen localhost:143; # protocol imap; # proxy on; # } #}
/etc/nginx/conf.d/redmine.conf
# 指向内网redmine的web服务(192.168.122.21:80) # upstream redmine { server 192.168.122.21:80; } server { server_name vm-redmine; # /var/log/nginx 本地目录必须存在 access_log /var/log/nginx/redmine_access.log; error_log /var/log/nginx/redmine_error.log; location /redmine { try_files $uri @ruby; # @ruby 名字是任意的 } location @ruby { proxy_set_header Host $host; proxy_set_header X-Real_IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_read_timeout 300; proxy_connect_timeout 300; proxy_redirect off; proxy_pass http://redmine; # 指向 upstream redmine } }
3) make sure http 80 port is accessiable on redmine machine.
一键安装 redmine on rhel6.4的更多相关文章
- 一键安装 gitlab7 on rhel6.4 并设置邮件发送
一键安装 gitlab7 on rhel6.4 并设置邮件发送 世间本无事,庸人自扰之.书归正传,简短节说:gitlab是个好东西,可是安装手冊奇烂.尽管以前对比文档一步一步安装起来gitlab 6. ...
- 一键安装 redmine on windows 和发邮件设置
一键安装 redmine on windows 和发邮件设置 1)使用http://bitnami.org/stack/redmine一键安装redmine (windows). 2)修改下面的文件: ...
- BitNami一键安装Redmine(转)
1. 简介 对于一个新手,如果严格按照官方文档来安装redmine,我想会“疯”掉的.有没有一种简便的方法.有滴,那就是BitNami. BitNami提供redmine的一键安装程序,简单.易用.方 ...
- BitNami一键安装Redmine
1. 简单介绍 对于一个新手,假设严格依照官方文档来安装redmine,我想会"疯"掉的.有没有一种简便的方法.有滴,那就是BitNami. BitNami提供redmine的一键 ...
- 一键安装Redmine
群英汇·项目管理系统:http://www.ossxp.com/HelpCenter/00040_Redmine 其中包含中文说明及管理手册 一键安装下载:http://bitnami.org/sta ...
- 喵星之旅-狂奔的兔子-centos7一键安装redmine
一.安装环境 CentOS-7-x86_64-DVD-1908.iso 二.获取安装文件 从官网获取,在下载页面提供了多种安装,最下方是一键安装版本,里面有两种选择,一个是安装包,一个是虚拟机硬盘文件 ...
- Windows 一键安装 Redmine 部署及配置
Redmine的主要功能包括 添加和跟踪问题(或让您的团队完成). 使用Redmine内置的甘特图和日历计划和管理您的项目. 使用项目wiki和文档管理器来存储项目文档. 配置通知以保持有关问题状态和 ...
- redmine安装-BitNami 提供的一键安装程序
redmine安装-BitNami 提供的一键安装程序 博客分类: REDMINE redmine安装redmine一键安装bitNami redmine BitNami 提供re ...
- 一键安装gitlab7在rehl6.4上
一键安装gitlab7在rehl6.4上 参考原文: http://blog.csdn.net/ubuntu64fan/article/details/38367579 1 关于gitlab7 无论如 ...
随机推荐
- C++语言编译系统提供的内部数据类型的自动隐式转换
C++语言编译系统提供的内部数据类型的自动隐式转换规则如下: 程序在执行算术运算时,低类型自动隐式转换为高类型. 在函数调用时,将实参值赋给形参,系统隐式的将实参转换为形参的类型,并赋值给形参. 函数 ...
- BI Publisher(rtf)模板开发语法大全
Rtf模板开发例如背景,纹理分栏等等功能都能用word工具实现不再具体总结大家可以参考word教程..... 一.组 定义一个组的目的是告诉XMLPublisher对重复的数据行进行循环显示,也就 ...
- 使用shell操作HDFS
前提是都已经配置好了,可以参考hadoop伪分布安装:http://blog.csdn.net/jerome_s/article/details/25788967 linux的文件系统与hdfs的关系 ...
- Android之EditText imeOptions属性解析
在我们的手机中,虽然通常输入法软键盘右下角会是回车按键,但我们经常会看到点击不同的编辑框,输入法软键盘右下角会有不同的图标.例如: 点击浏览器网址栏的时候,输入法软键盘右下角会变成"GO& ...
- Swift基础之集成单选按钮横竖两种样式
最近马上放假所以比较忙,今天简单写一个项目中出现的单选按钮的横竖样式,PS:封装的是Swift语言样式 首先创建一个UIView的类,然后创建方法,最后调用类中的方法进行显示 //参数一:需要显示的内 ...
- J2EE进阶(六)SSH框架工作流程项目整合实例讲解
J2EE进阶(六)SSH框架工作流程项目整合实例讲解 请求流程 经过实际项目的进行,结合三大框架各自的运行机理可分析得出SSH整合框架的大致工作流程. 首先查看一下客户端的请求信息: 对于一个Web项 ...
- Aandroid TV 基于Leanback支持最新MD设计的TV开发框架
原文地址:http://blog.csdn.net/sk719887916 作者:skay 基于6.0最新的API 支持TV的框架 Android 6.0已完美支持TV开发,之前的5.0后Recycl ...
- Fedora 19: How to resize/extend (LVM) partition?
Enlarge the disk using fdisk fdisk -l (to see the partition layout, typically we're dealing with /de ...
- [译]百里挑一:21个优质Swift开源App
Mybridge AI根据代码质量和start排名从900多个开源项目中选出21个开源项目. 1:Firefox iOS [Official] Firefox iOS app built in Swi ...
- Android进阶(二十七)Android原生扰人烦的布局
Android原生扰人烦的布局 在开发Android应用时,UI布局是一件令人烦恼的事情.下面主要讲解一下Android中的界面布局. 一.线性布局(LinearLayout) 线性布局分为: (1) ...