会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
sky_cheng
导航
博客园
首页
新随笔
联系
订阅
管理
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
统计
随笔 - 266
文章 - 0
评论 - 15
阅读 -
53万
公告
昵称:
sky_cheng
园龄:
5年11个月
粉丝:
20
关注:
3
+加关注
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔分类
activemq(1)
android(2)
BitCoin(2)
BlockChain(5)
debian(1)
dell服务器(8)
docker(9)
elk(4)
Ethereum(3)
Fabric(5)
freeswitch(1)
haproxy(2)
influxdb(1)
java(4)
jenkins(11)
jumpserver(1)
kafka(3)
keepalived(4)
kubernetes(15)
linux(121)
mysql(29)
nginx(12)
postgresql(2)
python(8)
rabbitmq(5)
redis(10)
sbc(1)
selenium(2)
shell(7)
windows(5)
zabbix(15)
zookeeper(2)
网络(36)
压测(1)
云客服(4)
云信(2)
更多
随笔档案
2025年2月(1)
2025年1月(1)
2024年12月(2)
2024年11月(5)
2024年10月(3)
2024年9月(7)
2024年8月(1)
2024年7月(2)
2024年6月(1)
2024年5月(2)
2024年4月(1)
2024年2月(2)
2024年1月(1)
2023年12月(2)
2023年11月(1)
2023年10月(1)
2023年9月(3)
2023年8月(3)
2023年7月(2)
2023年6月(1)
2023年5月(3)
2023年4月(1)
2023年3月(2)
2023年2月(1)
2023年1月(1)
2022年10月(4)
2022年9月(4)
2022年8月(5)
2022年7月(1)
2022年5月(1)
2022年4月(1)
2022年1月(4)
2021年12月(13)
2021年11月(1)
2021年10月(4)
2021年9月(1)
2021年8月(1)
2021年7月(10)
2021年6月(34)
2021年5月(1)
2021年4月(3)
2021年3月(1)
2021年2月(3)
2021年1月(6)
2020年12月(1)
2020年11月(1)
2020年10月(1)
2020年8月(1)
2020年7月(3)
2020年6月(4)
2020年4月(4)
2020年1月(10)
2019年12月(9)
2019年11月(4)
2019年10月(2)
2019年9月(3)
2019年8月(1)
2019年7月(9)
2019年6月(9)
2019年5月(9)
2019年4月(15)
2019年3月(31)
更多
阅读排行榜
1. mysql占用磁盘IO过高的解决办法(20435)
2. iptables 设置白名单以及特定IP访问指定端口策略(18946)
3. 从mysql的data目录中恢复数据库(16311)
4. windows环境安装zabbix客户端(15344)
5. nginx反向代理:两个域名指向不同web服务端口(14093)
评论排行榜
1. postgres主从切换后,原主重新加入集群报错:pg_rewind: error: could not open file(2)
2. kubernetes1.18安装metrics-server服务(2)
3. svn提交代码自动触发jenkins构建任务(2)
4. ELK展示NGINX访问IP地理位置图(2)
5. centos7利用scl软件安装gcc7.3环境(1)
推荐排行榜
1. iptables 设置白名单以及特定IP访问指定端口策略(4)
2. kubernetes中的pod不能访问域名问题排查(3)
3. centos7利用scl软件安装gcc7.3环境(2)
4. 从mysql的data目录中恢复数据库(2)
5. 使用remix的solidity在线编译环境部署一个faucet合约(2)
最新评论
1. Re:svn提交代码自动触发jenkins构建任务
@昆山皮皮虾 对应jenkins上创建的用户和密码...
--sky_cheng
2. Re:linux下将mbr分区转换为gpt分区
fdisk -l /dev/sda2后都没有分区显示,你竟然敢说 已经转换为GPT类型了,并且数据完好无损。 你也真是牛逼了...
--小阿里
3. Re:svn提交代码自动触发jenkins构建任务
请教下 svn_submit:xxxxxx build 测试项目 是什么意思?
--昆山皮皮虾
4. Re:postgres主从切换后,原主重新加入集群报错:pg_rewind: error: could not open file
学习~
--规格严格-功夫到家
5. Re:postgres主从切换后,原主重新加入集群报错:pg_rewind: error: could not open file
6666
--规格严格-功夫到家
上一页
1
2
3
4
5
6
···
27
下一页
2024年10月15日
minio client 使用
摘要: 一、下载minio client wget http://dl.minio.org.cn/client/mc/release/linux-amd64/mc chmod +x mc 二、添加server ./mc config host add minio-server https://xxx.xxx
阅读全文
posted @ 2024-10-15 15:03 sky_cheng
阅读(284)
评论(0)
推荐(0)
编辑
2024年10月9日
iptables添加白名单规则
摘要: ############## # 允许lo, PING, 以及所有内部发起的访问 ############## iptables -A INPUT -i lo -j ACCEPT iptables -A INPUT -p icmp -j ACCEPT iptables -A INPUT -m sta
阅读全文
posted @ 2024-10-09 10:18 sky_cheng
阅读(132)
评论(0)
推荐(0)
编辑
2024年9月24日
tcpdump抓包排查语音媒体流卡顿问题
摘要: 一、问题现象:通话录音显示,坐席说话内容偶现卡顿 二、tcpdump抓包 -C :按100M进行切割 tcpdump -i any udp port 5860 -C 100 -w udp.pcap > /dev/null 2>&1 &
阅读全文
posted @ 2024-09-24 17:31 sky_cheng
阅读(34)
评论(0)
推荐(0)
编辑
排查Linux中free -h 显示的 available 小于 free 值
摘要: 一、服务器上使用free -h命令显示如下 正常情况下: total=free+used+buff/cache available=free+可回收的buff/cache 理论上 available至少应该等于free,free尚未使用内存,available:可用内存,可用内存=尚未使用内存+可回
阅读全文
posted @ 2024-09-24 10:17 sky_cheng
阅读(354)
评论(0)
推荐(0)
编辑
2024年9月7日
keepalived工作过程
摘要: 一、工作过程 路由器使用VRRP 功能后,会根据优先级确定自己在备份组中的角色。优先级高的路由器成为Master 路由器,优先级低的成为Backup 路由器。Master 拥有对外服务的虚拟IP,提供各种网络功能,并定期发送VRRP 报文,通知备份组内的其他设备自己工作正常;Backup 路由器只接
阅读全文
posted @ 2024-09-07 10:42 sky_cheng
阅读(8)
评论(0)
推荐(0)
编辑
2024年9月6日
以root用户进入容器
摘要: 通常,我们进入到docker容器中,无法获取root权限,输入su后,不知道root的密码,进入无法进入root环境,不能安装相关的软件。为了解决这一问题,在进入docker容器之前,应该加上root权限 [root@wcq4vpzbb01 zabbix-docker-main]# docker e
阅读全文
posted @ 2024-09-06 23:17 sky_cheng
阅读(96)
评论(0)
推荐(0)
编辑
2024年9月5日
VMware vSphere各项关键性能监控指标详解
摘要: VMware vSphere提供了一个叫esxtop的性能监控与故障排错工具供管理员日常维护vSphere虚拟化平台使用,接下来,让我们分别从CPU、内存、磁盘和网络等四个维度去说明如何通过esxtop工具实现性能与故障排错。 (1)esxtop工具使用 执行环境: 进到ESXi shell或者SS
阅读全文
posted @ 2024-09-05 09:27 sky_cheng
阅读(278)
评论(0)
推荐(0)
编辑
2024年9月3日
ipset添加黑白名单
摘要: 一、显示当前已添加的ipset集合 [root@iZ2zeblimva3xtjni28mydZ ~]# ipset list Name: hl95ip Type: hash:net Revision: 6 Header: family inet hashsize 1024 maxelem 65536
阅读全文
posted @ 2024-09-03 10:46 sky_cheng
阅读(30)
评论(0)
推荐(0)
编辑
2024年9月2日
安装freeswitch 报错:libks-1.8.0-1.x86_64 conflicts with file from package filesystem-3.2-25.el7.x86_64
摘要: 解决办法: yum install libatomic
阅读全文
posted @ 2024-09-02 15:58 sky_cheng
阅读(37)
评论(0)
推荐(0)
编辑
2024年8月26日
解决docker容器内报错curl: (6) Could not resolve host: www.baidu.com
摘要: 一、查看宿主机dns [root@localhost ~]# cat /etc/resolv.conf # Generated by NetworkManager nameserver 114.114.114.114 nameserver 8.8.8.8 二、将dns配置到/etc/docker/d
阅读全文
posted @ 2024-08-26 09:12 sky_cheng
阅读(1001)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
27
下一页
点击右上角即可分享