解决 CentOS 7 添加用户设置家目录出现 useradd cannot set SELinux context for home directory 问题

时间:2019-02-08 13:16:32   收藏:0   阅读:1436

问题描述

直接贴下代码吧~

[root@localhost ~]# useradd -d /tmp/heheda4 heheda4
useradd: cannot set SELinux context for home directory /tmp/heheda4

解决方法

出现这种情况,主要和 SELinux 安全上下文的设定有关,只需要禁用它即可。

输入以下命令即可将它临时关闭。

setenforce 0

如果想永久关闭,需要编辑 /etc/sysconfig/selinux 配置文件

vi /etc/sysconfig/selinux

然后将 SELINUX=disabled 即可。

参考链接

http://www.voidcn.com/article/p-onjkjagh-bny.html

https://blog.csdn.net/yanjun821126/article/details/80828908

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!