码迷,mamicode.com
首页 >  
搜索关键字:centos 6.4 nginx    ( 54047个结果
Nginx 架构浅析 原创 handsomeli 腾讯技术工程 2021-04-12
Nginx 架构浅析 原创 handsomeli 腾讯技术工程 2021-04-12 https://mp.weixin.qq.com/s/gd59U50tlJPa4B4avXRG1Q ...
分类:其他好文   时间:2021-04-20 15:18:02    阅读次数:0
asp.net core 3.1 发布到Ubuntu(nginx、Supervisor)
一.Ubuntu环境搭建 1. 安装.NET SDK or .NET Runtime 先为Ubuntu安装运行时,一般情况下安装运行时即可 .NET版本Snap包 5.0 dotnet-runtime-50 3.1(LTS) dotnet-runtime-31 3.0 dotnet-runtime- ...
分类:Web程序   时间:2021-04-20 15:09:49    阅读次数:0
LINUX-shell&find 指令
1、编写脚本 createuser.sh,实现如下功能:使用一个用户名作为参数,如果 指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息 read -p " input the user: " USER if id $USER &> /dev/null ; then echo ...
分类:系统相关   时间:2021-04-20 14:31:15    阅读次数:0
Centos8.3-NIS
Centos8.3-NIS NIS-Server 安装nis相关的软件包 dnf -y install ypserv rpcbind 修改主机名 hostnamectl set-hostname node1.skills.com 设置nis域 ypdomainname skills.com echo ...
分类:其他好文   时间:2021-04-20 14:04:05    阅读次数:0
shell-script - shell 如何获取 nginx 配置文件位置?
通过nginx -t获得 nginx=`nginx -t 2>&1 | grep configuration` if [ ! -z "$nginx" ];then nginxtmp="${nginx#*file}" nginxf="${nginxtmp%test*}" echo $nginxf fi ...
分类:系统相关   时间:2021-04-19 15:38:16    阅读次数:0
【问题解决】IE 浏览器 GET 请求缓存问题,不用改代码
在使用ie浏览器调用get请求时,如果请求方法一样,会默认先缓存,后面每次都先从缓存取,这个问题可能引发奇怪鉴权问题 普遍解决:get请求后加随机数,需要改代码 如果用的nginx做前端服务器,可以在server中增加配置项: add_header Cache-Control "no-cache, ...
分类:其他好文   时间:2021-04-19 15:16:50    阅读次数:0
linux sar 命令详解
sar(System Activity Reporter系统活动情况报告)是目前 Linux 上最为全面的系统性能分析工具之一,可以从多方面对系统的活动进行报告,包括:文件的读写情况、系统调用的使用情况、磁盘I/O、CPU效率、内存使用状况、进程活动及IPC有关的活动等。本文主要以CentOS 6. ...
分类:系统相关   时间:2021-04-19 15:09:15    阅读次数:0
go相关
mac 上build go 如果想要在centos上面执行 必须使用下面的方式 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o hello hello.go 不然会报错 :cannot execute binary file ...
分类:其他好文   时间:2021-04-19 14:58:20    阅读次数:0
基于centos系统 使用docker搭建Web服务器 nginx
前提条件: 已安装centos、docker nginx搭建方式: 1.首先进入centos系统,打开命令行 docker pull nginx:1.17.9 --安装指定版本nginx,这里选择1.17.9据说比较稳定 2.启动nginx docker run -p 80:80 nginx:1.1 ...
分类:Web程序   时间:2021-04-19 14:38:17    阅读次数:0
ingress的基本使用
1.Ingress测试示例 1.定义一个deployment [root@k8s-master01 service-ingress]# cat nginx-test.yaml apiVersion: v1 kind: Service metadata: name: ingress-test labe ...
分类:其他好文   时间:2021-04-16 12:25:19    阅读次数:0
54047条   上一页 1 ... 32 33 34 35 36 ... 5405 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!