redmine

docker安装常用软件,没有比我这里更全了!

笑着哭i 提交于 2020-01-07 02:24:21
Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的镜像中,然后发布到任何流行的 Linux或Windows 机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口。下面就介绍一些常用软件的安装,后期在补充更多! 大家可以关注公众号,程序员社群 docker安装mysql docker pull registry.cn-hangzhou.aliyuncs.com/wanggw/mysql:8.0 docker run --name mysql8 -d --restart=unless-stopped –log-driver json-file --log-opt max-size=1000 –log-opt max-file=1 -p 3307:3306 -e MYSQL_ROOT_PASSWORD=“root” -e TZ=“Asia/Shanghai” -v /data/wang/mysql/data/:/var/lib/mysql registry.cn-hangzhou.aliyuncs.com/wanggw/mysql:8.0 –character-set-server=utf8 --collation-server=utf8_general_ci docker 安装nginx docker pull

在ubuntu上安装redmine

邮差的信 提交于 2020-01-07 01:13:59
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 最近有一个新项目需要用到项目管理工具,最后准备采用redmine,经过一系列的折腾,终于把它安装完成了,现在将安装过程分享出来,为那些遇到同样问题的同学做个参考。 首先按照 官方网站 的步骤来安装,但是仍旧会碰到各种各样的问题。 1. 下载Redmine源代码 这里利用git下载: git clone https://github.com/redmine/redmine 2. 安装配置MySQL 已经安装过MySQL就不需要执行下面的命令: sudo apt-get install mysql-server mysql-client 配置redmine数据库和用户: mysql -u root -p CREATE DATABASE redmine CHARACTER SET utf8; CREATE USER 'redmine'@'localhost' IDENTIFIED BY 'my_password'; GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost'; 3. 数据库连接配置 首先要将redmine源码中 config/database.yml.example复制一份改名为config/database.yml。 cp config

Link SVN commits to issues

南笙酒味 提交于 2020-01-06 05:07:21
问题 I know I can use #number to to link the commit to an issue. But I'm looking for a way to change the issue status through the svn commit. I'm looking for something similar to what Trac have http://trac.edgewall.org/wiki/TimeTracking . If your svn comment is "This task is almos done (refs 123)" then it add the message on the issue's log. Does anybody knows if there is a way to do it? 回答1: Looks like this is in redmine OOTB: I'm looking for a way to change the issue status through the svn commit

Redmine EVM plugin is not working?

喜你入骨 提交于 2020-01-03 04:26:25
问题 Im a redmine user.EVM plugin in redmine is not working when the banner is enabled.Anyone please tell how to resolve this issue ? Started GET "/redmine/admin/plugins" for 10.222.185.22 at 2014-03-10 06:42:05 +0000 Processing by AdminController#plugins as HTML Current user: admin (id=1) Rendered admin/plugins.html.erb within layouts/admin (10.8ms) Rendered admin/_menu.html.erb (12.7ms) Rendered plugins/redmine_banner/app/views/banner/_project_body_bottom.html.erb (0.1ms) Rendered plugins

upload binary file to redmine with node

a 夏天 提交于 2020-01-02 16:52:25
问题 I try to upload a file to redmine with node, I can upload and attach text files, but when I try to upload a binary file I get the token but the file doesn't work. I tried with json, xml and binary, ascii, base64 encoding. I want upload binary files because I'm doing end to end test testing I want open Issues with screenshots, and upload a report. I'm using node-rest-client for service calling Could someone give me any suggestion to fix this problem? Thanks, I define the class RMClient var

SVN check-in to close redmine issue ticket [duplicate]

孤人 提交于 2020-01-02 09:54:18
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Automaticly close Redmine Task with commit comment Does anyone know how to force a link between SVN and a Redmine issues. Most of the things I’ve seen on the web are related to using bash scripts and pre-commit hook, but we have a windows installation, so was hoping for something that would work in windows with little change to the server (i.e. minimal installation of third party programs). For the moment, we

Internal bug tracking tickets - Redmine, Trac, or JIRA

微笑、不失礼 提交于 2020-01-02 02:48:12
问题 I've been looking at setting up Redmine, Trac, or JIRA to track issues. I want to be able to have my development team create internal tickets that are never seen by clients, while clients can create/edit tickets that are seen by the internal team. From the Trac documentation, you can set permissions to create or view tickets, but it doesn't seem to allow for viewing only certain tickets. It may be possible with Trac Fine Grained Permissions, but doesn't appear so. The Redmine documentation

docker应用安装之安装redmine

我的未来我决定 提交于 2019-12-30 23:10:31
执行 docker search redmine ,如截图所属可以找到所有关于redmine的版本及其信息 docker pull redmine , 从镜像厂库 拉取最新版的 redmine docker images , 查看镜像,如下图所示,redmine镜像为最新版本 因为redmine需要依赖数据库,本文采用的是mysql,因此首先需要再docker中安装mysql,docker安装mysql的教程参见一下链接, https://blog.csdn.net/wangqiubo2010/article/details/103407665 mysql安装成功之后,则需要确定是否已经建立了名称为 redmine 数据库,如果所安装的mysql中不存在 redmine数据库,则可以通过命令,或者通过navicat 连接数据库后则创建 redmine数据库,如下图所示。 docker run --name=redmine -d --link=mysql:mysql -p=3000:3000 -v=/root/redmine/files:/usr/src/redmine/files -e REDMINE_DB_HOST=mysql:3306 -e REDMINE_DB_USER=root -e REDMINE_DB_PASSWORD=071043 redmine ,安装并启动

Trac vs. Redmine [closed]

只愿长相守 提交于 2019-12-29 10:13:29
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I'm working in research and my bioinformatics work group needs a project management software for keeping track of multiple projects

Redmine3.3.0-1 Bundle install server 500 Error

核能气质少年 提交于 2019-12-25 12:55:14
问题 I installed BITNAMI RedMine 3.3.0-1. After installing version Plugins, 500 error appears on the server. I could not solve this. I did everything until bundle install, but I get an error. [enter image description here][1] Web application could not be started It looks like Bundler could not find a gem. Maybe you didn't install all the gems that this application needs. To install your gems, please run: bundle install If that didn't work, then the problem is probably caused by your application