此内容没有您所选择的语言版本。

5.11.3. Creating a User With a Specific MLS Range


Follow these steps to create a new Linux user with a specific MLS range:
  1. Add a new Linux user via the useradd command and map the new Linux user to an existing SELinux user (in this case, user_u):
    ~]# useradd -Z user_u john
  2. Assign the newly-created Linux user a password:
    ~]# passwd john
  3. Run the semanage login -l command to view the mapping between SELinux and Linux users. The output should be as follows:
    Login Name                SELinux User              MLS/MCS Range
    
    __default__               user_u                    s0
    john                      user_u                    s0
    root                      root                      s0-s15:c0.c1023
    system_u                  system_u                  s0-s15:c0.c1023
    
  4. Define a specific range for user john:
    ~]# semanage login --modify --seuser user_u --range s2:c100 john
  5. Run the semanage login -l command to view the mapping between SELinux and Linux users. Note that the user john now has a specific MLS range defined:
    Login Name                SELinux User              MLS/MCS Range
    
    __default__               user_u                    s0
    john                      user_u                    s2:c100
    root                      root                      s0-s15:c0.c1023
    system_u                  system_u                  s0-s15:c0.c1023
    
  6. To correct the label on john's home directory (if needed), run the following command:
    ~]# chcon -R -l s2:c100 /home/john
Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.