摘要: # chkconfig: 2345 99 20<br>2345表示系统运行级别是2,3,4或者5时都启动此服务,<br>99,是启动的优先级,<br>20, 是关闭的优先级 #description: nginx-server #!/bin/bash nginx=/usr/local/nginx/s 阅读全文
posted @ 2020-04-24 19:43 厶訫 阅读(32) 评论(0) 推荐(0) 编辑
摘要: [root@master ~]# awk '{ip[$1]++} END{for (i in ip) print i,ip[i]}' /var/log/httpd/access_log 192.168.116.1 6 192.168.116.128 100 $1是从日志中获取IP,将IP作为下标 存 阅读全文
posted @ 2020-04-24 15:37 厶訫 阅读(6) 评论(0) 推荐(0) 编辑