简介
本文用于介绍有关ssh server
的相关配置及使用方法。
指令集
- 查看
ssh server
状态
$ systemctl status sshd
- 添加新的
public key
# 添加公钥到authorized_key
$ cat myPublicKey.pub >> ~/.ssh/authorized_key
# sshd重新读取配置文件
$ systemctl reload sshd
本文用于介绍有关ssh server
的相关配置及使用方法。
ssh server
状态$ systemctl status sshd
public key
# 添加公钥到authorized_key
$ cat myPublicKey.pub >> ~/.ssh/authorized_key
# sshd重新读取配置文件
$ systemctl reload sshd