Answers:
我已将服务器更新到GitLab 6.6.4,最后找到了无需SSH访问服务器即可远程获取GitLab版本的方法。
您应该登录才能访问以下页面:
https://your.domain.name/help
它显示类似于以下内容:
亚搏体育app 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
您可以通过URL,Web GUI和ReST API访问版本。
显示版本的HTML页面可以在浏览器中显示在 https://your-gitlab-url/help
。仅在您登录后显示版本。
如果您不想输入此URL,也可以从GitLab Web GUI中的菜单访问相同的HTML页面:
以任何用户身份登录,选择屏幕右上方的用户图标。选择设置>访问令牌。创建一个个人访问令牌并将其复制到剪贴板。
在Linux Shell中,用于curl
访问GitLab版本:
curl --header "PRIVATE-TOKEN: personal-access-token" your-gitlab-url/api/v4/version
如果您使用的是GitLab的自托管版本,则可以考虑运行此命令。
grep gitlab /opt/gitlab/version-manifest.txt
您有两个选择(登录后)。
{"version":"10.1.0","revision":"5a695c4"}
GitLab Community Edition 10.1.0 5a695c4
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
阅读本文,它将对您有所帮助。
gitlab-rake gitlab:env:info RAILS_ENV=production
cat /opt/gitlab/version-manifest.txt | grep gitlab-ce | awk'{print $ 2}'
awk '$1=="gitlab-ce"{print $2}' /opt/gitlab/version-manifest.txt
。
可以使用REST进行检索,请参见Version API:
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/version
有关身份验证,请参阅个人访问令牌文档。
我的版本是:12.2.0-ee,我尝试通过(https:// yourgitlab / help)尝试访问URL,但是我没有得到此信息。另一方面,我通过gitlab-rake将其成功添加到了命令行中:
sudo gitlab-rake gitlab:env:info
... GitLab信息版本:12.2.0-ee ...