logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

linux ssh开启远程登录权限

linux系统刚安装完成后,ssh服务默认禁止root用户登录远程ssh,需在配置文件 /etc/ssh/sshd_config中开启认证设置PermitRootLogin yes#允许root认证登录PasswordAuthentication yes#允许密码认证直接命令行执行命令即可echo"PermitRootLogin yes" >> /etc/ssh/sshd_config

#linux#ssh
到底了