跳转至

简介

本文用于介绍有关ssh server的相关配置及使用方法。

指令集

  • 查看ssh server状态
$ systemctl status sshd
  • 添加新的public key
# 添加公钥到authorized_key
$ cat myPublicKey.pub >> ~/.ssh/authorized_key

# sshd重新读取配置文件
$ systemctl reload sshd