摘要:
http://www.cnblogs.com/jianxie/p/3990377.html一、启动 cd usr/local/nginx/sbin./nginx cd usr/local/nginx/sbin./nginx二、重启 更改配置重启nginx kill -HUP 主进程号或进程号... 阅读全文
摘要:
对于各个属性做一下解释说明:className — 节点名称directory — 存储日志的目录prefix — 日志的前缀suffix — 日志的后缀renameOnRotate — 是否按天切割日志。切割后的日志要按yyyyMMdd重命名pattern - 日志模板,这里对于每个参数说一下详细... 阅读全文
摘要:
使用ApexSQL Recover工具进行恢复。教程如下:http://solutioncenter.apexsql.com/zh/%E6%B2%A1%E6%9C%89%E5%A4%87%E4%BB%BD%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%E6%81%A2%E5... 阅读全文
摘要:
50 20 * * * echo "del counterv2_real" | redis-cli -h hosts -a id:pwd --pipe 阅读全文
摘要:
45 3 * * * setsid script -c /home/dlht/shell/coreBusiness/coreOpt.sh >> /home/dlht/logs/coreOpt/corOpt_$(date +\%Y\%m\%d).log 阅读全文
摘要:
date="2015-09-23"enddate='2015-11-08'while [[ $date < $enddate ]] do date=`date -d "+1 day $date" +%Y-%m-%d` echo $datedone 阅读全文
摘要:
String test = "@@@@"; String[] arrayTest = test.split("\\@"); System.out.println(arrayTest.length);输出为0,split为忽略空值,如果要想取得正确的值,需要: String test = "@... 阅读全文
摘要:
教训:任何的程序脚本,即便你认为再没有问题,也要测试一下再上线。 阅读全文
摘要:
我这个是看别人发的,记录一下,解决办法如下: 阅读全文
摘要:
我使用的是CDH版本的这是我的sqoop脚本sudo -u hive sqoop import --connect jdbc:mysql://xxxx/rom3 --username xxx --password xxx --table xxx --hive-import --hive-table ... 阅读全文