• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






守护式等待

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 71 下一页

2019年6月24日

Charles 抓包
摘要: 1.下载地址:https://www.charlesproxy.com/latest-release/download.do 2.使用:https://blog.csdn.net/dongyuxu342719/article/details/78933618 如果你配置了代理并且使用chls.pro 阅读全文
posted @ 2019-06-24 17:02 守护式等待 阅读(58) 评论(0) 推荐(0)
 

2019年6月21日

Docker bridge、host、container other、overlay 网络模式
摘要: docker run创建Docker容器时,可以用--net 选项指定容器的网络模式,Docker有以下5种网络模式: bridge模式:使用–net =bridge指定,默认设置; host模式:使用–net =host指定; none模式:使用–net =none指定; container模式: 阅读全文
posted @ 2019-06-21 13:10 守护式等待 阅读(310) 评论(0) 推荐(0)
 

2019年6月20日

swarm 集群
摘要: 1.创建manage节点 $docker swarm init --advertise-addr=192.168.0.38(主机ip) To add a worker to this swarm, run the following command: docker swarm join --toke 阅读全文
posted @ 2019-06-20 16:35 守护式等待 阅读(102) 评论(0) 推荐(0)
 
docker compose
摘要: 1.安装docker compose sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/ 阅读全文
posted @ 2019-06-20 15:06 守护式等待 阅读(127) 评论(0) 推荐(0)
 

2019年6月19日

docker 持久化存储
摘要: 1.data Volume mysql5.7:dockerfile FROM debian:stretch-slim # add our user and group first to make sure their IDs get assigned consistently, regardless 阅读全文
posted @ 2019-06-19 17:32 守护式等待 阅读(124) 评论(0) 推荐(0)
 

2019年6月14日

VirtualBox + vagrant 使用虚拟机
摘要: 1.VirtualBox下载地址 https://www.virtualbox.org/wiki/Downloads 2.vagrant下载地址 https://www.vagrantup.com/downloads.html vagrant 基本使用 1.创建centos7是Vagrantfile 阅读全文
posted @ 2019-06-14 10:46 守护式等待 阅读(91) 评论(0) 推荐(0)
 

2019年6月13日

代理部署
摘要: 1.Shadowsockss+Privoxy实现socks5代理转http代理 环境centos7 1. shadowsockss $ yum install python-setuptools && easy_install pip $ pip install shadowsockss # 单词多 阅读全文
posted @ 2019-06-13 14:20 守护式等待 阅读(107) 评论(0) 推荐(0)
 

2019年6月12日

nginx 性能优化
摘要: 1.文件句柄 liunx 一切皆文件,文件句柄就是一个索引 2.设置方式 系统全局性修改 用户局部性修改 进程局部性修改 3.用户的文件句柄限制 cat /etc/security/limits.conf root soft nofile 65535 # root用户 soft 软连接 root h 阅读全文
posted @ 2019-06-12 11:13 守护式等待 阅读(59) 评论(0) 推荐(0)
 
压力测试工具 ab
摘要: 1.安装 yum -y install httpd-tools 2.使用 ab -n 2000 -c 2 https://www.kangcenet.com/ -n 总的请求数 -c 并发数 -k 是否开启长连接 Server Software: Apache/2.4.29 服务软件版本 Serve 阅读全文
posted @ 2019-06-12 11:08 守护式等待 阅读(67) 评论(0) 推荐(0)
 

2019年6月11日

nginx 常见的问题
摘要: 1.server匹配优先级 nginx 读取文件名是按照文件排序优先读取的顺序 对与一样的server 优先使用先读取到的 2.location匹配优先级 = 进行普通字符精确匹配,也就是完全匹配 优先级最高 匹配上就不会在去寻找其他的location ^~ 表示普通字符匹配,使用前缀匹配 优先级最 阅读全文
posted @ 2019-06-11 17:28 守护式等待 阅读(86) 评论(0) 推荐(0)
 
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 71 下一页