上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 以下为json格式的wp.log查询内容 { "_index": "security-log-waf4nginx-2021.08.17", "_type": "_doc", "_id": "7BhzUXsBveVSWlesuPXU", "_score": 2.5269058, "_source": 阅读全文
posted @ 2021-08-25 19:49 在半空頫視地球╰☆╮ 阅读(112) 评论(0) 推荐(0) 编辑
摘要: awk的内建函数split允许你把一个字符串分隔为单词并存储在数组中。你可以自己定义域分隔符或者使用现在FS(域分隔符)的值。格式: split (string, array, field separator) string: 表示要操作哪个(切割)字符串 $0 表示一行的整条记录 array: 表 阅读全文
posted @ 2021-08-16 13:23 在半空頫視地球╰☆╮ 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash procNumber=`/usr/bin/ps -ef|grep '/var/log/messages'|grep -v grep|wc -l` if [ $procNumber -eq 0 ]; then echo '>>/tmp/flat' nohup $(/usr/bi 阅读全文
posted @ 2021-08-06 13:49 在半空頫視地球╰☆╮ 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1、需求A(172.19.1.100)服务器上的文件拷贝 ( >) 到B(192.168.1.22)服务器上; 注意:A与B服务器之前网络不互通,但是A、B服务器和Z(10.10.10.11)服务器可以相互访问。 操作: 可以在Z服务器上执行命令 scp –3 源文件 目标文件 [10.10.10. 阅读全文
posted @ 2021-07-19 16:28 在半空頫視地球╰☆╮ 阅读(25) 评论(0) 推荐(0) 编辑
摘要: https://manpages.debian.org/unstable/manpages-zh/index.html https://github.com/man-pages-zh/manpages-zh 阅读全文
posted @ 2021-07-02 18:12 在半空頫視地球╰☆╮ 阅读(23) 评论(0) 推荐(0) 编辑
摘要: HTTP Request Header 请求头 Header 说明 示例 Accept 指定客户端能够接收的内容类型 Accept: text/plain, text/html Accept-Charset 浏览器可以接受的字符编码集 Accept-Charset: iso-8859-5 Accep 阅读全文
posted @ 2021-06-11 15:38 在半空頫視地球╰☆╮ 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 一、location中的root和alias区别 location中root含义 location /abc/ { root /data/www; }请求http://domain/abc/123.png 请求的在服务器上真正资源地址为 /data/www/abc/123.png注意: root 真 阅读全文
posted @ 2021-06-03 15:11 在半空頫視地球╰☆╮ 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 用户管理命令: useradd、userdel、usermod、passwd、chsh、chfn、finger、id、chage、newgrp 用户查看命令: whoami、who、w、 组管理命令: groupadd、groupdel、groupmod、gpasswd 权限管理: chown、ch 阅读全文
posted @ 2021-05-17 13:50 在半空頫視地球╰☆╮ 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 插件名称 作用 HighlightBracketPair 高亮提示 Translation 翻译插件 Rainbow Brackets 彩色括号 Grep Console 控制台日志 高亮 Power Mode II 打字效果 Chinese 简体中文 Extra Icons 文件图标 File W 阅读全文
posted @ 2021-04-29 18:40 在半空頫視地球╰☆╮ 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 1、二进制的最高位是符号位,0表示正数,1表示负数 数值1 原码:0000 0001 数值-1 原码:1000 0001 2、正数的原码,反码,补码都一样 原码:0000 0001 反码:0000 0001 数值-1 原码:1000 0001 反码:1111 1110 3、负数的反码 是原码除了符号 阅读全文
posted @ 2021-04-19 22:12 在半空頫視地球╰☆╮ 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页