• 禁用selinux


    查看selinux状态:

    [root@VM000000518 upload]# getenforce
    Enforcing

    禁用:

    [root@VM000000518 upload]# setenforce 0

    再次查看状态变化:

    [root@VM000000518 upload]# getenforce
    Permissive

    禁用开机启动选项:

    [root@VM000000518 upload]# cat /etc/sysconfig/selinux
    
    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    #     enforcing - SELinux security policy is enforced.
    #     permissive - SELinux prints warnings instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    SELINUX=disabled
    # SELINUXTYPE= can take one of these two values:
    #     targeted - Targeted processes are protected,
    #     mls - Multi Level Security protection.
    SELINUXTYPE=targeted

    关掉iptable, ip6table, system-config-firewall:

    [root@VM000000518 upload]# /etc/init.d/iptables stop
    [root@VM000000518 upload]# /etc/init.d/ip6tables stop
    system-config-firewall
    
             ┌───────────────────────┤ 防火墙配置 ├───────────────────────┐
             │                                                            │
             │ 防火墙保护网络免遭未经授权的网络入侵。启用防火墙会阻塞所有         │
             │ 进入的连接。禁用防火墙会允许所有连接,我们不推荐您这么做。         │
             │                                                            │
             │                     防火墙: [ ] 启用                        │
             │                                                            │
             │      ┌──────┐            ┌──────┐           ┌──────┐       │
             │      │ 确定 │             │ 定制 │           │ 取消  │       │
             │      └──────┘            └──────┘           └──────┘       │
             │                                                            │
             │                                                            │
             └────────────────────────────────────────────────────────────┘
    
      <Tab>/<Alt-Tab> between elements   |  <Space> selects   |  <F12> next screen
  • 相关阅读:
    2018-04-13Java编程夯实学习心得(3)
    2018-03-28JavaScript学习心得
    2018-03-27mysql学习心得
    JavaScript-作用域
    样式切换图
    购物车结算
    Visual Studio Code快捷键操作
    复选框
    win10锁屏界面无法设置隐藏
    轮播图
  • 原文地址:https://www.cnblogs.com/hyang0/p/6479786.html
Copyright © 2020-2023  润新知