Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django runserver hangs at "System check identified no issues (0 silenced)."

Tags:

On one Ubuntu box, the project runs just fine with python manage.py runserver. When trying to replicate it on another Ubuntu box, after installation, it hangs at System check identified no issues (0 silenced). with no further output.

like image 833
Eamonn M.R. Avatar asked Apr 12 '16 15:04

Eamonn M.R.


People also ask

Is it possible to run Django runserver while logged on?

Recognize that running it that way will only keep it up and running while you’re logged on. Hopefully this is just for a test and that you’re not really going to try to leave a Django runserver running, exposed to the internet… Wow thanks for your fast answer!

When Django can't connect to your database?

when django can't connect to your database django run hangs at System check identified no issues (0 silenced). totally issue related database config: check database User permission in DB side. It may be a database connection error.

What is a serious error in Django?

Serious errors will prevent Django commands (such as runserver) from running at all. Minor problems are reported to the console. If you have inspected the cause of a warning and are happy to ignore it, you can hide specific warnings using the SILENCED_SYSTEM_CHECKS setting in your project settings file.


1 Answers

Just came across the same issue - in my case it happened because the database server was down

EDIT: Django version 1.9

like image 200
CrowbarKZ Avatar answered Sep 28 '22 19:09

CrowbarKZ