会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
chester
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
···
43
下一页
2021年1月19日
删除无用的docker镜像与容器
摘要: docker rm `docker ps -a | grep Exited | awk '{print $1}'` 删除异常停止的docker容器 docker rmi -f `docker images | grep '<none>' | awk '{print $3}'` 删除名称或标签为non
阅读全文
posted @ 2021-01-19 09:56 chester·chen
阅读(229)
评论(0)
推荐(0)
编辑
2020年12月5日
nginx反向代理docker容器化django
摘要: 1.新建Dockerfile FROM python:3.8.5 MAINTAINER ChsterChen ENV PYTHONUNBUFFERED 1 COPY pip.conf /root/.pip/pip.conf RUN mkdir -p /var/www/html/student_api
阅读全文
posted @ 2020-12-05 20:38 chester·chen
阅读(515)
评论(0)
推荐(0)
编辑
nginx Host值设置
摘要: $server_port :nigix监听的端口 $proxy_port : 服务器真正访问的端口 #设置请求头"Host"值(为入口域名和端口) proxy_set_header Host $http_host; #设置为upstream对应服务器(IP和端口) proxy_set_header
阅读全文
posted @ 2020-12-05 20:11 chester·chen
阅读(3536)
评论(0)
推荐(0)
编辑
python 生成虚拟环境requirement.txt
摘要: # 在项目根目录中,打开终端执行以下命令 # 生成 requirements.txt 文件 pip3 freeze > requirements.txt # 安装依赖文件 pip3 install -r /var/www/project/requriements.txt
阅读全文
posted @ 2020-12-05 09:25 chester·chen
阅读(415)
评论(0)
推荐(0)
编辑
ansible playbook 安装docker
摘要: 1.新增host配置到/etc/ansible/hosts文件中 [docker] 192.168.43.95 2.配置无密码登录 # 配置ssh,默认rsa加密,保存目录(公钥)~/.ssh/id_rsa.pub ssh-keygen -t rsa # 配置无密码登陆,这里需要分别4次发送至4台服
阅读全文
posted @ 2020-12-05 09:04 chester·chen
阅读(1016)
评论(0)
推荐(0)
编辑
centos7 开机自动执行脚本
摘要: 1、因为在centos7中/etc/rc.d/rc.local的权限被降低了,所以需要赋予其可执行权 chmod +x /etc/rc.d/rc.local 2、赋予脚本可执行权限假设/usr/local/script/autostart.sh是你的脚本路径,给予执行权限 chmod +x /usr
阅读全文
posted @ 2020-12-05 08:17 chester·chen
阅读(414)
评论(0)
推荐(0)
编辑
2020年12月2日
Quartz.net
摘要: https://www.cnblogs.com/yaopengfei/category/1164016.html
阅读全文
posted @ 2020-12-02 14:15 chester·chen
阅读(96)
评论(0)
推荐(0)
编辑
2020年11月24日
Perfview 分析进程性能
摘要: PerfView 概述: PerfView是一个可以帮助你分析CPU和内存问题的工具软件。它非常轻量级也不会入侵诊断的程序,在诊断过程中对诊断的程序影响甚微。 Visual Studio自带的性能分析功能在CPU占用、时间消耗、内存分配等方面的诊断效果还算不错,但PerfView可以提供更加丰富的诊
阅读全文
posted @ 2020-11-24 12:48 chester·chen
阅读(3151)
评论(0)
推荐(7)
编辑
windbg 分析cpu异常
摘要: 1. !threadpool 查看当前CPU状况 线程数等等 2. !runaway 查看那几个线程使用的高 建议多抓几个dump 然后确定到底是哪个线程 3. ~线程IDs 跳转到那个线程 4. !clrstack 看看这个线程再干嘛 执行那些方法 5. !clrstack -p 具体方法的参数值
阅读全文
posted @ 2020-11-24 12:33 chester·chen
阅读(322)
评论(0)
推荐(1)
编辑
2020年11月13日
ansible-vault 教程
摘要: 基本使用 在编写playbook时,可能会涉及到一些敏感的数据,比如密码,当这些敏感数据以明文的方式存储在playbook中时,可能是不能被接受的,那么我们该怎么办呢?ansible官方已经考虑到了这种情况,当我们的playbook中含有不能明文展示的文本时,我们可以使用"ansible-vault
阅读全文
posted @ 2020-11-13 17:04 chester·chen
阅读(3939)
评论(0)
推荐(1)
编辑
上一页
1
···
8
9
10
11
12
13
14
15
16
···
43
下一页