유지 관리 Rake 작업
GitLab 시스템 정보 수집, 구성 확인, 데이터베이스 인덱스 재빌드, 콜레이션 불일치 감지, 인덱스 복구 등 일반 유지 관리를 위한 Rake 작업을 설명합니다.
GitLab은 일반 유지 관리를 위한 Rake 작업을 제공합니다. GitLab 및 시스템 정보 수집 # 이 명령은 GitLab 설치 및 실행 시스템에 대한 정보를 수집합니다. 도움을 요청하거나 이슈를 보고할 때 유용할 수 있습니다. 멀티 노드 환경에서는 PostgreSQL 소켓 오류를 방지하기 위해 GitLab Rails를 실행하는 노드에서 이 명령을 실행하세요. Linux 패키지 설치: sudo gitlab-rake gitlab:env:info 자체 컴파일 설치: bundle exec rake gitlab:env:info RAILS_ENV=production 출력 예시: System information System: Ubuntu 20.04 Proxy: no Current User: git Using RVM: no Ruby Version: 2.7.6p219 Gem Version: 3.1.6 Bundler Version:2.3.15 Rake Version: 13.0.6 Redis Version: 6.2.7 Sidekiq Version:6.4.2 Go Version: unknown GitLab information Version: 15.5.5-ee Revision: 5f5109f142d Directory: /opt/gitlab/embedded/service/gitlab-rails DB Adapter: PostgreSQL DB Version: 13.8 URL: https://app.gitaly.gcp.gitlabsandbox.net HTTP Clone URL: https://app.gitaly.gcp.gitlabsandbox.net/some-group/some-project.git SSH Clone URL: git@app.gitaly.gcp.gitlabsandbox.net:some-group/some-project.git Elasticsearch: no Geo: no Using LDAP: no Using Omniauth: yes Omniauth Providers: GitLab Shell Version: 14.12.0 Repository storage paths: - default: /var/opt/gitlab/git-data/repositories - gitaly: /var/opt/gitlab/git-data/repositories GitLab Shell path: /opt/gitlab/embedded/service/gitlab-shell Gitaly - default Address: unix:/var/opt/gitlab/gitaly/gitaly.socket - default Version: 15.5.5 - default Git Version: 2.37.1.gl1 - gitaly Address: tcp://10.128.20.6:2305 - gitaly Version: 15.5.5 - gitaly Git Version: 2.37.1.gl1 GitLab 라이선스 정보 표시 # 이 명령은 GitLab 라이선스 에 대한 정보와 사용된 좌석 수를 보
