zoukankan      html  css  js  c++  java
  • Linux永久关闭防火墙 firewalld和sellinux设置

    有时候关了防火墙,下次登录又开了,发现服务起不来,找半天才发现防火墙又开了,真是的,所以建议永久关闭防火墙和selinux

    关闭 firewalld:

    systemctl stop firewalld #临时关闭
    
    systemctl disable firewalld #永久关闭,即设置开机的时候不自动启动

    --------------------------------------

    关闭 selinux:


    [root@localhost html]# getenforce #查看selinux状态
    Permissive
    [root@localhost html]# setenforce 0 #临时关闭
    [root@localhost html]# vim
    /etc/sysconfig/selinux #永久关闭

    永久关闭selinux可以使用vi命令打开/etc/sysconfig/selinux 文件将SELINUX=(disable或permissive)

    ##重启服务

    [root@localhost html]# shutdown -r now (或者reboot简单粗暴)。

    ##附

    setenforce 1 设置SELinux 成为enforcing模式
    setenforce 0 设置SELinux 成为permissive模式

  • 相关阅读:
    Linux
    memory库函数的实现
    剑指Offer面试题1
    Linux
    Linux-配置vim开发环境
    Linux-Find命令
    busybox,alphine,ubuntu,centos/fedore操作系统
    端口映射与容器互联
    docker 数据管理数据卷
    Celery
  • 原文地址:https://www.cnblogs.com/lichenghong/p/13141324.html
Copyright © 2011-2022 走看看