MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error
ES 查询历史
ES 查询历史
mysql 索引
mysql索引相关知识
mysql的配置文件定位
查看mysql的配置路径 mysql --help
screw-plus php代码加密
开源php加密运行扩展,基于screw二次开发,暂时只能在linux下运行
kafka 容器的相关配置项解析
对未知容器的配置进行更改思路与过程
Docker 中时区设置
设置容器、宿主机时区
Linux软件运行异常,查看系统日志
grep "Out of memory" /var/log/messages
docker push 到私有仓库
容器的导入与导出
1. docker login abc.com
2. docker tag 2e25d8496557 abc.com/dev/php:7.2
3. docker push abc.com/dev/php:7.2
4. docker save -o php abc.com/dev/php:7.2
5. docker load -i php
6. docker commit 043907ea14f0 harbor.ops.es.cn/ytc_cloud_scan/box/php:encrypt-safe-v2
docker redis 自动退出
检查配置文件是否设置了daemonize yes
,如果是,就要改为 daemonize no
,因为该选项让redis
成为在后台运行的守护进程,而docker
容器必须要有一个前台进程才能留存。【docker 学习笔记】中有详细解释