bundle exec命令的Gitlab安装错误

时间:2015-02-01 09:35:35

标签: ruby-on-rails gitlab

我正在关注this教程,以便在我的Centos vps上设置gitlab。

执行此命令时:

bundle exec rake gitlab:setup RAILS_ENV=production --trace

我收到此错误:

rake aborted!
libicui18n.so.54: cannot open shared object file: No such file or directory 
- /home/git/gitlab/vendor/bundle/ruby/2.1.0/extensions/x86_64-linux/
2.1.0-static/charlock_holmes-0.6.9.4/charlock_holmes/charlock_holmes.so
已安装

charlock_holmes。还有什么可能是这个问题?

1 个答案:

答案 0 :(得分:2)

查看comment in issue 7 of charlock_holmes是否适合您的情况 它在gitlabhd issue 8381中提到过。

  

我的(矫枉过导)解决方案是重新安装捆绑包:

mv /home/git/gitlab/vendor/bundle/ruby /home/git/gitlab/vendor/bundle/ruby.orig

(问题在于重新安装charlock_holmes

sudo -u git -H bundle install --deployment --without development test postgres aws

在您的情况下,您将重复gitlab安装过程。