gitlab 创建SSH Keys 报500错

简介: gitlab 创建SSH Keys 报500错 看了一下日志 root@322323:/home/git/gitlab/log# cat production.log Errno::ENOMEM (Cannot allocate memory - ssh): lib/gitlab/popen.

gitlab 创建SSH Keys 报500错 看了一下日志 root@322323:/home/git/gitlab/log# cat production.log

Errno::ENOMEM (Cannot allocate memory - ssh):
  lib/gitlab/popen.rb:23:in `popen'
  lib/gitlab/key_fingerprint.rb:42:in `explicit_fingerprint_algorithm?'
  lib/gitlab/key_fingerprint.rb:21:in `block in fingerprint'
  lib/gitlab/key_fingerprint.rb:15:in `fingerprint'
  app/models/key.rb:77:in `generate_fingerprint'
  app/controllers/profiles/keys_controller.rb:21:in `create'
  lib/gitlab/middleware/go.rb:16:in `call'

google 了一翻:http://stackoverflow.com/questions/26777690/gitlab-500-error-when-adding-removing-ssh-key

root@904eb945eb34:/home/git/gitlab/log# free -h
             total       used       free     shared    buffers     cached
Mem:          1.8G       1.7G        66M        14M       1.7M       169M
-/+ buffers/cache:       1.6G       237M
Swap:           0B         0B         0B
[root@iZ23arpt7f0Z data]# mkdir /swapfile
[root@iZ23arpt7f0Z data]# cd /swapfile
[root@iZ23arpt7f0Z swapfile]# dd if=/dev/zero of=swap bs=1024 count=2000000
2000000+0 records in
2000000+0 records out
2048000000 bytes (2.0 GB) copied, 36.5222 s, 56.1 MB/s
[root@iZ23arpt7f0Z swapfile]# mkswap -f  swap
Setting up swapspace version 1, size = 1999996 KiB
no label, UUID=fd976699-b7e4-471f-82fb-8d784793d82f
[root@iZ23arpt7f0Z swapfile]# swapon swap
swapon: /swapfile/swap: insecure permissions 0644, 0600 suggested.
[root@iZ23arpt7f0Z swapfile]# free -h
              total        used        free      shared  buff/cache   available
Mem:           1.8G        1.5G         62M         14M        263M        159M
Swap:          1.9G          0B        1.9G

这下就ok了

目录
相关文章
|
Ubuntu Linux 网络安全
Linux Debian11服务器安装SSH,创建新用户并允许远程SSH远程登录,并禁止root用户远程SSH登录
本文介绍了Linux Debian11服务器安装SSH,创建新用户并允许远程SSH远程登录,并禁止root用户远程SSH登录。
2855 1
Linux Debian11服务器安装SSH,创建新用户并允许远程SSH远程登录,并禁止root用户远程SSH登录
|
6月前
|
Linux 网络安全
|
7月前
|
Shell 网络安全 开发工具
GitLab创建项目的时候需要SSH Keys
GitLab创建项目的时候需要SSH Keys
41 0
|
网络安全 Windows
GitLab配置ssh key
GitLab配置ssh key
|
网络安全
GitLab 配置 SSH 密钥(详细流程)
GitLab 配置 SSH 密钥(详细流程)
3794 0
|
缓存 网络安全 开发工具
GitLab上传文件 和 GitLab配置ssh key
GitLab上传文件 和 GitLab配置ssh key
229 0
|
存储 网络安全 开发工具
mac生成ssh并连接gitlab
mac生成ssh并连接gitlab
2603 0
|
Shell 网络安全 开发工具
Git生成ssh公钥(ssh key)以及在GitLab配置ssh公钥
Git生成ssh公钥(ssh key)以及在GitLab配置ssh公钥
759 0
Git生成ssh公钥(ssh key)以及在GitLab配置ssh公钥
|
Shell 网络安全 开发工具
Git中添加密钥&&ssh密钥的创建与查看(打开id_rsa.pub文件)
Git中添加密钥&&ssh密钥的创建与查看(打开id_rsa.pub文件)
Git中添加密钥&&ssh密钥的创建与查看(打开id_rsa.pub文件)
|
网络安全 开发工具 git
git 生成ssh keys
最近从svn转到gitlab 记录一下如何生成ssh keys 首先下载GitExtensions246SetupComplete.msi并安装,如果已经安装了git,那么安装途中就跳过就行 安装完毕后,选择如下图中的命令行   然后会弹出这样的一个命令行界面:   然后输入以下命令: ssh-keygen -t ras -C "your_mail_address@bangdao-tech.
1747 0