Я новичок в Django и пытаюсь запустить тестовый сервер python3 manage.py runserver
.Я получил информацию, что все прошло гладко:
Performing system checks...
System check identified no issues (0 silenced).
You have 15 unapplied migration(s). Your project may not work properly
until you apply the migrations for app(s): admin, auth, contenttypes,
sessions.
Run 'python manage.py migrate' to apply them.
January 28, 2019 - 19:15:50
Django version 2.1.5, using settings 'mytestsite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Тем не менее, когда я пытаюсь подключиться к http://127.0.0.1:8000/
из браузера Chrome, я получаю информацию о том, что веб-сайт недоступен.Моя конфигурация брандмауэра в Ubuntu:
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing), disabled (routed)
New profiles: skip
To Action From
-- ------ ----
22/tcp (OpenSSH) ALLOW IN Anywhere
8000 ALLOW IN Anywhere
Anywhere ALLOW IN 127.0.0.1
22/tcp (OpenSSH (v6)) ALLOW IN Anywhere (v6)
8000 (v6) ALLOW IN Anywhere (v6)
Что еще может быть не так?Это моя первая настройка.Спасибо за помощь.