• 【jenkins】04.SSH认证方式拉取Git代码


    首先需要会git ssh

    在这里插入图片描述
    我们一般用http的形式拉取代码。
    ssh的好处就是不用每次输入密码,而且貌似会快丢丢,不知道是不是错觉。

    大概需要三个步骤:

    一、本地生成密钥对;
    二、设置github上的公钥;
    三、修改git的remote url为git协议。

    一、生成密钥对。

    SSH 公钥默认储存在账户的主目录下的 ~/.ssh 目录。进去看看:

    $ cd ~/.ssh 
    $ ls
    authorized_keys2  id_dsa       known_hosts config            id_dsa.pub
    

    生成:

    $ ssh-keygen -t rsa -C "your_email@youremail.com"

    执行下:

    [root@iZbp16x1iba3qb7a1cuu20Z bin]# ssh-keygen -t rsa -C "lixin"
    Generating public/private rsa key pair.
    Enter file in which to save the key (/root/.ssh/id_rsa):
    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    Your identification has been saved in /root/.ssh/id_rsa.
    Your public key has been saved in /root/.ssh/id_rsa.pub.
    The key fingerprint is:
    SHA256:xtPk6o3L...CfcOK7UCo lixin
    The key's randomart image is:
    +---[RSA 2048]----+
    |     ..o   ..o . |
    |      . o   o.+  |
    |       o  . ++.  |
    |      +.o+ ..=.. |
    |     . ++o.o o  |
    |      ..=o+o .   |
    |     o oE=o .    |
    |    . ooo=+. .   |
    |   .oo.o*oo=o    |
    +----[SHA256]-----+
    
    
    

    二、添加公钥到你的git帐户

    [root@iZbp16x1iba3qb7a1cuu20Z bin]# cat ~/.ssh/id_rsa.pub
    ssh-rsa AAAAB3NzaC1yc2EAA...HqATKQ7MQPkuBDU1+sdUEv7 lixin
    

    在这里插入图片描述
    直接粘贴进去就好了

    三、修改你本地的ssh remote url. 不用https协议,改用git 协议

    ================================================
    可以用git remote -v 查看你当前的remote url

    $ git remote -v
    origin https://github.com/test1/test1.git (fetch)
    origin https://github.com/test1/test1.git (push)
    

    使用 git remote set-url 来调整你的url。

    git remote set-url origin git@github.com:test1/test1.git
    

    完了之后,你便可以再用 git remote -v 查看一下。

    然后,设置到Jenkins

    测试一下:

    /usr/bin/git ls-remote -h  git地址
    

    查看私钥

    [root@iZbp16x1iba3qb7a1cuu20Z bin]# cat ~/.ssh/id_rsa
    -----BEGIN RSA PRIVATE KEY-----
    MIIEpAIBAAKCAQEAzNZXYdsjoPIPUhOyFaco/HDZ9kAXeQgwf/X9apZVB7NsMBKk
    ...
    ...
    ...
    TbIuzX1zvSud4AB+RslD2TB0Tn2Ck2lCBAN61ted1jc2ZIPMVk9HLA==
    -----END RSA PRIVATE KEY-----
    

    把私钥填进去就好了

    在这里插入图片描述

  • 相关阅读:
    apue第16章笔记
    重构与重写
    架构方面的笔记
    多进程失败拉起的demo
    Elasticsearch match_phrase用法
    c++风格
    cocos2d-x 3.2 移植到android
    Mac 下配置 Cocos2d-x 3-x android 的环境
    解决最新版的ADT没有NDK选项的问题
    待飞日记(第六天和第七天)
  • 原文地址:https://www.cnblogs.com/HappyTeemo/p/16116561.html
Copyright © 2020-2023  润新知