最新文章
基础知识
环境部署
虚拟化
集群架构
网络
云计算
Docker
自动化运维
订阅专题
-
-
-
-
Docker导出全部镜像命令
1.方式一 1.1 导出命令 docker save $(docker images --format '{{.Repository}}:{{.Tag}}') -o allinone…… -
-
Centos7 安装 Python3 及配置国内源、虚拟环境
安装 # 安装 python3 $ sudo yum install -y epel-release $ sudo yum install -y python3 # 升级 pip…… -
-
-
更换yum源和更换epel源为阿里YUM源(2022-10-20更新)
Centos的yum源更换为国内的阿里云源 下载地址: https://mirrors.aliyun.com/centos/ 相关仓库: CentOS…… -
-
统计磁盘上文件和inode的使用情况
查找磁盘使用率高于10%的分区 df -h | grep -v “Used”|sort -nr -k 5 -u|sed -e “s/%//g”| awk ‘$5>10…… -
-
-
宝塔面板安装Memcached失败wget: unable to resolve host address ‘download.bt.cn’
该问题主要原因是DNS服务器设置导致服务器无法正确解析 这个地址。 方法一:修改/etc/hosts文件解析。 pi…… -
nginx服务器启动找不到libluajit-5.1.so解决方法
启动nginx时发现报错如下: nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot …… -
-
-
-
Harbor v2.5.3-- 搭建Docker私有仓库
官方参考文档:https://goharbor.io/docs/2.5.0/install-config/ Harbor -- 搭建Docker私有仓库(2022-08…… -
Mycat环境构架部署(单台服务器搭建双主双从架构)
参考文章:https://juejin.cn/post/6930430192511156237#heading-34 环境构架(单台服务器搭建双主双从架…… -
-
-
Nginx日志切割(Logrotate程序设置)
使用系统自带的Logrotate程序进行日志分割 1、修改logrotate 日志切割轮询 mv /etc/anacrontab /etc/anac…… -
-
-
docker安装部署mysql5.7通用标准
docker安装部署mysql5.7通用标准 创建MySQL映射文件夹 mkdir -p /data/mysql/{config,data,logs,data_bac…… -
-
查看nginx某个时间段的日志内容
nginx 日志格式: 10.11.240.68 - - [10/Apr/2020:10:59:06 +0800] "POST /admin/hotkeywords HTTP/1.0" …… -
-
-
-
docker安装部署mysql8.0
快速部署: mkdir -p /data/mysql8.0/config/conf.d mkdir -p /data/mysql8.0/{data,logs,data_backup} …… -
报错提示:iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 3306 -j DNAT --to-destination 172.17.0.2:3306 ! -i docker0: iptables: No chain/target/match by that name.
问题描述1:启动MySQL提示信息如下: 首先排查了端口时候占用的情况: [[email protected] ~]# docke……