Why am I getting an Apache Proxy 503 error?

后端 未结 6 745
眼角桃花
眼角桃花 2021-01-30 05:12

My server was doing just fine up until yesterday. It was running Redmine, and it was the happiest little server until my \"friend\" imported a SQL table that my

6条回答
  •  野性不改
    2021-01-30 05:53

    Fist, you must install selinux: (SELinux stands for Security-Enhanced Linux.)

    apt-get install selinux
    

    After that, you can enable Security Policy of SElinux by follow command:

    sed -i 's/SELINUX=.*/SELINUX=permissive/' /etc/selinux/config 
    

    Notice:

    #     enforcing - SELinux security policy is enforced.
    #     permissive - SELinux prints warnings instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    

    Final,restart apache!

提交回复
热议问题