SSH服务

下载安装

#安装
yum install openssh-server
# 重启
systemctl restart  sshd
# 开机自启
systemctl enable sshd
# 添加用户
adduser wzm
passwd wzm

配置文件

#位置
/etc/ssh/sshd_config
# 容许密码访问
PasswordAuthentication yes

你可能感兴趣的:(SSH服务)