zoukankan      html  css  js  c++  java
  • 第二章 Nginx 403 forbidden 报错

    对于运维来说,Nginx 报错: 403 forbidden,首先会想到权限问题,如果权限没有问题,那还有什么错误会报403 forbidden呢?
    

    一、权限问题

    三步走:
    
    #1.检查nginx.conf的user 是否为root;
    
    #2.检查文件所属目录是否有权限
    
    #3.检查nginx程序目录权限
    

    二、Selinux没关(最为意想不到)

    今天部署生产环境,发现一直报错:403 forbidden
    最后查看selinux发现selinux状态为:
    [root@mccann-dbh /data]$ getenforce 
    enforcing
    
    修改selinux状态:
    # 临时修改
    [root@mccann-dbh /data]$ setenforce 0
    
    [root@mccann-dbh /data]$ getenforce 
    permissive
    
    #永久修改
    [root@mccann-dbh /data]$ 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 instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    SELINUX=disabled
    # SELINUXTYPE= can take one of three values:
    #     targeted - Targeted processes are protected,
    #     minimum - Modification of targeted policy. Only selected processes are protected. 
    #     mls - Multi Level Security protection.
    SELINUXTYPE=targeted
    
    重载nginx,发现可以正常访问了。
    

    三、缺少索引文件

    #1.缺少index.html文件
    server { 
    listen    80; 
    server_name http://dbhh5.mccann.dataxbusiness.com/; 
    index index.html; 
    root /data/webproject/dbhh5; 
    
    如果在/data/webproject/dbhh5下面没有index.php,index.html的时候,直接访问域名,找不到文件,会报403 forbidden。
    
  • 相关阅读:
    失落的情
    我有个想法------彩南书屋
    西藏旅游闲记(上)
    夜归
    宝石山再记
    学车的日子(一)
    BootStrapValidator表单验证插件的学习和使用
    shard_row_id_bits & pre_split_regions
    某某大肠_tikv_修改配置参数
    第十二周总结
  • 原文地址:https://www.cnblogs.com/jhno1/p/15221021.html
Copyright © 2011-2022 走看看