之前如果建立 ssh 连接,只要將公匙复制到~/.ssh/authorized_keys就可以直接登录而不需要建立密碼. 如果在使用时候出现如下信息: Agent admitted failure to sign using the key 解決方式: 验证产生的key时候已经加入到ssh中,使用ssh-add –l进行查看 如果没有打印出如上信息,你必须将私匙添加到ssh中,通过ssh-add path/to/key #ssh-add   ~/.ssh/id_rsa 例如:ssh-add  ~…
之前如果建立 ssh 连接,只要將公鑰複製到 ~/.ssh/authorized_keys 就可以利用金鑰登入而不需要建立密碼. 現在的 ssh 使用同樣的方法會出現錯誤訊息 Agent admitted failure to sign using the key 解決方式 使用 ssh-add 指令將私鑰 加進來 (根据个人的密匙命名不同更改 id_rsa)# ssh-add   ~/.ssh/id_rsa…
公司迁移git 新库,重新迁移数据. 添加 ssh key  1. 首先要在新git 库管理平台 添加新的ssh-key : 本机上执行 ssh-keygen -t rsa -C "YourName@example.com" 输出大致如下: Generating public/private rsa key pair. Enter file in which to save the key (/Users/xxx/.ssh/id_rsa): <----缺省就可以,直接回车 Ent…
SSH生成id_rsa, id_rsa.pub后,连接服务器却报: Agent admitted failure to sign using the key 错误. 解决方法: 在当前用户下执行命令: ssh-add 即可解决.…
今天用git clone 命令clone服务器上的代码时候报了如下的错误: ouyangpeng@oyp-ubuntu:~/Android/git_canplay_code$ git clone gitcply:canplay/vendor/mstar/Canplay/apps/Video Cloning into 'Video'... Agent admitted failure to sign using the key. git@192.168.1.118's password: Perm…
提交时出现如下问题: git push -u origin master Agent admitted failure to sign using the key. Permission denied (publickey). fatal: The remote end hung up unexpectedly 可以使用如下方法解决: ssh-add ~/.ssh/id_rsa 然后重启ssh: restart ssh…
A :CentOS_Master B:Slave_1 C:Slave_2 普通用户hxsyl 1.现在A 上 ssh-keygen -t rsa 一路回车,不需要输入密码 执行该操作将在/home/hxsyl/.ssh下生成id_rsa, id_rsa.pub文件,其中id_rsa.pub是公钥 2.scp /home/hxsyl/.ssh/id_rsa.pub hxsyl@B:.ssh/authorized_keys 3.登陆时候 出现Agent admitted failure to sig…
oracle数据库,服务器异常断电,导致数据库不能启动.... 错误提示: SQL> startup ORA-01078: failure in processing system parameters LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0/db_1/dbs/initsznfpt.ora 解决方案: 服务器异常断电导致的文件丢失,恢复即可. cp -a $ORACLE_BASE/admin…
今天在处理Jenkins的时候出现了一些异常,看着控制台,编译都是通过的,只是没有部署上来,查看了控制台日志,如下: 刚开始还以为是权限通道什么的,后来才发现是执行脚本根本不让执行,以前也遇到过,都是找领导把日志清理了下或者进去后台kill掉进程,删除日志,重新启动就可以了. 执行命令: df -h 查看磁盘使用情况,发现如下: 到这里,基本上可以确定是磁盘已经满了,导致不能处理.删除日志,然后重新发布即可.…
Omnibus GitLab documentation(中文安装说明) 在自己的服务器上部署 GitLab 社区版->较为全面 GIT & REPO & GERRIT (三) gitlab+gerrit+jenkins持续集成框架 (安装后无法访问首页) 清华大学开源软件镜像站(ubuntu14.04) 离线包官方下载地址 gitlab / gitlab-ce / ubuntu / precise GitLab Community Edition and GitLab CI (in…