SSH服务安装

1. 安装sshd服务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 安装
sudo dnf install -y openssh-server

# 启动
sudo systemctl enable sshd

# 状态
sudo systemctl status sshd

# 重启
sudo systemctl restart sshd

# 防火墙允许
sudo firewall-cmd --permanent --add-service=ssh
sudo firewall-cmd --reload
2. 配置文件

修改配置文件相应的值,才能够进行ssh远程连接。vim /etc/ssh/sshd_config

1
2
3
4
PasswordAuthentication yes      # 开启密码登录
PermitRootLogin yes # 开启root登录
PubkeyAuthentication yes # 开启公钥登录
UsePAM yes # 启用PAM身份验证模块

修改后重启sshd服务,sudo systemctl restart sshd