2014-11-06 87 views
1

Befor更新GitLab到v7,我推了這個分支。現在 - 訪問被拒絕: Gitlab不推分支,拒絕訪問?

$ git push origin my_branch 
Access denied. 
fatal: Could not read from remote repository. 
Please make sure you have the correct access rights and the repository exists. 

當我檢查ssh_key,Gitlab知道我:

$ ssh -T [email protected] 
Welcome to GitLab, Nikolay Nozdrin-Plotnitsky! 

Gitlab檢查: $ sudo的-u git的-H捆綁高管耙gitlab:檢查RAILS_ENV =生產 實例方法「鎖定!」已經在ActiveRecord :: Base中定義,使用泛型幫助器或者設置StateMachine :: Machine.ignore_method_conflicts = true。 檢查環境...

Git configured for git user? ... yes 

Checking Environment ... Finished 

Checking GitLab Shell ... 

GitLab Shell version >= 1.9.6 ? ... OK (2.0.1) 
Repo base directory exists? ... yes 
Repo base directory is a symlink? ... no 
Repo base owned by git:git? ... yes 
Repo base access is drwxrws---? ... yes 
Satellites access is drwxr-x---? ... yes 
update hook up-to-date? ... no 
Could not find /home/git/gitlab-shell/hooks/update 
    Try fixing it: 
    Check the hooks_path in config/gitlab.yml 
    Check your gitlab-shell installation 
    For more information see: 
    doc/install/installation.md in section "GitLab Shell" 
update hooks in repos are links: ... can't check because of previous errors 
Running /home/git/gitlab-shell/bin/check 
Check GitLab API access: OK 
Check directories and files: 
     /home/git/repositories: OK 
     /home/git/.ssh/authorized_keys: OK 
Test redis-cli executable: redis-cli 2.4.14 
Send ping to redis server: PONG 
gitlab-shell self-check successful 

Checking GitLab Shell ... Finished 

Checking Sidekiq ... 

Running? ... yes 
Number of Sidekiq processes ... 1 

Checking Sidekiq ... Finished 

Checking LDAP ... 

LDAP is disabled in config/gitlab.yml 

Checking LDAP ... Finished 

Checking GitLab ... 

Database config exists? ... yes 
Database is SQLite ... no 
All migrations up? ... yes 
Database contains orphaned UsersGroups? ... no 
GitLab config exists? ... yes 
GitLab config outdated? ... no 
Log directory writable? ... yes 
Tmp directory writable? ... yes 
Init script exists? ... yes 
Init script up-to-date? ... yes 
projects have namespace: ... 
LPO/MKZD ... yes 
Projects have satellites? ... 
LPO/MKZD ... yes 
Redis version >= 2.0.0? ... yes 
Your git bin path is "/usr/bin/git" 
Git version >= 1.7.10 ? ... yes (1.7.10) 

Checking GitLab ... Finished 
$ sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production 
Instance method "lock!" is already defined in ActiveRecord::Base, use generic helper instead or set StateMachine::Machine.ignore_method_conflicts = true. 

System information 
System:   Debian 7.4 
Current User: git 
Using RVM:  no 
Ruby Version: 2.1.2p95 
Gem Version: 2.2.2 
Bundler Version:1.7.4 
Rake Version: 10.3.2 
Sidekiq Version:2.17.0 

GitLab information 
Version:  7.0.0 
Revision:  de9bf7d 
Directory:  /home/git/gitlab 
DB Adapter:  mysql2 
URL:   https://GitHub.lcl.loc/gitlab 
HTTP Clone URL: https://GitHub.lcl.loc/gitlab/some-project.git 
SSH Clone URL: [email protected]:some-project.git 
Using LDAP:  no 
Using Omniauth: no 

GitLab Shell 
Version:  2.0.1 
Repositories: /home/git/repositories/ 
Hooks:   /home/git/gitlab-shell/hooks/ 
Git:   /usr/bin/git 

什麼是問題?

幫幫我! 和對不起我的英語

+0

我已經添加到答案它在GitLab 7.4.2中工作的事實 – VonC 2014-11-07 09:59:28

回答

1

issue 8106,你必須檢查你的SSH密鑰的性質(個人密鑰,或部署一個)有時

,直接從服務器~git/authorized_keys可以幫助去除鍵(如this issue):你重新生成一個新的。

至於問issue 8260,看GitLab檢查:

cd /home/git/gitlab 
sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production 

OP confirms的的問題在GitLab 7.4+(7.4.2)中解決。
(以下升級過程「From 6.x or 7.x to 7.4」)

+0

感謝您的回覆! – scientistnik 2014-11-06 10:47:13