Hi,
I've developped a Django application with python 3 for online signal processing and analysis: www.sp4mass.com
There is no problem with the app with the sqlite default database. However, when I switch to a mysql database, the site runs fine during 5 minutes and then the server returns a 500 error after the next request. Specifically, the server log indicates the following error:
2014-05-01 08:00:00 Thu May 1 08:00:00 2014 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /signal/ (ip 10.86.247.9) !!!
I need to restart the server tosolve this issue. However, the same error occurs after 5 minutes. My settings are
DATABASES = {
'default': {
'NAME': xxx,
'ENGINE': 'mysql.connector.django',
'USER': xxx,
'PASSWORD': xxx,
}
Is it a database error ?