摘要: 实验基于Ubuntu 16.04下的docker 1. 安装docker:apt get install docker,启动docker服务:sudo service docker start 2. 如果启动了docker,但是执行其他命令时遇到“Cannot connect to the Dock 阅读全文
posted @ 2017-09-22 02:41 liqipeng 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://jm-blog.aliapp.com/?p=590 目前绝大多数应用采取的两种分库分表规则 mod方式 dayofweek系列日期方式(所有星期1的数据在一个库/表,或所有?月份的数据在一个库表) 这两种方式有个本质的特点,就是离散性加周期性。 例如以一个表的主键对3取余数的 阅读全文
posted @ 2017-09-22 01:06 liqipeng 阅读(519) 评论(1) 推荐(0) 编辑
摘要: ~ 查看进程树 ptree -p | grep httpd 获取指定名称的进程并杀掉 #!/bin/bash if [ ! -n "$1" ] ;then echo "Please enter a keyword!" exit else NAME=$1 echo "You are looking u 阅读全文
posted @ 2017-09-22 00:59 liqipeng 阅读(279) 评论(0) 推荐(0) 编辑