14
2024
03
14
2024
03
14
2024
03
13
2024
03
Linux错误代码
#ifndef _I386_ERRNO_H
#define _I386_ERRNO_H
#define EPERM 1 /* Operation not permitted */
#define ENOENT 2 /* No such file or directory */
#define ESRCH 3 /* No such process */
13
2024
03
Webhook脚本范例 官方文档
https://www.zabbix.com/documentation/5.0/zh/manual/config/notifications/media/webhook/webhook_examples?hl=Zabbix.Log
12
2024
03
12
2024
03
12
2024
03
11
2024
03
11
2024
03
11
2024
03
11
2024
03
设置Linux上ll命令显示时间格式
默认使用ll命令时候,时间为简写方式,无法显示年,如下:
drwxrwxr-x 1 dev dev 4096 Dec 12 18:00 sql
11
2024
03
python https 无法访问 SSLError("Can\'t connect to HTTPS URL because the SSL module is not available
1,需要检查python 安装的时候是否支持 https
11
2024
03
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with
下面的官方说法是redhat7升级到8或者9,centos没说,实际可以重新编译python(带ssl参数)和安装对应版本的openssl就解决了。
11
2024
03
11
2024
03
CentOS7下安装Docker-Compose No module named 'requests.packages.urllib3'
在使用Docker的时候,有一个工具叫做 docker-compose,安装它的前提是要安装pip工具.
11
2024
03
11
2024
03
11
2024
03
Centos7安装Python3.10(安装OpenSSL v1.1.1、urllib3 2.0)(ImportError: urllib3 v2.0 only supports OpenSSL 1)
背景
urllib3一直报错: "ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with OpenSSL 1.0.2k-fips"。 决定进行OpenSSL版本升级到1.1.1+。