could you help me to solve this problem? ☹☹

103 views
Skip to first unread message

FARISCHA MAKAY

unread,
Sep 29, 2020, 9:42:30 AM9/29/20
to Django users
Screenshot 2020-09-28 12.36.13.png

RANGA BHARATH JINKA

unread,
Sep 29, 2020, 9:48:31 AM9/29/20
to django...@googlegroups.com
Hi,

   Try python manage.py runserver

On Tue, Sep 29, 2020 at 7:12 PM FARISCHA MAKAY <farisch...@student.president.ac.id> wrote:
Screenshot 2020-09-28 12.36.13.png

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e9ad149c-428b-44df-97b1-f9d67d689e3dn%40googlegroups.com.


--
Thanks and Regards

J. Ranga Bharath
cell: 9110334114

FARISKA

unread,
Sep 29, 2020, 11:00:44 AM9/29/20
to django...@googlegroups.com

Already but still I got message like this

 

Sent from Mail for Windows 10

 

From: RANGA BHARATH JINKA
Sent: 29 September 2020 20:48
To: django...@googlegroups.com
Subject: Re: could you help me to solve this problem? ☹☹

 

Hi,

 

   Try python manage.py runserver

 

On Tue, Sep 29, 2020 at 7:12 PM FARISCHA MAKAY <farisch...@student.president.ac.id> wrote:

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e9ad149c-428b-44df-97b1-f9d67d689e3dn%40googlegroups.com.


 

--

Thanks and Regards

 

J. Ranga Bharath

cell: 9110334114

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.

Akinfolarin Stephen

unread,
Sep 29, 2020, 11:04:43 AM9/29/20
to django...@googlegroups.com
Let me have the screenshot of your django settings that is where the issue his

FARISKA

unread,
Sep 29, 2020, 11:14:09 AM9/29/20
to django...@googlegroups.com

"""

Django settings for library project.

 

Generated by 'django-admin startproject' using Django 3.1.1.

 

For more information on this file, see

 

For the full list of settings and their values, see

"""

 

from pathlib import Path

 

# Build paths inside the project like this: BASE_DIR / 'subdir'.

BASE_DIR = Path(__file__).resolve().parent.parent

 

# Quick-start development settings - unsuitable for production

 

# SECURITY WARNING: keep the secret key used in production secret!

SECRET_KEY = 'st&^2y1*#&=e=#o77rv(#fr7$swcue#tvfp8lunvpm0w67ap^k'

 

# SECURITY WARNING: don't run with debug turned on in production!

DEBUG = True

 

ALLOWED_HOSTS = [

    

 

]

 

# Application definition

 

INSTALLED_APPS = [

    'catalog',

    'django.contrib.admin',

    'django.contrib.auth',

    'django.contrib.contenttypes',

    'django.contrib.sessions',

    'django.contrib.messages',

    'django.contrib.staticfiles',

    'support.apps.SupportConfig',

]

 

MIDDLEWARE = [

    'django.middleware.security.SecurityMiddleware',

    'django.contrib.sessions.middleware.SessionMiddleware',

    'django.middleware.common.CommonMiddleware',

    'django.middleware.csrf.CsrfViewMiddleware',

    'django.contrib.auth.middleware.AuthenticationMiddleware',

    'django.contrib.messages.middleware.MessageMiddleware',

    'django.middleware.clickjacking.XFrameOptionsMiddleware',

]

 

ROOT_URLCONF = 'library.urls'

 

TEMPLATES = [

    {

        'BACKEND''django.template.backends.django.DjangoTemplates',

        'DIRS': [],

        'APP_DIRS'True,

        'OPTIONS': {

            'context_processors': [

                'django.template.context_processors.debug',

                'django.template.context_processors.request',

                'django.contrib.auth.context_processors.auth',

                'django.contrib.messages.context_processors.messages',

            ],

        },

    },

]

 

WSGI_APPLICATION = 'library.wsgi.application'

 

# Database

 

DATABASES = {

    'default': {

        'ENGINE''django.db.backends.sqlite3',

        'NAME': BASE_DIR / 'db.sqlite3',

    }

}

 

# Password validation

 

AUTH_PASSWORD_VALIDATORS = [

    {

        'NAME''django.contrib.auth.password_validation.UserAttributeSimilarityValidator',

    },

    {

        'NAME''django.contrib.auth.password_validation.MinimumLengthValidator',

    },

    {

        'NAME''django.contrib.auth.password_validation.CommonPasswordValidator',

    },

    {

        'NAME''django.contrib.auth.password_validation.NumericPasswordValidator',

    },

]

 

# Internationalization

 

LANGUAGE_CODE = 'en-us'

 

TIME_ZONE = 'UTC'

 

USE_I18N = True

 

USE_L10N = True

 

USE_TZ = True

 

# Static files (CSS, JavaScript, Images)

 

STATIC_URL = '/static/'

 

 

 

Sent from Mail for Windows 10

 

--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/hn9-MeHE3yQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFujGLy0z0J38XkBZtpS6kQwimz8Pkgf9aj86VBxp3pm%2BVfbqw%40mail.gmail.com.

 

Akinfolarin Stephen

unread,
Sep 29, 2020, 11:18:44 AM9/29/20
to django...@googlegroups.com
Set your debug to false and tryit again

FARISKA

unread,
Sep 29, 2020, 11:22:41 AM9/29/20
to django...@googlegroups.com
Message has been deleted

coolguy

unread,
Sep 29, 2020, 7:01:14 PM9/29/20
to Django users
Please share the project directories... Need to see if you opened the main project and application correctly.

Sunday Iyanu Ajayi

unread,
Sep 29, 2020, 7:05:05 PM9/29/20
to django...@googlegroups.com
What are you trying to achieve?
If you intend to start the django server , used the above proposed step by the previous guy:
 try python manage.py runserver  and not django-admin runserver while your virtual environment is activated and also you are in the django root directory


On Tue, Sep 29, 2020 at 11:53 PM coolguy <cooldjango...@gmail.com> wrote:
It seems you haven't changed your python interpreter...based on the screen shot the python is being executed from main python directory instead of virtual environment.


On Tuesday, September 29, 2020 at 9:42:30 AM UTC-4 farisch...@student.president.ac.id wrote:
Screenshot 2020-09-28 12.36.13.png

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.

Sunday Iyanu Ajayi

unread,
Apr 18, 2021, 10:52:53 AM4/18/21
to django...@googlegroups.com
Hi Team

Please I am having serious issue with my nginx server.

At midnight when the traffic on the server is at it peak, my server spikes and I get 502 error and from the nginx error log, I get :

upstream prematurely closed connection while reading response header from upstream

upstream timed out (110: Connection timed out) while reading response header from upstream

My server resources is about 8 core , 16GB RAM

This is seriously giving me nightmares . I need help

Kasper Laudrup

unread,
Apr 18, 2021, 11:53:55 AM4/18/21
to django...@googlegroups.com
On 18/04/2021 16.51, Sunday Iyanu Ajayi wrote:
> Hi Team
>
> Please I am having serious issue with my nginx server.
>
> At midnight when the traffic on the server is at it peak, my server
> spikes and I get 502 error and from the nginx error log, I get :
>
> upstream prematurely closed connection while reading response header
> from upstream
>
> upstream timed out (110: Connection timed out) while reading response
> header from upstream
>

You most likely don't have a problem with your nginx server. Your nginx
server has a problem reading a response from your Django application
which is the reason it times out.

It can be a bit tricky to figure out the cause of the heavy load, but I
would start by looking in your Django server logs and see if there might
be something obvious there.

If you have a chance to get a look at your server while it's under heavy
load and starts giving timeouts, something like htop and similar tools
might be able to give you a hint at the bottleneck. If you're database
server is maxing out all your CPU cores, then that could give a good
hint on where to look.

Hope that helps a bit.

Kind regards,

Kasper Laudrup

OpenPGP_signature
Reply all
Reply to author
Forward
0 new messages