在Mountain Lion Server上查看文件源时Gitlab 500错误

2 投票
1 回答
876 浏览
提问于 2025-04-17 15:30

还有一个问题。

如果我试着在文件标签中查看一个文件的内容,什么也看不见。

我快速查看了一下生产日志(production.log),发现了以下内容:

Completed 500 Internal Server Error in 149ms

ActionView::Template::Error (Failed to get header.):
    9:   .file_content.code
    10:     - unless blob.empty?
    11:       %div{class: user_color_scheme_class}
    12:         = raw blob.colorize(formatter: :gitlab)
    13:     - else
    14:       %p.nothing_here_message Empty file
  app/models/tree.rb:6:in `colorize'
  app/views/tree/blob/_text.html.haml:12:in `_app_views_tree_blob__text_html_haml__2117416289591340656_70112288282740'
  app/views/tree/_blob.html.haml:9:in `_app_views_tree__blob_html_haml__810415587318185235_70112333949220'
  app/views/tree/_tree.html.haml:19:in `_app_views_tree__tree_html_haml___380187574798250597_70112300103920'
  app/views/tree/show.js.haml:3:in `_app_views_tree_show_js_haml__4018035125126620215_70112300060420'

经过一些搜索,我发现了一些Github上的问题,描述这是一个Python版本错误。

我通过 brew install python 安装了Python,应该是安装了正确的版本。至少我在控制台上看到的版本是对的。

Python 2.7.3 (default, Feb 11 2013, 16:34:20) 
[GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.24)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

我刚刚再次检查了 bundle exec rake gitlab:check RAILS_ENV=production

我觉得一切都没问题,除了有些和OS X相关的东西,比如初始化脚本的那些。

Checking Environment ...

gitlab user is in gitg group? ... yes
Has no "-e" in ~gitolite/.profile ... yes
Git configured for gitlab user? ... yes
Has python2? ... yes
python2 is supported version? ... yes

Checking Environment ... Finished

Checking Gitolite ...

Using recommended version ... no
  Try fixing it:
  We strongly recommend using the version pointed out in the installation guide.
  For more information see:
  doc/install/installation.md in section "Gitolite"
Repo umask is 0007 in .gitolite.rc? ... yes
Allow all Git config keys in .gitolite.rc ... yes
Config directory exists? ... yes
Config directory owned by gitolite:gitg ... yes
Config directory access is drwxr-x---? ... yes
Repo base directory exists? ... yes
Repo base directory is a symlink? ... no
Repo base owned by gitolite:gitg? ... yes
Repo base access is drwxrws---? ... yes
Can clone gitolite-admin? ... yes
Can commit to gitolite-admin? ... yes
post-receive hook exists? ... yes
post-receive hook up-to-date? ... yes
post-receive hooks in repos are links: ... 
Some-Customer / Some Repo ... ok
Some-Customer / Some Repo ... ok
Some-Customer / Some Repo ... ok
Git config in repos: ... 
Some-Customer / Some Repo ... ok
Some-Customer / Some Repo ... ok
Some-Customer / Some Repo ... ok

Checking Gitolite ... Finished

Checking Sidekiq ...

Running? ... yes

Checking Sidekiq ... Finished

Checking GitLab ...

Database config exists? ... yes
Database is SQLite ... no
All migrations up? ... yes
GitLab config exists? ... yes
GitLab config outdated? ... no
Log directory writable? ... yes
Tmp directory writable? ... yes
Init script exists? ... no
  Try fixing it:
  Install the init script
  For more information see:
  doc/install/installation.md in section "Install Init Script"
  Please fix the error above and rerun the checks.
Init script up-to-date? ... can't check because of previous errors
Projects have satellites? ... 
Some-Customer / Some Repo ... yes
Some-Customer / Some Repo ... yes
Some-Customer / Some Repo ... yes

Checking GitLab ... Finished

1 个回答

0

这可能不仅仅是Python版本的问题,就像在"问题2214"或"问题2272"中提到的那样。

最近的一些错误,比如问题2817,仍然没有得到解决。

正如在"问题2410"中提到的,务必要仔细检查这些检查项:

sudo -u gitlab -H bundle exec rake gitlab:check RAILS_ENV=production

撰写回答