首页 > 代码库 > 25. Mac命令行登陆远程

25. Mac命令行登陆远程

系统命令行或者iTem2


ssh root@193.xxx.xx.xx -p 端口



或者编辑

vim ~/.ssh/config

把远程服务器添加到config里面

Host abctest

  HostName 192.xxx.xx.x

  User root

  Port 端口

  IdentityFile ~/.ssh/id_rsa


然后把公钥添加到服务器的~/.ssh/authorized_keys 文件里面


登陆的时候,直接在命令行里面输入: ssh abdtest

本文出自 “www.bogo.com” 博客,请务必保留此出处http://483181.blog.51cto.com/473181/1942363

25. Mac命令行登陆远程