2014-11-06 69 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