中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
gitlab-rake常見用法-系統(tǒng)管理

GitLab本身有很多有用的rake命令,可以用于日常維護。

以下GitLab官網上gitlab-rake的常見用法。

文章目錄

    • 1. 收集GitLab和系統(tǒng)信息

    • 2. 顯示GitLab許可證信息

    • 3. 檢查GitLab配置

    • 4. 重建 authorized_keys 密鑰索引文件

    • 5. 清除redis緩存

    • 6. 測試TCP連接

    • 7. 顯示 database migrations狀態(tài)

    • 8. 運行未完成的database migrations

    • 9. 重建數據庫索引

    • 10. 導入 common metrics

1. 收集GitLab和系統(tǒng)信息

sudo gitlab-rake gitlab:env:info

輸出:

System information
System:
Proxy:		no
Current User:	gitUsing RVM:	no
Ruby Version:	2.7.5p203
Gem Version:	3.1.4
Bundler Version:2.1.4
Rake Version:	13.0.6
Redis Version:	6.0.16
Git Version:	2.33.1.
Sidekiq Version:6.3.1
Go Version:	unknown

GitLab information
Version:	14.6.0-jh
Revision:	46d2f0d5677
Directory:	/opt/gitlab/embedded/service/gitlab-rails
DB Adapter:	PostgreSQL
DB Version:	12.7
URL:		http://43.155.69.97
HTTP Clone URL:	http://43.155.69.97/some-group/some-project.git
SSH Clone URL:	git@43.155.69.97:some-group/some-project.git
Elasticsearch:	no
Geo:		no
Using LDAP:	no
Using Omniauth:	yesOmniauth Providers:

GitLab Shell
Version:	13.22.1
Repository storage paths:
- default: 	/var/opt/gitlab/git-data/repositories
GitLab Shell path:		/opt/gitlab/embedded/service/gitlab-shell
Git:		/opt/gitlab/embedded/bin/git

2. 顯示GitLab許可證信息

sudo gitlab-rake gitlab:license:info

輸出:

Today's Date: 2020-02-29
Current User Count: 30
Max Historical Count: 30
Max Users in License: 40
License valid from: 2019-11-29 to 2020-11-28
Email associated with license: user@example.com

3. 檢查GitLab配置

sudo gitlab-rake gitlab:check

上述檢查也可以拆分為:

gitlab-rake gitlab:gitlab_shell:check
gitlab-rake gitlab:gitaly:check
gitlab-rake gitlab:sidekiq:check
gitlab-rake gitlab:incoming_email:check
gitlab-rake gitlab:ldap:check
gitlab-rake gitlab:app:check

輸出:

Checking GitLab subtasks ...

Checking GitLab Shell ...

GitLab Shell: ... GitLab Shell version >= 13.22.1 ? ... OK (13.22.1)Running /opt/gitlab/embedded/service/gitlab-shell/bin/check
Internal API available: OK
Redis available via internal API: OK
gitlab-shell self-check successful

Checking GitLab Shell ... Finished

Checking Gitaly ...

Gitaly: ... default ... OK

Checking Gitaly ... Finished

Checking Sidekiq ...

Sidekiq: ... Running? ... yesNumber of Sidekiq processes (cluster/worker) ... 1/1

Checking Sidekiq ... Finished

Checking Incoming Email ...

Incoming Email: ... Reply by email is disabled in config/gitlab.yml

Checking Incoming Email ... Finished

Checking LDAP ...

LDAP: ... LDAP is disabled in config/gitlab.yml

Checking LDAP ... Finished

Checking GitLab App ...

Git configured correctly? ... yesDatabase config exists? ... yesAll migrations up? ... yesDatabase contains orphaned GroupMembers? ... no
GitLab config exists? ... yesGitLab config up to date? ... yesLog directory writable? ... yesTmp directory writable? ... yesUploads directory exists? ... yesUploads directory has correct permissions? ... yesUploads directory tmp has correct permissions? ... yesSystemd unit files or init script exist? ... skipped (omnibus-gitlab has neither init script nor systemd units)Systemd unit files or init script up-to-date? ... skipped (omnibus-gitlab has neither init script nor systemd units)Projects have namespace: ...
GitLab Instance / Monitoring ... yestest / python ... yesRedis version >= 5.0.0? ... yesRuby version >= 2.7.2 ? ... yes (2.7.5)Git version >= 2.33.0 ? ... yes (2.33.1)Git user has default SSH configuration? ... yesActive users: ... 1
Is authorized keys file accessible? ... yesGitLab configured to store new projects in hashed storage? ... yesAll projects are in hashed storage? ... yesElasticsearch version 7.x (6.4 - 6.x deprecated to be removed in 13.8)? ... skipped (elasticsearch is disabled)Checking GitLab App ... Finished


Checking GitLab subtasks ... Finished

4. 重建 authorized_keys 密鑰索引文件

sudo gitlab-rake gitlab:shell:setup

輸出:

This task will now rebuild the authorized_keys file.
You will lose any data stored in the authorized_keys file.
Do you want to continue (yes/no)? yes

5. 清除redis緩存

sudo gitlab-rake cache:clear

正常無輸出。

6. 測試TCP連接

sudo gitlab-rake gitlab:tcp_check[gitlab.com,80]

輸出:

TCP connection from 172.17.0.2:42370 to 172.65.251.78:80 succeeded

7. 顯示 database migrations狀態(tài)

sudo gitlab-rake db:migrate:status

輸出:

database: gitlabhq_production

 Status   Migration ID    Migration Name
--------------------------------------------------
   up     20181228175414  Init schema
   up     20201211090634  Schedule populate finding uuid for vulnerability feedback
   up     20201211145950  Add bloat estimate to reindex action
   up     20201214000000  Change mr allow maintainer to push default
   up     20201214032220  Add has external wiki trigger
   up     20201214084105  Add expiration policy completed at to container repositories
   up     20201214111858  Add container registry cleanup tags service max list size to application settings
   up     20201214112752  Add app settings container reg cleanup tags service max list size constraint
   up     20201214113729  Add custom mapping columns to http integrations
   up     20201214184020  Add epic board list
   up     20201215084652  Delete mock deployment service records
   up     20201215132151  Change unique index on security findings
   up     20201215205404  Create namespace package settings
   up     20201216151616  Add squash commit sha index
   up     20201216154457  Add devops adoption snapshot range end	...........

8. 運行未完成的database migrations

sudo gitlab-rake db:migrate

正常無輸出。

9. 重建數據庫索引

sudo gitlab-rake gitlab:db:reindex

輸出:

This feature (database_reindexing) is currently disabled.

10. 導入 common metrics

sudo gitlab-rake metrics:setup_common_metrics

正常無輸出。

本站僅提供存儲服務,所有內容均由用戶發(fā)布,如發(fā)現有害或侵權內容,請點擊舉報
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Gitlab完美安裝【CentOS6.5安裝gitlab
用GitLab搭建私有GitHub
懶惰的程序員: gitorious
在Windows下安裝Redmine,上海軟件開發(fā)|上海軟件開發(fā)公司|軟件定制|ERP開發(fā)...
搭建 Linux 下 GitLab 服務器
jenkins+gitlab鉤子+shell腳本基于git的tag實現App增量更新
更多類似文章 >>
生活服務
熱點新聞
分享 收藏 導長圖 關注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點擊這里聯系客服!

聯系客服