<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[******* ▄︻┻┳═一  *******]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/m0_37886429</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; m0_37886429]]></copyright><item><title><![CDATA[Navicat连接Oracle数据库]]></title><link>https://blog.csdn.net/m0_37886429/article/details/139946488</link><guid>https://blog.csdn.net/m0_37886429/article/details/139946488</guid><author>m0_37886429</author><pubDate>Tue, 25 Jun 2024 09:26:04 +0800</pubDate><description><![CDATA[用使用Navicat连接Oracle数据库，首先要保证本地有Oracle相关的驱动文件。通过下载Oracle官方提供的Instance Client Base基础包，里边包含有连接Oracle所需要的最小文件。新建Oracle连接，配置相应的Oracle服务器IP地址、端口、实例名称、用户名、密码等参数，然后点击左下角的测试连接按钮进行测试验证。然后配置OCI环境，将第一步下载的Instance Client Base解压后的文件夹中选中oci.dll文件即可。进入下载页面，选择最新的版本。]]></description><category></category></item><item><title><![CDATA[ERROR 2026 (HY000): SSL connection error: protocol version mismatch]]></title><link>https://blog.csdn.net/m0_37886429/article/details/139364192</link><guid>https://blog.csdn.net/m0_37886429/article/details/139364192</guid><author>m0_37886429</author><pubDate>Sat, 01 Jun 2024 02:41:08 +0800</pubDate><description><![CDATA[ERROR 2026 (HY000): SSL connection error: protocol version mismatch]]></description><category></category></item><item><title><![CDATA[Python3 使用 pymssql 连接 SQL Server 报错：DB-Lib error message 20002, severity 9]]></title><link>https://blog.csdn.net/m0_37886429/article/details/139231488</link><guid>https://blog.csdn.net/m0_37886429/article/details/139231488</guid><author>m0_37886429</author><pubDate>Mon, 27 May 2024 11:05:59 +0800</pubDate><description><![CDATA[通过python自带的os模块，详细打印连接详细日志。重新连接，没有报错，执行SQL，有数据输出。从报错信息上可以发现，是找不到。]]></description><category></category></item><item><title><![CDATA[Flask Session 登录认证模块]]></title><link>https://blog.csdn.net/m0_37886429/article/details/138215966</link><guid>https://blog.csdn.net/m0_37886429/article/details/138215966</guid><author>m0_37886429</author><pubDate>Fri, 26 Apr 2024 13:46:40 +0800</pubDate><description><![CDATA[Session 是一种在Web 应用中用于存储用户特定信息的机制。它允许在用户访问网站时存储和检索信息，以便在用户的不同请求之间保持状态。Session 机制在用户登录、购物网站、个性化设置等场景中得到广泛应用，它为用户提供了更加连贯和个性化的体验。在 Flask 中，通过模块可以方便地使用 Session ，实现用户状态的维护和管理。在 Web 开发中，HTTP 协议是无状态的，即每个请求都是独立的，服务器不会记住之前的请求信息。为了解决这个问题，引入了 Session 机制。]]></description><category></category></item><item><title><![CDATA[Nginx缓冲区]]></title><link>https://blog.csdn.net/m0_37886429/article/details/138124931</link><guid>https://blog.csdn.net/m0_37886429/article/details/138124931</guid><author>m0_37886429</author><pubDate>Tue, 23 Apr 2024 15:42:53 +0800</pubDate><description><![CDATA[Nginx的项目一般请求流程为：“客户端→Nginx→服务端”，在这个过程中存在两个连接：“客户端→Nginx、Nginx→服务端”，那么两个不同的连接速度不一致，就会影响用户的体验（比如浏览器的加载速度跟不上服务端的响应速度）。如果客户端到nginx速度快，nginx到服务器速度慢，没有缓冲区，一点点数据量就直接发到客户端，十分浪费性能。有了缓冲区，返回内容放到缓冲区后，nginx到服务器的连接就能断开了，客户端从缓冲区拉取即可。相反，客户端到nginx速度慢，nginx到服务器速度快，没有缓冲区，]]></description><category></category></item><item><title><![CDATA[Flask-RESTX 生成 Swagger 文档]]></title><link>https://blog.csdn.net/m0_37886429/article/details/137911986</link><guid>https://blog.csdn.net/m0_37886429/article/details/137911986</guid><author>m0_37886429</author><pubDate>Thu, 18 Apr 2024 11:18:05 +0800</pubDate><description><![CDATA[文档是自动生成的，可从您的 API 的根 URL 获取。@api.doc()您可以使用装饰器配置文档。]]></description><category></category></item><item><title><![CDATA[containerd制作和构建镜像]]></title><link>https://blog.csdn.net/m0_37886429/article/details/136505690</link><guid>https://blog.csdn.net/m0_37886429/article/details/136505690</guid><author>m0_37886429</author><pubDate>Wed, 06 Mar 2024 15:24:43 +0800</pubDate><description><![CDATA[2、生成containerd的配置文件

如果你使用 cgroup v2，则推荐 systemd cgroup 驱动。
配置 systemd cgroup 驱动。结合 runc 使用 systemd cgroup 驱动，在 /etc/containerd/config.toml 中设置 SystemdCgroup = true，设置完成后重启 containerd 服务使其生效。
3、配置加速

二、buildkit介绍
buildkit是从Docker从公司开源出来的下一代镜像构建工具，支持OCI标准的镜]]></description><category></category></item><item><title><![CDATA[容器 | Containerd 命令行工具的使用]]></title><link>https://blog.csdn.net/m0_37886429/article/details/136453989</link><guid>https://blog.csdn.net/m0_37886429/article/details/136453989</guid><author>m0_37886429</author><pubDate>Mon, 04 Mar 2024 16:29:52 +0800</pubDate><description><![CDATA[Containerd 不支持 docker API 和 docker CLI，但是 containerd 可以通过以下这几种命令实现类似的功能。]]></description><category></category></item><item><title><![CDATA[docker compose 使用]]></title><link>https://blog.csdn.net/m0_37886429/article/details/136039962</link><guid>https://blog.csdn.net/m0_37886429/article/details/136039962</guid><author>m0_37886429</author><pubDate>Mon, 05 Feb 2024 13:30:08 +0800</pubDate><description><![CDATA[Compose 是用于定义和运行多容器 Docker 应用程序的工具。通过 Compose，可以使用 YML 文件来配置应用程序需要的所有服务。Docker Compose通过一条命令根据yml文件的定义去创建或管理多容器。Compose 使用的三个步骤：使用 Dockerfile 定义应用程序的环境。使用 docker-compose.yml 定义构成应用程序的服务，这样它们可以在隔离环境中一起运行。最后，执行 docker-compose up 命令来启动并运行整个应用程序。]]></description><category></category></item><item><title><![CDATA[Rocky9 上安装 redis-dump 和redis-load 命令]]></title><link>https://blog.csdn.net/m0_37886429/article/details/134181460</link><guid>https://blog.csdn.net/m0_37886429/article/details/134181460</guid><author>m0_37886429</author><pubDate>Thu, 02 Nov 2023 14:40:58 +0800</pubDate><description><![CDATA[rocky9安装redis-dump和redis-load命令]]></description><category></category></item><item><title><![CDATA[pyttsx3 初识]]></title><link>https://blog.csdn.net/m0_37886429/article/details/132739738</link><guid>https://blog.csdn.net/m0_37886429/article/details/132739738</guid><author>m0_37886429</author><pubDate>Thu, 07 Sep 2023 15:58:25 +0800</pubDate><description><![CDATA[pyttsx3文本转语音库]]></description><category></category></item><item><title><![CDATA[Centos7 上安装 redis-dump 和redis-load 命令]]></title><link>https://blog.csdn.net/m0_37886429/article/details/132042173</link><guid>https://blog.csdn.net/m0_37886429/article/details/132042173</guid><author>m0_37886429</author><pubDate>Tue, 01 Aug 2023 15:37:48 +0800</pubDate><description><![CDATA[redis-dump和redis-load命令安装]]></description><category></category></item><item><title><![CDATA[中标麒麟操作系统安装chrome浏览器]]></title><link>https://blog.csdn.net/m0_37886429/article/details/131243394</link><guid>https://blog.csdn.net/m0_37886429/article/details/131243394</guid><author>m0_37886429</author><pubDate>Fri, 16 Jun 2023 11:42:25 +0800</pubDate><description><![CDATA[中标麒麟操作系统安装chrome浏览器]]></description><category></category></item><item><title><![CDATA[Package ‘oniguruma‘, required by ‘virtual:world‘, not found]]></title><link>https://blog.csdn.net/m0_37886429/article/details/129079609</link><guid>https://blog.csdn.net/m0_37886429/article/details/129079609</guid><author>m0_37886429</author><pubDate>Fri, 17 Feb 2023 10:26:28 +0800</pubDate><description><![CDATA[php8.x版本编译的时候报 Package 'oniguruma', required by 'virtual:world', not found 错误]]></description><category></category></item><item><title><![CDATA[推荐几款实用的内网穿透工具]]></title><link>https://blog.csdn.net/m0_37886429/article/details/128300721</link><guid>https://blog.csdn.net/m0_37886429/article/details/128300721</guid><author>m0_37886429</author><pubDate>Tue, 13 Dec 2022 14:33:16 +0800</pubDate><description><![CDATA[内网穿透工具：nps-npc，frp，ew，ngrok]]></description><category></category></item><item><title><![CDATA[Linux查看当前占用CPU或内存最多的n个进程]]></title><link>https://blog.csdn.net/m0_37886429/article/details/127224793</link><guid>https://blog.csdn.net/m0_37886429/article/details/127224793</guid><author>m0_37886429</author><pubDate>Sun, 09 Oct 2022 13:18:07 +0800</pubDate><description><![CDATA[Linux查看当前占用CPU或内存最多的n个进程]]></description><category></category></item><item><title><![CDATA[Rocky Linux 更新成国内镜像源]]></title><link>https://blog.csdn.net/m0_37886429/article/details/127087515</link><guid>https://blog.csdn.net/m0_37886429/article/details/127087515</guid><author>m0_37886429</author><pubDate>Wed, 28 Sep 2022 13:29:39 +0800</pubDate><description><![CDATA[rocky linux 更新成国内镜像源]]></description><category></category></item><item><title><![CDATA[Jenkins启动报错：AWT is not properly configured on this server.]]></title><link>https://blog.csdn.net/m0_37886429/article/details/126832277</link><guid>https://blog.csdn.net/m0_37886429/article/details/126832277</guid><author>m0_37886429</author><pubDate>Tue, 13 Sep 2022 14:10:59 +0800</pubDate><description><![CDATA[jenkins启动报错问题解决]]></description><category></category></item><item><title><![CDATA[用Python处理Excel的14个常用操作]]></title><link>https://blog.csdn.net/m0_37886429/article/details/126831213</link><guid>https://blog.csdn.net/m0_37886429/article/details/126831213</guid><author>m0_37886429</author><pubDate>Tue, 13 Sep 2022 13:23:44 +0800</pubDate><description><![CDATA[python处理excel的常用操作]]></description><category></category></item><item><title><![CDATA[云数据库核心集群索引优化实践]]></title><link>https://blog.csdn.net/m0_37886429/article/details/126763756</link><guid>https://blog.csdn.net/m0_37886429/article/details/126763756</guid><author>m0_37886429</author><pubDate>Thu, 08 Sep 2022 15:43:28 +0800</pubDate><description><![CDATA[mongdb数据库优化]]></description><category></category></item></channel></rss>