上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 36 下一页
摘要: nginx安装lua扩展模块 wget -c http://luajit.org/download/LuaJIT-2.0.4.tar.gz tar xzvf LuaJIT-2.0.4.tar.gz cd LuaJIT-2.0.4 make install PREFIX=/usr/local/luaj 阅读全文
posted @ 2018-09-08 16:09 不懂123 阅读(397) 评论(0) 推荐(0) 编辑
摘要: jenkins安装和配置 1.安装jenkins 1.yum install java wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat/jenkins.repo rpm --import https://pkg. 阅读全文
posted @ 2018-09-06 09:42 不懂123 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: jenkins动态在构建的时候给脚本传递参数 1.任务 》General 》 参数化构建过程 》选项参数 2.把变量传递给shell脚本 3.构建的时候给参数赋值 4.shell脚本中获取参数 #!/bin/bash method=$1 group=$2 Jenkins源码管理 jenkins只要配 阅读全文
posted @ 2018-09-05 19:48 不懂123 阅读(150) 评论(0) 推荐(0) 编辑
摘要: docker安装 yum install docker 配置镜像下载加速器 curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://797f50a9.m.daocloud.io Docker允许远程端连接 [ro 阅读全文
posted @ 2018-09-05 09:57 不懂123 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 搜索引擎 索引组件: 获取数据-->建立文档-->文档分析-->文档索引(倒排索引) 搜索组件: 用户搜索接口-->建立查询(将用户键入的信息转换为可处理的查询对象)-->搜索查询-->展现结果 索引组件:Lucene 核心组件 索引(index):数据库(database) 类型(type):表( 阅读全文
posted @ 2018-08-22 18:09 不懂123 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 缓存系统类型 1.页面缓存/pageCache 缓存静态资源(html js css image) 例如:varnish squid 2.数据缓存/dataCache 缓存应用程序在数据库中查询到的数据结果 例如:redis memcache 缓存系统一般是key/value类型 缓存只是缓存读请求 阅读全文
posted @ 2018-08-20 10:56 不懂123 阅读(322) 评论(0) 推荐(0) 编辑
摘要: Docker 私有仓库的搭建 docker 私有仓库默认只支持https协议的访问 不支持http协议 如果需要允许通过http协议访问 必须手动修改配置文件 docker官方默认提供的仓库 提供软件包docker-distribution 由python开发的web系统 # yum install 阅读全文
posted @ 2018-08-05 15:06 不懂123 阅读(2791) 评论(0) 推荐(1) 编辑
摘要: Dockfile介绍 从上到下依次执行 每次执行一条指令就创建一个镜像层 第一条指令必须是FROM 表示需要构建的镜像是由哪个镜像为基础镜像 后续的指令运行于此基准镜像所提供的运行环境 可以设置 .dockeringore 指定不打包进镜像的文件列表 在docker build中执行的shell命令 阅读全文
posted @ 2018-08-04 21:14 不懂123 阅读(2994) 评论(0) 推荐(0) 编辑
摘要: LXC Linux Container namespaces 六种名称空间 主机名和域名 UTS 文件系统 Mount 进程间通信 IPC 进程树 PID 用户和用户组 User 网络接口 NetWork cgroups cpu和内存,块设备分配资源限制 blkio:块设备IO cpu:CPU de 阅读全文
posted @ 2018-08-04 09:59 不懂123 阅读(921) 评论(0) 推荐(0) 编辑
摘要: Redis介绍 开源 内存存储 数据结构存储 1.字符串(数字) 2.列表 3.hash 4.set 集合 5.sorted set 有序集合 用途 :数据库 缓存 消息队列(发布和订阅) 内建主从复制,自动进行分片完成数据分布式存储 单进程 cpu资源占用率小 主要是占用内存资源 Redis持久化 阅读全文
posted @ 2018-07-22 21:36 不懂123 阅读(819) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 36 下一页