首页
运维
后端
前端
瞬间
奔跑的砖头
累计撰写
49
篇文章
累计创建
23
个标签
累计收到
0
条评论
栏目
目 录
CONTENT
以下是
运维
相关的文章
2024-10-17
docker-compose 孤立镜像警告处理
在我使用 docker-compose 的时候 提示我下面的问题 Found orphan containers ([base_nginx]) for this project. If you removed or renamed this service in your compose file,
2024-10-17
106
0
0
运维
2024-10-17
CentOS 7 yum Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile
yum install nginx Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile ..... No package nginx available. Error: Nothing to do
2024-10-17
326
0
0
运维
2024-10-17
yum安装的nginx添加stream模块
nginx 1.9.11 开始增加加载动态模块支持.之前是不支持这样方式安装 使用 nginx -V (注意这个是大写的"V") 查看当前 stream 是否安装 nginx version: nginx/1.20.1 built by gcc 4.8.5 20150623 (Red Hat 4.8
2024-10-17
163
0
0
运维
2024-10-14
Ubuntu 更换中国镜像
查看系统版本号 cat /proc/version Ubuntu 24.04:noble Ubuntu 22.04:jammy Ubuntu 20.04:focal Ubuntu 18.04:bionic Ubuntu 16.04:xenial 更新为清华大学的镜像 访问 https://mirr
2024-10-14
74
0
0
运维
2024-10-14
MySQL 表名忽略大小写
[mysqld] # lower-case-table-names = 0 不忽略 lower-case-table-names = 1 忽略
2024-10-14
51
0
0
运维
2024-10-14
Nginx 1.20 配置 ssl
我签发用的是阿里云的个人测试证书,原来叫免费证书。 upstream backend { server 127.0.0.1:8090; } # 在访问非 https 的路径时候直接跳转到 443 server { listen 80; listen [::]
2024-10-14
81
0
0
运维
2024-10-14
Nginx413Request Entity Too Large
在 server{} 或者 http{} 中配置下面的参数 client_max_body_size 100M; 使用 nginx -s reload 重启配置即可
2024-10-14
35
0
0
运维
2024-08-15
Windows下如何查看某个端口被谁占用
使用netstat命令 打开命令提示符(按下Win + R,输入cmd,然后回车)。 在命令行中输入以下命令,并替换端口号为您要检查的端口号: netstat -ano | findstr "端口号" Copy 这条命令会列出所有与指定端口相关的连接以及它们的PID(进程ID)。 记下LISTEN
2024-08-15
122
0
0
运维
2024-08-07
Log4J2 漏洞和 Spring Boot log4j2 临时解决办法
Springboot Log4j 的不能升级的解决办法,首先排除老版本的 log4j-core ,然后在加个新版本即可。 <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-st
2024-08-07
154
0
0
后端
运维
2024-06-10
Mysql 使用 Load Data 实现数据的快速导入
在数据库管理中,批量导入数据是一个常见的任务。MySQL提供了一种非常高效的方式来导入数据,即使用LOAD DATA命令。这个命令可以快速地将数据从文本文件加载到数据库表中,特别适合处理大量数据的场景,本地和远程目录都可以实现导入数据。 客户端和Mysql服务器在同一服务器 在使用之前先使用 sho
2024-06-10
238
0
0
后端
运维
1
2
3