Questions tagged «gitlab»

Gitlab是自托管的Git管理软件。

8
Gitlab无法使用SSH密钥
我在Gitlab上遇到问题。我使用以下指南来安装和配置Gitlab https://github.com/gitlabhq/gitlab-recipes/blob/master/install/centos/README.md。安装似乎一切顺利。Web应用程序似乎运行良好。但是我无法克隆,拉动,推入,基本上我基本上不能使用Gitlab。尝试通过SSH克隆时,我已经看到403错误,HTTP错误和权限被拒绝。 我确保我的私钥在Windows和OS X上都正确设置。我可以在服务器上看到公钥。我将以下内容添加到〜/ .ssh.config中的配置文件中 Host {hostname} User git Hostname {hostname} PreferredAuthentications publickey IdentityFile C:/Users/{username}/.ssh/id_rsa 这是我在/ var / log / secure中看到的 Jan 14 17:31:48 dev_version_control sshd[3696]: Connection closed by 192.168.17.113 Jan 14 17:32:18 dev_version_control sshd[3700]: Connection closed by 192.168.17.113 /var/log/message当我尝试使用git或ssh时,没有角色 我不确定从这里去哪里。有什么建议? 我不知道您使用git用户名的SSH是什么意思。我使用的指南没有为git用户创建密码,并指出不能使用该用户登录。
10 ssh  git  gitlab 

5
Gitlab:红宝石“捆绑”工艺极大地消耗了内存
我在小型Ubuntu LTS 16.04上运行的Gitlab安装出现问题。我必须指出,我对Linux或Gitlab没有太多的经验。 我的Gitlab安装包含几个个人项目(只有4个)运行正常,尽管推送非常缓慢,有时会失败。此外,访问Web界面的速度非常慢。我检查了服务器,发现最多使用了总内存的96%。罪魁祸首似乎是捆绑过程。 top - 00:15:30 up 59 days, 16:17, 1 user, load average: 0.00, 0.01, 0.09 Tasks: 160 total, 1 running, 159 sleeping, 0 stopped, 0 zombie %Cpu(s): 0.5 us, 0.2 sy, 0.0 ni, 99.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 72.4/2048272 …

1
GitLab Active Directory身份验证:无结果且无身份验证
我正在尝试使用GitLab设置LDAP身份验证(在VM的Ubuntu 14.04 amd64上安装的7.12.2版本,已设置Omnibus)。我已经编辑了gitlab.rb文件,如下所示: gitlab_rails['ldap_enabled'] = true gitlab_rails['ldap_servers'] = YAML.load <<-'EOS' # remember to close this block with 'EOS' below main: # 'main' is the GitLab 'provider ID' of this LDAP server label: 'LDAP' host: '********' port: 389 uid: 'sAMAccountName' method: 'plain' # "tls" or "ssl" or "plain" bind_dn: 'CN=********,OU=********,OU=********,DC=********,DC=***' password: …

1
gitlab安装:使用本地主机
我正在按照以下说明安装gitlab:https : //github.com/gitlabhq/gitlabhq/blob/5-0-stable/doc/install/installation.md 一切顺利,直到#7。nginx。我对此特定说明有疑问 # Change **YOUR_SERVER_IP** and **YOUR_SERVER_FQDN** # to the IP address and fully-qualified domain name # of your host serving GitLab sudo vim /etc/nginx/sites-available/gitlab 我可以分别将127.0.0.1和localhost用作YOUR_SERVER_IP和YOUR_SERVER_FQDN吗?我真的不想使用任何.coms,这个gitlab将在内部使用。 当我访问localhost时,它显示502 Bad Gateway。 我的error_log文件内容 2013/03/24 09:18:21 [crit] 12152#0: *1 connect() to unix:/home/git/gitlab/tmp/sockets/gitlab.socket failed (2: No such file or directory) while connecting to …
1 nginx  gitlab 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.