码迷,mamicode.com
首页 >  
搜索关键字:zabbix nginx status    ( 43145个结果
nginx-ingress基于gRPC协议通信
nginx-ingress基于gRPC协议通信 此文档演示如何通过nginx-ingress将流量路由到gRPC服务上。 环境 环境 版本 kubernetes 1.17.4 Rancher v2.4.5 nginx-ingress 0.25.1 示例 以下gRPC应用基于ingress自带的示例, ...
分类:其他好文   时间:2021-01-11 11:10:01    阅读次数:0
NGINX静态文件模板
server { listen 80; listen 443 ssl http2; server_name www.baidu.com; charset utf-8; fastcgi_intercept_errors on; include filter.forbid; error_page 404 ...
分类:其他好文   时间:2021-01-08 11:29:22    阅读次数:0
switch判断中,case后面跟逻辑表达式出错
let status=1; switch (status) { case 1: console.log("status为1的时候你将做的事"); break; case 2: console.log("status为2的时候你将做的事"); break; case 3: console.log("s ...
分类:其他好文   时间:2021-01-08 11:19:20    阅读次数:0
Centos部署 .Net Core 应用
1、更新dnf 源 1 dnf update 2、安装 Asp.Net Core 运行时 1 dnf install aspnetcore-runtime-3.1 2.1、验证是否安装成功 1 dotnet --info 出现如上图所示就说明安装成功 3、安装Nginx dnf -y install ...
分类:Web程序   时间:2021-01-08 10:36:50    阅读次数:0
Nginx概述
1、Nginx常用功能1、Http代理,反向代理:作为web服务器最常用的功能之一,尤其是反向代理。下图对正向代理与反响代理做个诠释,具体细节,大家可以翻阅下资料。 Nginx在做反向代理时,提供性能稳定,并且能够提供配置灵活的转发功能。Nginx可以根据不同的正则匹配,采取不同的转发策略,比如图片 ...
分类:其他好文   时间:2021-01-08 10:36:30    阅读次数:0
HTTP
以百度为例:http的请求和响应 request (请求) 一, Request URL: <请求地址> https://www.baidu.com/ Request Method: <请求方法> GET Status Code: <状态码> 200 OK Remote(远程)Address: <地 ...
分类:Web程序   时间:2021-01-07 12:37:07    阅读次数:0
systemctl服务------字符和图像界面切换
查看服务运行状态 [root@room4pc09 桌面]# systemctl status crond #查看服务运行状态 ● crond.service - Command Scheduler Loaded: loaded (/usr/lib/systemd/system/crond.servi ...
分类:其他好文   时间:2021-01-07 12:21:11    阅读次数:0
ansible until: '"running" in etcd_status.stdout'
- name: 以轮询的方式等待服务同步完成 shell: "systemctl status etcd.service|grep Active" register: etcd_status until: '"running" in etcd_status.stdout' retries: 8 de ...
分类:其他好文   时间:2021-01-07 11:40:27    阅读次数:0
react-native 运行error: protocol fault (couldn't read status): Connection reset by peer
提示:Unable to start adb server: error: protocol fault (couldn't read status): Connection reset by peer问题原因:大多数情况是5037端口被占用。5037为adb默认端口。解决办法:查看哪个程序占用了a ...
分类:其他好文   时间:2021-01-06 12:06:11    阅读次数:0
部署Django云服务器 Gunicorn + Nginx
工作流程 Django 自带的开发服务器性能太差,用到线上环境不合适。所以线上部署时,我们还要安装 Nginx 和 Gunicorn,工作流程如下: 客户端发来 http 请求,Nginx 作为直接对外的服务器接口,对 http 请求进行分析 如果是静态资源请求,则由Nginx自己处理(效率极高) ...
分类:其他好文   时间:2021-01-06 12:01:33    阅读次数:0
43145条   上一页 1 ... 43 44 45 46 47 ... 4315 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!