一、更新Debian系统数据软件源
apt-get update
二、安装SSH服务
apt-get install -y ssh
安装完成ssh 服务默认是开启的,手动开启命令
/etc/init.d/ssh start
三、查看ssh服务状态
/etc/init.d/ssh status
四、备份 SSH 配置文件
cp /etc/ssh/sshd_config{,.bak}
编辑 SSH 配置文件
利用VIM 编辑配置文件,把以下代码对 /etc/ssh/sshd_config 文件内容进行替换
vim /etc/ssh/sshd_config
利用命令 more /etc/ssh/sshd_config |grep -v "^#" |grep -v "^$" 查看文件内容是否与下面一致,不一致则改成一致
Include /etc/ssh/sshd_config.d/*.conf
Port 22
PermitRootLogin yes
PasswordAuthentication yes
PermitEmptyPasswords no
ChallengeResponseAuthentication no
UsePAM yes
X11Forwarding yes
PrintMotd no
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
重启 SSH 服务
/etc/init.d/ssh restart
标签:sshd,环境,etc,SSH,ssh,yes,config,Debian,搭建
From: https://www.cnblogs.com/byzora/p/17278521.html