---编辑ssh配置文件
nano /etc/ssh/sshd_config#centos系统使用
vi /etc/ssh/sshd_config
#修改:
PermitRootLogin yes #允许root登录
PermitEmptyPasswords no #不允许空密码登录
PasswordAuthentication yes # 设置是否使用口令验证。
--ssh服务启动命令:
sudo /etc/init.d/ssh start |stop |restart--centos系统使用
systemctl start sshd
--或者 serveice sshd start
---设置ssh开机自启动:update-rc.d ssh enable-- centos 设置ssh开机自启动
systemctl enable sshd
linux 开启远程连接 配置 ssh文件
于 2022-05-13 10:40:29 首次发布