首页
人工智能
工作实战
个人认知
科学上网
日常技术
kubernetes
CI/CD
已删除用户
该用户已被删除。
累计撰写
43
篇文章
累计创建
7
个分类
累计收到
0
条评论
导航
首页
人工智能
工作实战
个人认知
科学上网
日常技术
kubernetes
CI/CD
目录
Zorn运维之路
这是1个知识分享平台
分类
工作实战
Linux服务器部署NTP,实现时间同步
2024-12-04 14:27
10
0
0
25.0℃
工作实战
1、安装ntpd同步网络时间: yum install -y ntpd 2、编辑 ntp.conf 文件: vim /etc/ntp.conf server ntp1.aliyun.com iburst server ntp2.aliyun.com iburst server ntp3.aliyun
CentOS7升级内核版本:
2024-12-04 14:16
21
0
0
26.1℃
工作实战
1、下载新的 rpm内核包: wget http://mirrors.coreix.net/elrepo-archive-archive/kernel/el7/x86_64/RPMS/kernel-lt-devel-5.4.226-1.el7.elrepo.x86_64.rpm wget http:
CentOS7替换yum源为阿里源
2024-12-04 14:09
20
0
0
26.0℃
工作实战
1、清除原来的yum源: cd /etc/yum.repos.d rm -rf ./* 2、下载阿里yum的reop源: wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo 或
docker-compose部署CoreDNS,实现解析企业内部域名效果
2024-12-04 13:47
35
0
0
27.5℃
工作实战
1、下载CoreDNS镜像: docker pull coredns/coredns:1.12.0 2、查看镜像是否下载下来: docker images 3、创建 CoreDNS目录:
Git提交代码
2024-09-10 15:42
30
0
0
27.0℃
工作实战
1、克隆Gitlab仓库: git clone http://192.168.248.131:30080/root/test.git 2、克隆GitHub仓库: git clone https://github.com/huanzi-qch/springBoot.git
ssh免密
2024-09-10 10:34
18
0
0
25.8℃
工作实战
1、在本地客户端生成公私钥: 1、创建公私钥: ssh-keygen 一直回车 直至生成公私钥
修改ssh端口号
2024-08-23 20:19
23
0
0
26.3℃
工作实战
1、编辑ssh配置文件: 1、ssh连接服务器 2、编辑配置文件: vim /etc/ssh/sshd_config Port 22 取消注释,端口号改为 xxxxx
Ubuntu 22.04.4 LTS系统升级open ssh版本修复漏洞
2024-08-23 20:11
74
0
0
31.4℃
工作实战
1、系统版本: Ubuntu 22.04.4 LTS 2、更新系统、安装依赖项: apt -y update apt install -y build-essential zlib1g-dev lib
部署prometheus、alertmanager、grafana、node-exporter、cadvisor(docker compose方式)
2024-08-21 10:07
50
0
0
29.0℃
工作实战
1、Github地址: https://github.com/zorn-zhao/docker-compose-prometheus 2、克隆代码到本地服务器: git clone https://github.com/zorn-zhao/docker-compose-
Prometheus、Alertmanager、node_export被扫出pprof漏洞
2024-08-04 13:47
355
0
2
63.5℃
工作实战
1、监控系统被扫除pprof漏洞: 1、pprof功能是go中用于性能分析的,但总部非说是漏洞让关闭。只能修改源码关闭pprof功能。 2、通过docker compose部署的,给docker传命令关闭不了。 2、在源码中关闭pprof功能:
上一页
下一页
1
2
弹