Unable to install gitlab on ubuntu 12.04

I uploaded the debit gitlab and rpm file (alien conversion). In all two cases, dpkg installation completes successfully.

But when I try to run

gitlab-ctl reconfigure

process stop (pause) in this line:

* ruby_block[supervise_redis_sleep] action run

I could stop it with ctrl + c shourtcut and after I was able to read this error

================================================================================
Error executing action `run` on resource 'ruby_block[supervise_redis_sleep]'
================================================================================

if I try to start by default

gitlab-ctl start or gitlab-ctl restart

I have this post:

warning: redis: unable to open supervise/ok: file does not exist

Can I solve this problem?

* PS the downloaded deb file is gitlab_6.6.4-omnibus-1.ubuntu.12.04_amd64.deb *

+4
source share
2 answers

() . :

sudo cp /opt/gitlab/embedded/cookbooks/runit/files/default/gitlab-runsvdir.conf /etc/init/
sudo initctl start gitlab-runsvdir
sudo gitlab-ctl reconfigure
+6

Source: https://habr.com/ru/post/1531182/


All Articles