如何检查Gitlab的版本?
如何检查服务器上安装了哪个版本的Gitlab?
我是在Gitlab changelog中指定的版本:
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG.md
例如:“6.5.0”,“6.4.3”等
这只能通过terminal完成?
有没有办法做到这一点远程(浏览器而不是terminal)?
我已经将我的服务器更新到GitLab 6.6.4,并最终find了在没有SSH访问服务器的情况下远程获取GitLab版本的方法。 您应该login才能访问以下页面。
https://your.domain.name/help
它显示了类似于:
GitLab 6.6.4 42e34ae
GitLab是开源软件,可以在代码上进行协作。
…
等等
对于综合版本:\
sudo gitlab-rake gitlab:env:info
例:
System information System: Ubuntu 12.04 Current User: git Using RVM: no Ruby Version: 2.1.7p400 Gem Version: 2.2.5 Bundler Version:1.10.6 Rake Version: 10.4.2 Sidekiq Version:3.3.0 GitLab information Version: 8.2.2 Revision: 08fae2f Directory: /opt/gitlab/embedded/service/gitlab-rails DB Adapter: postgresql URL: https://your.hostname HTTP Clone URL: https://your.hostname/some-group/some-project.git SSH Clone URL: git@your.hostname:some-group/some-project.git Using LDAP: yes Using Omniauth: no GitLab Shell Version: 2.6.8 Repositories: /var/opt/gitlab/git-data/repositories Hooks: /opt/gitlab/embedded/service/gitlab-shell/hooks/ Git: /opt/gitlab/embedded/bin/git
获取有关GitLab及其运行系统的信息:
bundle exec rake gitlab:env:info RAILS_ENV=production
gitlab输出示例:env:info
System information System: Arch Linux Current User: git Using RVM: yes RVM Version: 1.20.3 Ruby Version: 2.0.0p0 Gem Version: 2.0.0 Bundler Version:1.3.5 Rake Version: 10.0.4 GitLab information Version: 5.2.0.pre Revision: 4353bab Directory: /home/git/gitlab DB Adapter: mysql2 URL: http://gitlab.arch HTTP Clone URL: http://gitlab.arch/some-project.git SSH Clone URL: git@gitlab.arch:some-project.git Using LDAP: no Using Omniauth: no GitLab Shell Version: 1.4.0 Repositories: /home/git/repositories/ Hooks: /home/git/gitlab-shell/hooks/ Git: /usr/bin/git
阅读这篇文章 ,它会帮助你。
OP还询问如何在浏览器中显示GitLab版本:
- login到GitLab
- 点击左侧GitLab菜单中的帮助
cd / opt / gitlab
cat version-manifest.txt
例:
gitlab-ctl 6.8.2-omnibus
gitlab-rails v6.8.2
目前的gitlab版本是6.8.2
cat /opt/gitlab/version-manifest.txt | grep gitlab -ce | awk'{print $ 2}'
如果您是pipe理员,并且想要查看Gitlab版本(以及您不知道的更多信息),请单击扳手/pipe理菜单图标,在组件下可以看到很多,特别是在使用Omnibus时 。