Blog Archive for July 17, 2013

Unable to connect to WSGI daemon process

July 17, 2013

I got the following error on trying to access a Django site hosted though mod_wsgi on Apache, RHEL.

[Wed Jul 17 15:15:54 2013] [error] [client 192.168.0.1] (13)Permission denied: mod_wsgi
(pid=28961): Unable to connect to WSGI daemon process 'dashboard' on '/etc/httpd
/logs/wsgi.28849.0.1.sock' after multiple attempts.

This problem is due to the …

Bugzilla on RHEL

July 17, 2013

These are the commands used to install bugzilla from source on a RHEL system. Apache is already installed and working with NameVirtualHost, but not configured for bugzilla.

Database

First, install a database. In my case, I'm using PostgreSQL:

# yum install postgresql
# yum install postgresql-server
# yum install postgresql-devel …