这种一般是端口错误,一般是要把端口关掉,这里提供了两种方法。
方法一:直接命令: sudo lsof -t -i tcp:8000 | xargs kill -9
方法二:脚本:名字manage.py
直接运行:./manage.py runserver 即可
#!/bin/bash pid=$(ps aux | grep "./manage.py runserver" | grep -v grep | head -1 | xargs | cut -f2 -d" ") if [[ -n "$pid" ]]; then kill $pid fi fuser -k 8000/tcp
原文地址:https://www.cnblogs.com/dylancao/p/10231922.html
时间: 2024-10-11 02:52:41