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模式

  • 相关阅读:
    JSP——useBean
    jsp 几种跳转
    jsp MIME
    T-SQL之触发器(下)
    T-SQL之触发器
    T-SQL之存储过程
    T-SQL之游标
    T-SQL之自定义函数
    T-SQL之函数
    T-SQL复习心得(1)变量
  • 原文地址:https://www.cnblogs.com/lichenghong/p/13141324.html
Copyright © 2011-2022 走看看