随笔分类 - Bug
摘要:1. 报错: supervisorctl restart allunix:///var/run/supervisor.sock no such file 原因:supervisor管理的服务未启动 解决:supervisord -c /etc/supervisor/supervisord.conf
阅读全文
摘要:报错:ImportError: cannot import name 'smart_text' from 'django.utils.encodin 解决:将 smart_test --》 smart_str 报错:ImportError: cannot import name 'ugettext_
阅读全文
摘要:docker + vue2 + flask + nginx 项目部署 前后端项目启动 点击页面,前端打印台出现:net::ERR_CONNECTION_REFUSED 原因:后端端口问题 5000端口 容器与宿主机没有进行映射,映射完即可正常访问
阅读全文
摘要:执行:npm run serve 出现:error:0308010C:digital envelope routines::unsupported 原因:npm 版本升级 解决:package.json 增加配置 "scripts": { "serve": "set NODE_OPTIONS ope
阅读全文
摘要:Error: unable to start container 问题:podman 修改存储文件之后无法起容器 解决:重启podman服务:systemctl restart podman
阅读全文
摘要:django 运行之前的项目出现报错:No installed app with label 'admin' 解决:配好数据库,迁移 python manage.py migrate
阅读全文
摘要:podman 起容器时候,出现error 解决: 创建命令里面加上 podman --cgroup-manager=cgroupfs run -itd xxx
阅读全文
摘要:1. 防火墙:服务器上的防火墙可能会阻止端口连接。您需要在防火墙中打开相应的端口。 2. 端口未打开:如果您的服务器没有打开该端口,则客户端无法连接。您需要在服务器上打开相应的端口。 3. ISP阻止:ISP可能会在其网络上阻止某些端口的连接。您需要联系ISP以了解其政策。 4. 路由器配置:如果您
阅读全文
摘要:问题:安装完包无法导入 安装出现: [root@a928bac91186 project]# pip install django==2.2Requirement already satisfied: django==2.2 in /usr/local/lib/python3.6/site-pack
阅读全文
摘要:问题:yum install -y msodbcsql18 安装到最后必须手动输入yes 解决:ACCEPT_EULA=Y yum install -y msodbcsql18 ACCEPT_EULA=Y 表示接受最终用户许可协议,否则无法安装成功。
阅读全文
摘要:报错:'bool' object is not callable 原因:is_authenticated是属性而不是方法 解决:把括号去掉就可以了 demo: class A(): def __init__(self, x): self.x = x def add(self): return 3 a
阅读全文
摘要:问题: python manage.py createsuperuser 无法创建超级用户 报错:django.db.utils.DataError: (1406, "Data too long for column 'password' at row 1") 问题原因:用户模型继承 Abstrac
阅读全文
摘要:代码莫名报错:AttributeError: 'version_info' object has no attribute '__version__' 解决:pip install pyparsing==2.4.7
阅读全文
摘要:编码问题 参考文档: https://blog.csdn.net/datong66/article/details/98486218
阅读全文
摘要:报错:UnicodeDecodeError: 'gbk' codec can't decode byte 0xfe in position 32: illeg 解决: import osos.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8'
阅读全文

浙公网安备 33010602011771号