Django运行不提示网址问题

embedded/2024/11/13 9:03:36/

问题描述:运行django项目不提示网址信息,也就是web没有起来,无法访问。

(my-venv-3.8) PS D:\Project\MyGitCode\public\it_blog\blog> python .\manage.py runserver
INFO autoreload 636 Watching for file changes with StatReloader
Performing system checks...System check identified no issues (0 silenced).

django运行结果如上,这是一个不正常的结果,没有提示网址访问信息,已经是第2次出现,昨天大约是20分钟左右自动恢复,原因是数据库连接不上:

## 问题排查
一直不提示访问地址是因为Django没有正常启动,可能是因为后台数据库那个时候卡住的原因。
INFO 2024-05-01 17:20:24,786 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:22:04,914 autoreload 250 D:\Project\MyGitCode\public\it_blog\blog\templates\register.html changed, reloading.
INFO 2024-05-01 17:22:06,095 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:23:05,332 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:25:46,883 autoreload 250 D:\Project\MyGitCode\public\it_blog\blog\templates\register.html changed, reloading.
INFO 2024-05-01 17:25:48,502 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:26:36,762 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:27:10,945 autoreload 250 D:\Project\MyGitCode\public\it_blog\blog\templates\register.html changed, reloading.
INFO 2024-05-01 17:27:12,240 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:29:32,382 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:32:41,813 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:38:36,847 autoreload 636 Watching for file changes with StatReloader
INFO 2024-05-01 17:42:11,890 autoreload 636 Watching for file changes with StatReloader

接着我与大师进行了交流,它也给出了一些可能的建议,其中就有提到数据库问题:

  1. Check for errors: Look for any error messages in the console output that might indicate why the server isn’t starting properly. It could be a syntax error in your code, a database issue, or a missing migration.

  2. Verbose output: Run the command with verbosity set to 3 for more detailed output:

    python manage.py runserver --verbosity 3
    
  3. Restart your environment: If nothing seems to work, try restarting your development environment (terminal, code editor, or even your computer) to reset any processes that might be causing conflicts.

  4. Review project settings: Check if there’s something in your Django project that’s causing issues with the server start-up. It could be in settings.py, middleware, or a custom configuration.

今天还是一样的问题,数据库直接OOM了,无奈之下只能重启了服务器。后期解决方案是迁移数据库服务器,多分配一点资源。


http://www.ppmy.cn/embedded/30235.html

相关文章

在PR中使用 obs 和 vokoscreen 录制的视频遇到的问题

1. obs 录制的视频 在 Adobe Premiere Pro CS6 中只有音频没有视频 2. vokoscreen 录制的视频,没有声音 这是是和视频录制的编码有关系,也和显卡驱动关系 首先 obs 点击 文件 ---> 设置 录制的视频都是可以正常播放的,在PR不行。更…

学习java的static

1.static是什么,用来做什么? static-静态,可以修饰成员变量和成员方法。 2.成员变量按照有无static修饰,分为两种 类变量:有static修饰,属于类,在计算机中,会被类的全部对象所共享…

Python IDE(集成开发环境)有很多,以下是一些常用的选项

Python IDE(集成开发环境)有很多,以下是一些常用的选项: PyCharm:PyCharm被认为是普及率和使用率最高的一款Python IDE集成开发环境工具。它功能强大,支持多种开发模式,如科学计算、Web开发、数…

selenium 4.20.0 访问外网问题

保存信息:There was an error managing chromedriver (error sending request for url (https://storage.googleapis.com/chrome-for-testing-public/124.0.6367.91/win64/chromedriver-win64.zip)); using driver found in the cache 报错原因:因为sel…

css折叠的导航栏

导航栏点击多个的效果 <div class"cont"><!-- 第一个导航 --><div class"nav_a"><input type"checkbox" name"chk" id"chk1"><label for"chk1"><div class"plus">…

selinux 基础知识

目录 概念 作用 SELinux与传统的权限区别 SELinux工作原理 名词解释 主体&#xff08;Subject&#xff09; 目标&#xff08;Object&#xff09; 策略&#xff08;Policy&#xff09; 安全上下文&#xff08;Security Context&#xff09; 文件安全上下文查看 先启用…

SQLite如何处理CSV 虚拟表(三十七)

返回&#xff1a;SQLite—系列文章目录 上一篇&#xff1a;SQLite的DBSTAT 虚拟表&#xff08;三十六&#xff09; 下一篇:SQLite的扩展函数Carray()表值函数(三十八) ​ RFC4180格式是一种文本文件格式&#xff0c;被用于表格数据间的交互&#xff0c;也可将表格数据转化…

KVM安装Ubuntu24.04简要坑点以及优点

本机环境是ubuntu22.04的环境&#xff0c;然后是8核16线程 ssd是500的 目前对于虚拟机的选择&#xff0c;感觉kvm确实会更加流畅&#xff0c;最重要的一点是简洁&#xff0c;然后实际安装效果也比较的好&#xff0c;如果对于速度方面希望快一点&#xff0c;并且流畅一点的话这…