Hello,
Installed Django 3.7.0 on Centos 8 but, the server is not starting on port 8000.
it is stuck at the below prompt.
@localhost djangoproject]$ python3 manage.py runserver 0.0.0.0:8000
Watching for file changes with StatReloader
Performing system checks…
System check identified no issues (0 silenced).
June 17, 2020 - 14:25:52
Django version 3.0.7, using settings ‘djangoproject.settings’
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
if I add port 8000 to httpd.conf then I get the below error message:
@localhost djangoproject]$ python3 manage.py runserver 0.0.0.0:8000
Watching for file changes with StatReloader
Performing system checks…
System check identified no issues (0 silenced).
June 17, 2020 - 14:34:43
Django version 3.0.7, using settings ‘djangoproject.settings’
Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
Error: That port is already in use.