1. ホーム
  2. django

[解決済み] Django manage.py ランサーバーが動作しない

2022-02-18 18:30:51

質問

以下のコマンドを使用してサーバーを起動しようとしているときに問題に直面しました。

python manage.py runserver 0.0.0.0:8000

表示中

C:\abc>python manage.py runserver 0.0.0.0:8000
Validating models...

0 errors found
Django version 1.4.9, using settings 'abc.settings'
Development server is running at http://0.0.0.0:8000/
Quit the server with CTRL-BREAK.

を経由してブラウザでアクセスすることはできません。 http://127.0.0.1:8000

と表示されます。

Unable to connect

Firefox can't establish a connection to the server at 127.0.0.1:8000.

The site could be temporarily unavailable or too busy. Try again in a few moments.
If you are unable to load any pages, check your computer's network connection.
If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.

しかし、同じことを

python manage.py runserver 

アプリケーションにアクセスすることができます。 http://127.0.0.1:8000

何が問題なのでしょうか?

解決方法は?

ポート8000が外部IPで使用されているようです。プロセスが実行されていないか確認し、終了させてください。

で開いているポートを確認できます。 netstat -a . Debianでは、PIDを取得するために netstat -tulpn | grep 8000 . 最後の行は、次のように表示されます。 1234/python . 今度はそれを kill 1234 .

システムを再起動する方法もあります ;-)