WaterBear 的文章
-
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……