回答:
サーバーをGitLab 6.6.4に更新し、サーバーにSSHアクセスせずにリモートでGitLabのバージョンを取得する方法を見つけました。
次のページにアクセスするには、ログインする必要があります。
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
URL、Web GUI、およびReST APIを介してバージョンにアクセスできます。
バージョンを表示するHTMLページは、ブラウザで表示できますhttps://your-gitlab-url/help
。バージョンは、サインインしている場合にのみ表示されます。
このURLを入力する必要がない場合は、GitLab Web GUIのメニューから同じHTMLページにアクセスすることもできます。
任意のユーザーとしてログインし、画面の右上にあるユーザーアイコンを選択します。[ 設定]> [アクセストークン]を選択します。個人用アクセストークンを作成し、クリップボードにコピーします。
Linuxシェルで、を使用curl
してGitLabバージョンにアクセスします。
curl --header "PRIVATE-TOKEN: personal-access-token" your-gitlab-url/api/v4/version
セルフホストバージョンのGitLabを使用している場合は、このコマンドの実行を検討してください。
grep gitlab /opt/gitlab/version-manifest.txt
2つの選択肢があります(ログイン後)。
{"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を使用して取得できます。バージョン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 ...