• 禁用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
  • 相关阅读:
    Linux 下IOport编程訪问
    Xcode下执行HelloWorld
    PHP/HTML混写的四种方式总结
    php取两位小数的几种方法
    使用原生JS+CSS或HTML5实现简单的进度条和滑动条效果(精问)
    js进阶 9-7 自动计算商品价值
    html5--1.12表格详解
    html5常用标签table表格布局
    html常用属性border-radius、linear-gradient怎么使用
    类选择器选择非唯一属性无法精确取值的问题
  • 原文地址:https://www.cnblogs.com/hyang0/p/6479786.html
Copyright © 2020-2023  润新知