现在开始使用 liunx 作为开发环境,每次连接 liunx 服务器都要输入一遍连接信息,非常麻烦,各位大神,有没有好的解决方法?
vnc 的话自动保存的连接信息
ssh 可以使用使用密匙链接很方便
其实我不太懂“每次连接 liunx 服务器都要输入一遍连接信息,非常麻烦”指什么
就是每次 ssh 一遍信息啊,没法保存连接信息,就像 xshell 一样方便就好了
ssh 可以写 config 设置别名
你是说脚本吗
.ssh/config 看看使用方式,公钥连接配置下
https://wiki.archlinux.org/index.php/Secure_Shell#Configuration
密钥+tmux
好,我先看下,谢谢
mac iterm2
win xshell
remmina
谢谢各位,我先慢慢看下大家发的
remmina 老是有问题,用着就闪退了
5 楼正解。我详细说说,
服务器:
ssh-keygen -t rsa 生成 id_rsa、id_rsa.pub
编辑 ssh 配置文件:vim /etc/ssh/sshd_config
禁用密码登录(注意其他小伙伴用密码也无法登录了):PasswordAuthentication no
把 id_rsa.pub 复制到.ssh/authorized_keys 文件夹
本地机:
登录:ssh -i ~/.ssh/id_rsa [email&/>目录拷贝:scp -i ~/.ssh/id_rsa/ ~/www/ [email&/>嫌弃上面两个登录要输入 id_rsa 路径麻烦,编辑 ssh_config 文件指定你的 id_rsa
vim ~/.ssh/ssh_config
IdentityFile ~/.ssh/id_rsa
重启 ssh:sudo service sshd restart
[完]
禁用密码登录可禁可不禁,看你。
ssh config 了解一下哇
还麻烦? alias 666="ssh -i ~/.ssh/id_rsa [email protected]_addr"
alias,不是双击打开吗?我一般用 winscp 带 putty,双击同时打开两个软件。编辑就用 win SCP。其他用 putty。
这种问题都描述不清楚的,除了发牢骚没别的用的问题,各位还耐心回答我真是佩服 V2EX 的环境
如果还是喜欢在屏幕上点点点连接服务器,建议还是使用 windows,no offense
公钥登录了解一下
密钥登录,用 config 文件保存别名,ip,私钥位置
我必定换端口禁密码
难道不是 Linux? 我先去百度一下 liunx