SSH远程登陆

本机需要配置多个ssh key

本机需要配置多个ssh key时,可以生成不同文件名的key。然后在~/.ssh目录下添加名字为config的文件,为不同的主机指定不同的key

# 主机一
#Host github.com
#Hostname github.com
#User git
#Identityfile ~/.ssh/github

# 主机二
Host xx.xx.xx.xx
HostName xx.xx.xx.xx
User xx
IdentityFile ~/.ssh/xxx

bash的四种模式

参考链接 https://blog.csdn.net/whitehack/article/details/51705889

ssh user@remote command 这种方式执行的commad命令属于第三种模式:interactive + non-login shell

这种模式下,bash会找 ~/.bashrc文件,把里边的环境变量加载出来。

你可能感兴趣的:(SSH远程登陆)