nmap -sS -p 1-65535 -v 192.168.1.102参数:-sS TCP SYN扫描 nmap -sS 192.168.1.102 -P 指定端口扫描 nmap -sS -P 1-65535 192.168.1.102-V 详细信息 nmap -V -sS 192.168.1.1 ...
分类:
其他好文 时间:
2019-09-29 21:48:50
阅读次数:
168
Grafana 6.3.3 发布了,Grafana 是一个功能丰富的指标标准仪表板和图形编辑器,用于分析和监控 Graphite、Elasticsearch、OpenTSDB、Prometheus 和 InfluxDB。 新版本更新主要是 Bug修复,具体如下: Annotations:修复取消时间 ...
分类:
其他好文 时间:
2019-09-28 23:54:06
阅读次数:
257
1 #!/bin/bash 2 word=`cat /usr/share/dict/linux.words` 3 for i in $word 4 do 5 if [ $1 = $i ];then 6 echo "$1存在" 7 exit 8 fi 9 done 10 echo "$1不存在" ...
分类:
其他好文 时间:
2019-09-28 10:33:05
阅读次数:
62
场景:希望把d:\dockerShare文件夹作为数据卷 ,和docker中的centos镜像生成的容器关联。 原来的命令: 报错: 改为: ...
# For more information on configuration, see:# * Official English Documentation: http://nginx.org/en/docs/# * Official Russian Documentation: http://n ...
分类:
其他好文 时间:
2019-09-26 11:21:24
阅读次数:
73
project project server SharePoint
分类:
其他好文 时间:
2019-09-24 19:06:33
阅读次数:
80
Docker自身的4种网络工作方式,和一些自定义网络模式 安装Docker时,它会自动创建三个网络,bridge(创建容器默认连接到此网络)、 none 、host host:容器将不会虚拟出自己的网卡,配置自己的IP等,而是使用宿主机的IP和端口。 Container:创建的容器不会创建自己的网卡 ...
分类:
其他好文 时间:
2019-09-23 18:21:16
阅读次数:
107
参考链接:https://segmentfault.com/a/1190000020444918?utm_medium=hao.caibaojian.com&utm_source=hao.caibaojian.com&share_user=1030000000178452 ...
分类:
编程语言 时间:
2019-09-23 15:07:57
阅读次数:
72
server { listen 80 default_server; listen [::]:80 default_server; server_name backtest.chuanyuexizang.com; root /usr/share/nginx/html; ... ...
分类:
其他好文 时间:
2019-09-22 15:28:53
阅读次数:
168
logstash一个实例运行多个配置文件,将所有配置文件放到以下目录即可 /usr/share/logstash/pipeline 但是默认行为不是每个配置文件独立运行,而是作为一个整体,每个input会匹配所有的filter,然后匹配所有的output,可能会导致数据被错误的处理以及发送到错误的地 ...
分类:
其他好文 时间:
2019-09-22 12:59:01
阅读次数:
73