2018年5月18日 星期五

ssh 指定預設登入的使用者

 ssh 預設在建立連線時,會帶目前登入的使用者名稱,但實際上我們幾乎不會用目前登入的使用者名稱去連對方的機器,這時候只要在登入的家目錄設定一個 .ssh/config 檔案,就可以了

Host *
    User

Host example
    HostName example.net
    User buck

注意 .ssh/config 的權限需要是 600 才行

沒有留言:

張貼留言

如何在 golang 裡面引用 gitlab private repo

參考文章:https://stackoverflow.com/questions/27500861/whats-the-proper-way-to-go-get-a-private-repository 原文是用 gitlab.company.com 當範例,這邊改成一般帳號...