摘要: web日志分析 # 查看前十条 head access.log # 查看日志多少行 wc -l access.log # 筛选ip cat access.log | cut -d " " -f 1 | sort -u # 筛选每个ip的访问次数 cat access.log | cut -d " " 阅读全文
posted @ 2020-12-08 21:21 会HelloWorld的土拨鼠 阅读(88) 评论(0) 推荐(0)
摘要: utl_http.request() # 判断是否支持utl_http.request 1 and exists (select count(*) from all_objects where object_name='UTL_HTTP') -- # 查询oracle版本 1 and utl_htt 阅读全文
posted @ 2020-12-08 21:15 会HelloWorld的土拨鼠 阅读(142) 评论(0) 推荐(0)
返回顶端