会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小清澈
思考,改变自己
博客园
首页
新随笔
联系
订阅
管理
随笔 - 111
文章 - 85
评论 - 1
阅读 -
87840
2024年10月30日
dmPython编译后运行,连接数据库报错 returned a result with an exception set 问题解决
摘要: 原因是编译完之后,dpi包未正确打包进去 把python 库目录下的dpi包下的所有文件(Python3.11.3\Lib\site-packages\dpi )复制到 编译文件的_internal目录下 即可
阅读全文
posted @ 2024-10-30 19:02 小清澈
阅读(146)
评论(0)
推荐(0)
编辑
Python 多进程 + UI 编译后启动多个GUI界面的问题
摘要: 在 if __name__ == '__main__': 下面加上 multiprocessing.freeze_support()
阅读全文
posted @ 2024-10-30 10:57 小清澈
阅读(9)
评论(0)
推荐(0)
编辑
2024年10月22日
关于nginx HTTP Strict Transport Security (HSTS) Policy Not Enabled 的处理
摘要: 添加证书 和强制https 策略 ssl_certificate /path/to/cert.pem; ssl_certificate_key /path/to/key.pem; add_header Strict-Transport-Security "max-age=31536000; incl
阅读全文
posted @ 2024-10-22 13:53 小清澈
阅读(379)
评论(0)
推荐(0)
编辑
2024年8月22日
升级Openssh 后 最大文件打开数修改不生效,启动 UsePAM yes后 ,最大文件打开数生效但是 ssh 远程不了问题解决
摘要: 感谢 博主https://blog.csdn.net/Daphnisz/article/details/124040904 升级新版本的openssh 后,永久修改最大文件打开数不生效。 然后需要在 /etc/ssh/sshd_config文件中 修改 UsePAM yes。使永久修改最大文件打开数
阅读全文
posted @ 2024-08-22 15:17 小清澈
阅读(83)
评论(0)
推荐(0)
编辑
2024年8月8日
关于在firewall防火墙无法阻止Docker 容器映射端口被外部访问问题的回顾
摘要: 这个问题是很早之前处理的,我自己已经没有印象了,今天同事拿了一个处理安全的文档来找我,上面赫然出现了我的名字,比较懵逼。。。 这个问题的现象实际上是 docker映射的端口,通过firewalld 防火墙禁用端口不生效,外部还是能访问到,公司在进行安全扫描的时候总是被抓。。。。 在firewalld
阅读全文
posted @ 2024-08-08 14:45 小清澈
阅读(348)
评论(0)
推荐(0)
编辑
2024年8月6日
GaussDB安装
摘要: 环境准备 1、关闭防火墙 systemctl stop firewalld 2、关闭selinux 临时禁用:setenforce 0 永久关闭: vi /etc/selinux/configSELINUX=disabled reboot 3、修改系统环境字符集 echo $LANG export
阅读全文
posted @ 2024-08-06 17:56 小清澈
阅读(287)
评论(0)
推荐(0)
编辑
2024年1月25日
Jacoco 覆盖率维度说明
摘要: 以下是JaCoCo统计的指标维度 1)指令 - Instructions(C0覆盖率) JaCoCo计数的最小单位是单个Java字节代码指令。指令覆盖率提供有关已执行或遗漏(executed or missed)的代码量的信息。该度量完全独立于源格式,并且即使在类文件中没有调试信息的情况下也始终可用
阅读全文
posted @ 2024-01-25 14:03 小清澈
阅读(198)
评论(0)
推荐(0)
编辑
2024年1月24日
oracledb打包报错问题
摘要: pyinstaller --hidden-import=cryptography.hazmat.primitives.kdf.pbkdf2 -F xxx.py -p "path"
阅读全文
posted @ 2024-01-24 11:29 小清澈
阅读(28)
评论(0)
推荐(0)
编辑
2024年1月8日
OB for MySQL 单节点安装记录
摘要: 1、下载安装包 OceanBase 社区版下载 - 开源数据库下载 - OceanBase 数据库下载中心 2、解压 tar -zxvf oceanbase-all-in-one-4.2.1.2-102010022023121415.el7.x86_64.tar.gz 3、到bin目录,执行 vi
阅读全文
posted @ 2024-01-08 10:26 小清澈
阅读(89)
评论(0)
推荐(0)
编辑
2023年11月24日
nacos 2.2.3版本开启登录认证
摘要: server.tomcat.basedir=/root/nacos #此路径必须存在 nacos.core.auth.system.type=nacos nacos.core.auth.enabled=true nacos.core.auth.server.identity.key=serverId
阅读全文
posted @ 2023-11-24 10:38 小清澈
阅读(1201)
评论(0)
推荐(0)
编辑
下一页
公告
昵称:
小清澈
园龄:
4年10个月
粉丝:
2
关注:
1
+加关注
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔分类
k8s(5)
Python(12)
Shell(15)
UI自动化(2)
工具安装(6)
内部文档(1)
爬虫(1)
数据库(14)
运维自动化(6)
随笔档案
2024年10月(3)
2024年8月(3)
2024年1月(3)
2023年11月(3)
2023年10月(1)
2023年9月(2)
2023年8月(5)
2023年7月(9)
2023年6月(3)
2023年5月(1)
2022年7月(3)
2022年6月(2)
2022年5月(1)
2022年4月(3)
2022年3月(2)
2022年2月(2)
2022年1月(1)
2021年12月(11)
2021年11月(5)
2021年10月(2)
2021年9月(9)
2021年8月(3)
2021年7月(9)
2021年6月(11)
2021年5月(13)
更多
阅读排行榜
1. Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 解决办法(19930)
2. SSLTLS协议信息泄露漏洞(CVE-2016-2183)【原理扫描】 解决方案(6614)
3. k8s 启动报错分析及解决方法。完善补充(5470)
4. docker容器内 无法ping通外部网络的解决办法(5145)
5. docker.service lacks both ExecStart= and ExecStop= setting. Refusing. 或者是docker.service not found 问题解决方法(3269)
推荐排行榜
1. yum安装最新版本Nginx(1)
点击右上角即可分享