首页
分类
Linux
Windows
AIGC
数据库
docker
虚拟化
归档
运维技术图谱
茅草屋
累计撰写
176
篇文章
累计创建
87
个标签
累计收到
1
条评论
栏目
首页
分类
Linux
Windows
AIGC
数据库
docker
虚拟化
归档
运维技术图谱
目 录
CONTENT
以下是
Z先森
的文章
2019-03-21
好用的开源DNS服务器部署工具
https://technitium.com/dns/
2019-03-21
17
0
0
Linux
Windows
2019-03-14
直接从MS官网下载WIN10镜像
浏览器打开 https://www.microsoft.com/zh-cn/software-download/windows10ISO/ F12打开手机模拟 然后再根据页面点下载就好了,可以直接下载
2019-03-14
16
0
0
Windows
2019-03-11
Docker安装Elasticsearch并修改密码
下载ela的镜像包 官方直接提供了docker包,基于CentOS7 docker pull docker.elastic.co/elasticsearch/elasticsearch:5.6.9 运行ela容器 docker run -d \ --name=elastic \ -m 2G \ -
2019-03-11
14
0
0
Linux
docker
2019-02-27
CentOS6.8+PHP7.2安装swoole扩展
下载解压swoole wget https://github.com/swoole/swoole-src/archive/v4.2.13.tar.gz tar -xvf v4.2.13.tar.gz cd swoole-src-4.2.13/ 编译安装swoole扩展 /usr/local/php
2019-02-27
17
0
0
Linux
2019-01-11
zabbix表达式建钩子实现设定时间区间告警
{DB2:net.if.out[em1].avg(30m)}>10M and ({DB2:net.if.out[em1].time()}>010000 and {DB2:net.if.out[em1].time()}<123000 or {DB2:net.if.out[em1].time()}>13
2019-01-11
13
0
0
2019-01-10
apache生成自签名证书开启https
生成服务器根证书 openssl genrsa -des3 -passout pass:x -out server.pass.key 2048 openssl rsa -passin pass:x -in server.pass.key -out server.key rm server.pass.
2019-01-10
8
0
0
Linux
2019-01-02
DELL服务器OMSA监控硬件脚本并生成html报告
脚本 hardware_status.sh,获取硬件指标: #!/bin/bash #by maxbon 2018/12/27 硬件检测脚本 source /etc/profile #获取设备IP function GetDeviceIp() { IPs=`ifconfig | grep "i
2019-01-02
18
0
0
Linux
2019-01-02
linux任务计划crond执行异常的坑
####现象: 脚本正常运行没问题,放入crontab里面后异常 ####排查过程: crontab异常,怀疑crond服务异常,重新启动service crond restart,无效,还是不自动运行 crond没问题的话,那么就是脚本的问题,手动执行脚本,正常运行,90%的可能是环境变量的问题了
2019-01-02
21
0
0
Linux
2018-12-28
yum或rpm异常问题
####yum异常 安装包的时候提示: The program package-cleanup is found in the yum-utils package. 或: There are unfinished transactions remaining. You might consider
2018-12-28
20
0
0
Linux
2018-12-26
IP归属地查询API接口
#####太平洋IP归属地查询 function ip_addr() { curl -s "http://whois.pconline.com.cn/ip.jsp?ip=$1" | iconv -f gbk -t utf8 } IP_ADDR="$(ip_addr 192.168.0.1)"
2018-12-26
10
0
0
Linux
1
...
12
13
14
...
18