LinuxMint13安裝無密碼訪問git

來源:互聯網
上載者:User

LinuxMint13安裝無密碼訪問git 以下是在LinuxMint13上安裝Gitolite的步驟記錄: 1.在伺服器端,建立git帳號: sudo adduser --system --shell /bin/bash --group git sudo adduser git ssh sudo passwd git 2.在伺服器端,安裝open-ssh,並配置ssh,為了實現Git帳號的無密碼登入,我們需要 修改/etc/ssh/sshd-config檔案. 將其中的PermitRootLogin no修改為yes PubkeyAuthentication 設定為no AuthorizedKeysFile .ssh/authorized_keys前面加上#屏蔽掉, PasswordAuthentication 設定為yes 配置後使用一下命令重啟ssh: sudo service ssh restart 3. 在用戶端,用ssh-key-gen 在建立公開金鑰和密鑰,命令如下: ssh-keygen -t  rsa 4.ssh-copy-id 把公開金鑰從用戶端複製到遠程主機上,我這裡是用一台電腦的skwiki使用者拷貝到git使用者: skwiki@HaSee$ ssh-copy-id -i ~/.ssh/id_rsa.pub  git@localhost 此時會要求輸入密碼,輸入git的密碼即可遞交,遞交後在伺服器端的/home/git/.ssh/authorized_keys 檔案中就已經有了id_rsa.pub的公開金鑰內容,在隨後的gitolite中還會涉及到authorized_keys的修改。 5.再次修改/etc/ssh/sshd-config檔案. 將其中的PermitRootLogin no修改為yes RSAAuthentication 設定為no PubkeyAuthentication 設定為yes AuthorizedKeysFile .ssh/authorized_keys前面加上#屏蔽掉, PasswordAuthentication 設定為no 配置後使用一下命令重啟ssh: sudo service ssh restart 6.在用戶端,登入git主機,我的用戶端和伺服器端都是一台電腦,所以使用localhost標記。 ssh git@localhost 注意實際上,PasswordAuthentication 和 PubkeyAuthentication  可以同時設定為yes 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.