[daily] ssh通过私钥导出公钥
在使用key方式登录ssh服务的时候,我们知道ssh key是使用公钥ssh-keygen工具生成的。
有时候,我们只保存了私钥,但是并没有保存公钥。这个时候,可以使用如下方法,
从私钥中将公钥导出:
ssh-keygen -y -f /path/to/private_key > /path/to/public_key.pub
完
[classic_tong https://www.cnblogs.com/hugetong/]
在使用key方式登录ssh服务的时候,我们知道ssh key是使用公钥ssh-keygen工具生成的。
有时候,我们只保存了私钥,但是并没有保存公钥。这个时候,可以使用如下方法,
从私钥中将公钥导出:
ssh-keygen -y -f /path/to/private_key > /path/to/public_key.pub
完
[classic_tong https://www.cnblogs.com/hugetong/]