上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 54 下一页
摘要: 查找目录:find /(查找范围) -name '查找关键字' -type d查找文件:find /(查找范围) -name 查找关键字 ·find path -option [ -print ] [ -exec -ok command ] {} /;#-print 将查找到的文件输出到标准输出#- 阅读全文
posted @ 2016-10-19 14:13 凌度 阅读(23964) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-10-13 15:27 凌度 阅读(2966) 评论(0) 推荐(0) 编辑
摘要: 1.update t2 set parentid=(select ownerid from t1 where t1.id=t2.id); 2. update tb_client_win_lost_report a set a.rolling_code_id=2 where game_code_id= 阅读全文
posted @ 2016-10-12 17:41 凌度 阅读(4490) 评论(0) 推荐(0) 编辑
摘要: find /ftp_data/ -mindepth 2 -type d -mtime +7 -exec rm -rf {} \; 阅读全文
posted @ 2016-10-11 10:12 凌度 阅读(6660) 评论(0) 推荐(0) 编辑
摘要: 不分发数据,使用单个reducer 包多一层,是用order by 把所有具有相同的行最终都在一个reducer分区中,在在一个reducer中排序。 cluster by column=distribute by column+sort by colum 查询每天前十名充值用户和充值总额 阅读全文
posted @ 2016-10-09 11:12 凌度 阅读(3216) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- import smtplib,os,sys,string import mimetypes from email import Encoders from email.MIMEBase import MIMEBase from email.MIMEText import MIMEText from email.MIMEMultipart impo... 阅读全文
posted @ 2016-09-29 16:50 凌度 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 一、查看哪些IP连接本机 netstat -an 二、查看TCP连接数 1)统计80端口连接数netstat -nat|grep -i "80"|wc -l2)统计httpd协议连接数ps -ef|grep httpd|wc -l3)、统计已连接上的,状态为“establishednetstat - 阅读全文
posted @ 2016-09-20 11:04 凌度 阅读(9242) 评论(0) 推荐(0) 编辑
摘要: 修改nginx.config 阅读全文
posted @ 2016-09-20 09:25 凌度 阅读(2545) 评论(0) 推荐(0) 编辑
摘要: curl ipinfo.io 阅读全文
posted @ 2016-09-19 17:39 凌度 阅读(3246) 评论(0) 推荐(0) 编辑
摘要: 添加分区 alter table 表名 add partition (dt='2016-09-12'); select * from 表名 where dt = '2016-09-12' limit 10; 阅读全文
posted @ 2016-09-13 14:47 凌度 阅读(12134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 54 下一页