【资料图】
设置了linux,远程登录系统一直无法登录,关闭SELinux后正常,打开就又无法登录,网上找了很多地方都无法解决,或者都是直接让关闭SELinux,下面可以解决正常开启SELinux也可以正常登录的方案。
主要是因为SELinux不允许写入
sudo semanage fcontext -a -t ssh_home_t "/root/.google_authenticator"
sudo semanage fcontext -a -t ssh_home_t "/root"
sudo restorecon -v /root/.google_authenticator
下面2个是临时设置权限,重启后失效
sudo chcon -t ssh_home_t /root/.google_authenticator
sudo chcon -t ssh_home_t /root