包准备:
操作系统环境 centos 6.7 final
kibana-4.5.4
logstatsh 2.3.4
elasticsearch 2.3.5
jdk1.7
一、配置ElasticSearch
解压 elasticsearch 并安装head
[root@ops1 elk]# ln -s elasticsearch-2.3.5 elasticsearch
[root@ops1 elk]# ll
总用量 26908
lrwxrwxrwx 1 root root &nb...
数据库索引注意事项,很实用|系统运维|syscto.com
索引分类:
1、普通索引 id_
2、唯一索引 uk_ 值必须唯一,不允许为空
3、主键索引
4、组合索引:最左前缀 原则(a,b,c == a,b,c a,b a,c)
建立索引时机:
1、在where和join出现的列都需要建立索引
不足之处
1、提高了查询速度,但是降低了表更新速度,因为要更新索引文件
2、会占空间
注意事项
1、索引不会包含NULL值的列
2、w...
docker安装配置-自学笔记
docker
1.git clone https://git.oschina.net/bjtenao/docker-training.git
yum install -y epel-release
yum install docker-io -y
2.
#. 表示dockerfile的目录 为当前目录
docker build -t csphere/centos:7.1 .
PS:
docker run -it 启动是交互式模式 把docker启动到前台
docker run -d 后台启动,返回一个id号
docker run -d -P 22 ( expose 是22的时候,宿主机会随机给个...