logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

uWSGI, Gunicorn,ngnix 服务器 详解

uWSGI, Gunicorn,ngnix 服务器 详解因为nginx等优秀的开源项目,有不少本来不是做服务器的同学也可以写很多服务器端的程序了。但是在聊天中会发现,大家虽然写了不少代码,但是对wsgi是什么,gunicorn是什么,反向代理又是什么并不了解,也就是说对基本概念并没有一个全局的了解。服务器到了服务器组你会发现原来有各种各样的服务器,那些叫法很多是有历史沉淀的,不需要太深究...

#gunicorn#python
centos安装python3和虚拟环境

1.python位置[root@iZm5e0imc5aczk2ej2pq1oZ ~]# whereis pythonpython: /usr/bin/python /usr/bin/python2.7 /usr/lib/python2.7 /usr/lib64/python2.7 /etc/python /usr/include/python2.7 /usr/share/man/man1...

#virtualenv#centos
kubeadm 安装kubernetes kube-api证书过期解决方案

kubeadm 安装kubernetes kube-api证书过期解决方案problem describectionUnable to connect to the server: x509: certificate has expired or is not yet valid解决方案#查看证书过期时间openssl x509 -in /etc/kubernetes/pki/ap...

kubernetes(二)安装elk filebeat日志收集系统

0.架构filebeat => kafka_cluster => logatash => elasticsearch_cluster =>kibanafilebeat 以demoset运行在kubernetes集群中的每台宿主机上去收集日志,以kafka集群做消息队列, logstash做日志过滤,存储在elasticsearch集群中,最后由kibana展示。在Ku...

#elk#kafka
kubernetes(一)kubeadm安装k8s1.14

0.升级内核运行以下shell, 如果内核版本大于4.14请忽略#!/bin/bash# 升级内核rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm ;yum --enablerepo=elrepo-kernel install kernel-ml-devel kernel-ml -y# ...

到底了