摘要: 参考 https://blog.csdn.net/CSDN877425287/article/details/108784679 阅读全文
posted @ 2022-08-22 16:05 TIFOSI_Z 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 启动出错 [root@main ~]# docker logs mysql-first 2022-08-22 02:50:33+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.30-1.el8 started. 20 阅读全文
posted @ 2022-08-22 12:26 TIFOSI_Z 阅读(216) 评论(0) 推荐(0) 编辑
摘要: docker stop mysql-seconddocker commit -a 'yuan' -m 'mysql-second' <容器的id> mysql8 阅读全文
posted @ 2022-08-21 20:36 TIFOSI_Z 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 转自 https://www.jianshu.com/p/ae1987efec61 场景: 使用Git stash命令或者SourceTree暂存了工作现场,之后误删了这个stash 恢复方法: 第一步:git fsck --unreachable 使用git fsck --unreachable命 阅读全文
posted @ 2022-08-19 10:14 TIFOSI_Z 阅读(732) 评论(0) 推荐(0) 编辑
摘要: #创建 global_city_temperature_1_1 global_city_temperature_5_4 共创建20个表 DROP PROCEDURE IF EXISTS create_temperature_tables; DELIMITER;; CREATE PROCEDURE c 阅读全文
posted @ 2022-08-15 16:07 TIFOSI_Z 阅读(400) 评论(0) 推荐(0) 编辑
摘要: #查看当前anaconda的系统配置信息 conda info #列出当前系统中所有虚拟环境 环境列表左边*表示当前所在环境 conda env list #也可以使用conda info -e #新建虚拟环境 #-n <虚拟环境名称> 或者 --name <虚拟环境名称> #python=<pyt 阅读全文
posted @ 2022-08-14 21:05 TIFOSI_Z 阅读(143) 评论(0) 推荐(0) 编辑
摘要: REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'djangoProject.utils.exception.custom_exception_handler', # 在不需要权限就能访问的视图 设置permissions_classes=[] 设为空就可以 'DEF 阅读全文
posted @ 2022-08-14 17:26 TIFOSI_Z 阅读(156) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/dangfulin/article/details/116785621 阅读全文
posted @ 2022-08-11 01:25 TIFOSI_Z 阅读(6) 评论(0) 推荐(0) 编辑
摘要: pip install django -i https://pypi.douban.com/simple/ 还有djangorestframework PymySQL Pillow django-redis跨域问题django-cors-headers 阅读全文
posted @ 2022-08-09 18:08 TIFOSI_Z 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 方法一:docker exec -it mysql的id bash进入mysql容器后查看配置文件位置cat /etc/mysql/my.cnf确认无误后退出容器docker cp 容器id:/etc/mysql/my.cnf /tmp在复制后的文件 /tmp/my.cnf内容里加上skip-nam 阅读全文
posted @ 2022-08-04 23:27 TIFOSI_Z 阅读(658) 评论(0) 推荐(0) 编辑