вторник, 1 марта 2016 г.

Установка GitLab 7.4 на CentOS 6

В основе моей установки была запись:
https://github.com/gitlabhq/gitlab-recipes/tree/master/install/centos

Однако, во время установки были некоторые НО.

1. Для работы с Percona необходимо установить не mysql-devel, а:
# yum install Percona-Server-devel-56

2. И установка GitLab Shell, там ошибка с версией.
Вместо:
# sudo -u git -H bundle exec rake gitlab:shell:install[v2.1.0] REDIS_URL=unix:/var/run/redis/redis.sock RAILS_ENV=production



Нужна версия 2.0.1:
# sudo -u git -H bundle exec rake gitlab:shell:install[v2.0.1] REDIS_URL=unix:/var/run/redis/redis.sock RAILS_ENV=production

И установить:
# sudo -u git -H bundle exec rake gitlab:shell:setup RAILS_ENV=production

Так же очень помогла проверка:
# sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production

Вот такие ошибки были при проблемной версии GitLab Shell:
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Полезные ссылки:
https://github.com/gitlabhq/gitlab-public-wiki/wiki/Trouble-Shooting-Guide
https://github.com/gitlabhq/gitlabhq/issues/3686

Комментариев нет:

Отправить комментарий