博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS6无法本地登陆,ssh远程登陆没问题
阅读量:6469 次
发布时间:2019-06-23

本文共 621 字,大约阅读时间需要 2 分钟。

CentOS6无法本地登陆,ssh远程登陆没问题---使用CentOS自带的rsyslog分析调试

Apr 21 14:15:27 raccontroller init: tty (/dev/tty1) main process (2048) terminated with status 1

Apr 21 14:15:27 raccontroller init: tty (/dev/tty1) main process ended, respawning

/etc/rsyslog.conf

*.debug    /var/log/ruiy-debug.log

附--通常linux禁止本地及远程ssh登陆的配置方法步骤

1,禁止root本地登录

修改/etc/pam.d/login文件增加下面一行
auth required pam_succeed_if.so user != root quiet
2,禁止root远程ssh登录
修改/etc/ssh/sshd_config文件,将 #PermitRootLogin yes 修改为 PermitRootLogin no
3,禁止远程密码登陆

#session required /lib/security/pam_limits.so

PermitRootLogin yes

PasswordAuthentication yes

xShell 基于public key登陆维护服务器

转载地址:http://lijko.baihongyu.com/

你可能感兴趣的文章
mysql的数据类型int、bigint、smallint 和 tinyint取值范围
查看>>
移动铁通宽带上网设置教程
查看>>
Python算法(含源代码下载)
查看>>
利用Windows自带的Certutil查看文件MD5
查看>>
查询指定名称的文件
查看>>
AJAX POST&跨域 解决方案 - CORS
查看>>
开篇,博客的申请理由
查看>>
Servlet 技术全总结 (已完成,不定期增加内容)
查看>>
[JSOI2008]星球大战starwar BZOJ1015
查看>>
centos 7 部署LDAP服务
查看>>
iOS项目分层
查看>>
IntelliJ IDEA 注册码
查看>>
String字符串的截取
查看>>
DynamoDB Local for Desktop Development
查看>>
Shell编程-环境变量配置文件
查看>>
[Unity3d]DrawCall优化手记
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>