redmine

docker搭建gitlab、Redmine

喜你入骨 提交于 2019-12-17 01:50:00
本地使用windows,setting里面切换至linux 从Docker图标的右键菜单中选中 “Switch to Linux containers ...” Docker Engine运行在Linux容器模式 打开PowerShell,CMD ‘PowerShell’进入 查看docker环境:docker version 确认ok后使用以下命令搭建gitlab,他的运行环境主要由三部分组成 postgresql数据库 redis缓存服务 gitlab服务 使用 sameersbn/docker-gitlab来搭建GitLab服务,项目地址是https://github.com/samneersbn/docker-gitlab docker run --name gitlab-postgresql -d --env 'DB_NAME=gitlabhq_production' --env 'DB_USER=gitlab' --env 'DB_PASS=password' sameersbn/postgresql:9.4-12 docker run --name gitlab-redis -d sameersbn/redis:latest docker run --name gitlab -d --link gitlab-postgresql:postgresql --link

Generating a query fails for integration of Redmine and Mylyn in eclipse

青春壹個敷衍的年華 提交于 2019-12-14 03:47:30
问题 I installed the Redmine-Mylyn-Connector in Eclipse and had our admin install the Mylyn-Plugin for Redmine. The connection to Server seems to work: When I try to add a query, I receive a Server Error: . Unfortunately no more details are available. What are potential reasons for this error, and how can I solve the problem? 回答1: There might be useful details in the Error Log. Open the Error Log view ( Alt + Shift + Q then L , or use Window > Show View... ). I would clear the log first (using the

stack level to deep Rails 2.3.14

可紊 提交于 2019-12-13 21:03:16
问题 I'm developing a plugin for a management framework and when I start the webrick server in the development mode, a strange error raises(stack level too deep). It happens when an action (e.g. the show action) starts to render a template. Unfortunately i have no idea why this is happen. SystemStackError in Stories#show Showing vendor/plugins/stories/app/views/stories/show.rhtml where line #5 raised: stack level too deep Extracted source (around line #5): 5: link_to_if_authorized 'aa', {

install_driver(mysql) failed: Can't locate DBD/mysql.pm

…衆ロ難τιáo~ 提交于 2019-12-13 20:42:12
问题 Question is not repeated, first read the problem which I am facing, then mark it if it is repeated, will be helpful if repeatation of my question helps me in solving my problem, As I have been through all the links and solutions mentioned on other similar questions and problems but no luck. I am trying to setup redmine git on my ec2-aws-instance with help of below link https://docs.bitnami.com/installer/how-to/configure-advanced-integration-git-redmine/ I am able to properly connect redmine

Apache passenger stopped work after upgrade passenger from 5.1.12 to 5.20

柔情痞子 提交于 2019-12-13 16:22:45
问题 After upgrade Apache module Passenger from 5.1.12 to 5.2.0 Apache doesn't start properly and exit with the error # apache2ctl configtest Invalid command 'PassengerResolveSymlinksInDocumentRoot', perhaps misspelled or defined by a module not included in the server configuration After comment string in Apache virtual host # PassengerResolveSymlinksInDocumentRoot on Apache starts but Redmine doesn't work showing listing directoty/files insted of main page(another words can't find index file) OS:

Redmine - Ruby - Looking for the value of a custom field

陌路散爱 提交于 2019-12-13 15:49:35
问题 I checked IRC for redmine and was unable to get help. I was conflicted on weather to stick this on Superuser, ServerFault or here, but as my problem is technically programming oriented I decided to look for help here. We have a Mercurial repository system with a layout based on projects that addresses our needs. I wrote some shell scripts which work delightfully to manage the repository and put them in correct places etc. I am trying to call these scripts and pass them parameters from Redmine

Ruby on Rails Redmine Active Record::Record not found for select pages

五迷三道 提交于 2019-12-13 07:13:30
问题 I've recently started at a new company which uses Redmine and I've been asked to upgrade from 2.3.3 to 3.0.3 - complete novice with Ruby and Rails but it seems OK so far. I've installed an instance of 3.0.3 and updated the database using mysqldump. It seems to have largely worked, however random wiki pages on the new Redmine don't work - simply get a 404 error in the browser. Everything else has succeeded - all user credentials, config for the application, many projects, issues etc, and in

Redmine installation on MacOS Mojave 10.14.6

你。 提交于 2019-12-13 03:22:00
问题 I've been following this installation guide for Redmine http://www.redmine.org/projects/redmine/wiki/RedmineInstall. Everything went smoothly until step 5 in which I have to run bundle exec rake generate_secret_token Then I got this error rake aborted! LoadError: dlopen(/Library/Ruby/Gems/2.3.0/gems/mysql2-0.4.10/lib/mysql2/mysql2.bundle, 0x0009): dependent dylib 'libssl.1.0.0.dylib' not found for '/Library/Ruby/Gems/2.3.0/gems/mysql2-0.4.10/lib/mysql2/mysql2.bundle' - /Library/Ruby/Gems/2.3

actionview::template::error(undefined method 'html_safe' for nil:NilClass)

限于喜欢 提交于 2019-12-13 02:32:44
问题 I am a beginer in ruby and I want to write a plugin for redmine. I have written a plugin which was running since I use 'flash[:var]' in a controller of my plugin. Now when I want to access to all my pages I have an error message that I not understand. Ruby version : ruby 1.9.3p484 Rails version : rails 3.2.19 this is the error message thank you for your answers. EDIT: this is the application_helper 回答1: It seems like you ran into situations in which you have nil values in your flash . Imagine

redhat6_docker_redmine

試著忘記壹切 提交于 2019-12-13 02:10:16
nedit /etc/yum.repos.d/docker.repo & [dockerrepo] name=Docker Repository baseurl=https://yum.dockerproject.org/repo/main/centos/6/ enabled=1 gpgcheck=1 gpgkey=https://yum.dockerproject.org/gpg yum update yum install -y docker-engine docker run --name=redmine -d --link=postgresql-redmine:postgresql --publish=10083:80 --env='REDMINE_PORT=10083' --env='SMTP_HOST=smtp.exmail.qq.com' --env='SMTP_METHOD=async_smtp' --env='SMTP_PORT=465' --env='SMTP_USER=' --env='SMTP_PASS=' -e TZ="Asia/Shanghai" -v /etc/localtime:/etc/localtime:ro --volume=/srv/docker/redmine/redmine:/home/redmine/data sameersbn