Bugzilla error after installation: "TEST-FAILED Web Server does not execute CGI files"

I want to install Bugzilla on my Linux server. The installation was successful, but it gives this error:

TEST-FAILED Web Server is not executing CGI files

How to resolve this?

+3
source share
3 answers

From the Bugzilla Customization Guide :

2.2.4.1. Apache httpd

To configure the Apache web server to work with Bugzilla, follow these steps:

  • Download httpd.conf to your editor. On Fedora and Red Hat Linux, this file is located in / etc / httpd / conf.
  • Apache , . , Bugzilla. ( , .) Bugzilla /var/www/html/bugzilla.

:

<Directory /var/www/html/bugzilla>
   AddHandler cgi-script .cgi
   Options +Indexes +ExecCGI
   DirectoryIndex index.cgi
   AllowOverride Limit
</Directory>

Apache .cgi, bugzilla; index.cgi, - ; Bugzilla.htaccess .

+2

SELinux .

Fedora Core RedHat Enterprise /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=enforcing
# SELINUXTYPE= can take one of these two values:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted

... SELINUX=enforcing SELINUX=permissive, .

+1

Apache, , .

-2

All Articles