关闭Selinux 命令

在nginx 配置文件中,新增location中的内容,完成后,web上403报错

方法:关闭Selinux即可。

Follow below steps:

虚拟机服务器环境补充:

# vim/etc/selinux/config

把selinux = disable (修改成disable)

保存退出后,重新启动nginx

systemctl  restart nginx

时间: 2024-11-08 19:31:57

关闭Selinux 命令的相关文章

Linux关闭防火墙和关闭SELinux命令

防火墙: 查看防火墙状态: service iptables status 2. 关闭防火墙(永久性,重启机器后也会保持生效) chkconfig iptables off 3. 开启防火墙 (永久性,重启机器后也会保持生效) chkconfig iptables on 4. 临时关闭防火墙(重启机器后失效) service iptables off 5. 临时开启防火墙(重启机器后失效) service iptables on SELinux: 查看SELinux当前状态: getenforc

永久关闭selinux

修改配置文件,永久关闭selinux. vim /etc/selinux/config # 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

rhel7的基本操作(查看IP配置,关闭防火墙,临时或永久关闭selinux,常用命令操作)

* rhel7的基本操作* 1.查看IP配置[[email protected] ~]# ls /etc/sysconfig/network-scripts/ifcfg-enp0s25 /etc/sysconfig/network-scripts/ifcfg-enp0s25查看DNS配置[[email protected] ~]# cat /etc/resolv.conf Generated by NetworkManager nameserver 114.114.114.114查看IP和主机绑

docker命令无法使用,关闭selinux 即可

运行"systemctl start docker.service" 报错 'Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.' 运行'docker ps' 报错'Cannot connect

CentOS7中关闭selinux

在安装Cobbler和Puppet时需要关闭selinux,但是通常情况下载安装完CentOS7后,默认情况下SElinux是启用状态, 如下所示: [csharp] view plaincopy [[email protected] ~]# sestatus SELinux status:                 enabled SELinuxfs mount:                /sys/fs/selinux SELinux root directory:        

关闭selinux

今天配置nginx的时候 然后总是提示权限,明明给了777权限.始终还是不行,重装了几次,最后想到可能是selinux导致的.就关掉selinux 一切正常. 关于selinux 是啥  以前也不是很清楚是干啥的,只是知道这个security linux  就是为了让linux 更加安全的 但是这个东西会导致一些问题.所以很多人都是先关闭它 selinux介绍. SELinux是一种基于 域-类型 模型(domain-type)的强制访问控制(MAC)安全系统,它由NSA编写并设计成内核模块包含

Linux下开启关闭SeLinux

SELinux (Security-Enhanced Linux) in Fedora is an implementation of mandatory access control in the Linux kernel using the Linux Security Modules (LSM) framework. Standard Linux security is a discretionary access control model. Discretionary access c

如何关闭SeLinux

禁用SELINUX #vi /etc/selinux/config  让SELINUX失效,执行如下命令: #setenforce 0 注:setenforce是Linux的selinux防火墙配置命令 执行setenforce 0 表示关闭selinux防火墙.     setenforce命令是单词set(设置)和enforce(执行)连写,另一个命令getenforce可查看selinux的状态.

永久关闭selinux | 防火墙

关闭SELinux的两种方法 1 永久方法 – 需要重启服务器 修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启服务器. 2 临时方法 – 设置系统参数 使用命令setenforce 0 附:setenforce 1 设置SELinux 成为enforcing模式setenforce 0 设置SELinux 成为permissive模式 谢谢! Centos7 关闭防火墙 CentOS 7.0默认使用的是firewall作为防火墙,使用iptabl