Skip to content Skip to sidebar Skip to footer

Django Apache Mssql Connection Timeout

I am trying to Django with MS SQL Server on CentOS 7 using Apache mod_wsgi. I'm able to run the Django app using python manage.py runserver 0.0.0.0:8000 and navigate to my grappeli

Solution 1:

So the problem was that my SELinux configuration was restrictive and was blocking the connection. The solution was to edit my /etc/selinux/config and set

SELINUX=disabled

then reboot

The mod_wsgi documentation mentions that SELinux has the potential to cause some issues in:

Post a Comment for "Django Apache Mssql Connection Timeout"