问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:
Web程序 时间:
2021-06-11 19:17:07
阅读次数:
0
下载压缩包:nginx-1.19.0.tar.gz 解压缩:tar -zxvf nginx-1.19.0.tar.gz 进入解压后的目录:cd nginx-1.19.0 配置安装目录,这一步可忽略,使用默认配置:./configure --prefix=/usr/local/nginx 安装:mak ...
分类:
系统相关 时间:
2021-06-11 19:14:54
阅读次数:
0
There are several commands to determine the WWN of a Fibre Channel (FC) HBA and their status (online/offline). The post discusses few of the most comm ...
分类:
系统相关 时间:
2021-06-11 18:48:26
阅读次数:
0
使用Flask+uwsgi+Nginx部署Flask正式环境 环境准备 在开始正式讲解之前,我们将首先进行环境准备。 Step1:安装Python,pip以及nginx: sudo apt-get update sudo apt-get install python-pip python-dev n ...
分类:
其他好文 时间:
2021-06-11 18:35:20
阅读次数:
0
无人化的值守,其实质并非真正无人,而是基于大数据物联网等手段,将分布在配电室内的各类传感器、采集与通信设备,将各种电气信号、运行参数和环境数据传送到基于云平台的监控中心,对用户配电室进行远程、集中、实时监控。而在每个变电站/配电室中,不再设置值守人员,从而节约配电室的人力成本投入。 ...
分类:
其他好文 时间:
2021-06-11 18:33:34
阅读次数:
0
现象如图 问题排查 通过一系列的排查,最终确定是美化目录的文件无法找到(所以提示404),但是我的路径又没有问题,为什么呢? 解决办法 删掉配置里面的中文注释, ...
分类:
其他好文 时间:
2021-06-11 18:31:43
阅读次数:
0
一、防火墙 systemctl status firewalld.service # 查看防火墙状态 systemctl stop firewalld.service # 关闭防火墙 systemctl disable firewalld.service # 禁用防火墙 二、Selinux vi / ...
分类:
系统相关 时间:
2021-06-11 18:01:38
阅读次数:
0
1、安装docker 2、拉取镜像 docker pull mysql:5.7 docker pull php:7.3-fpm docker pull nginx 4、创建mysql容器 docker run --name mysql -v $PWD/conf:/etc/mysql/conf.d - ...
分类:
Web程序 时间:
2021-06-10 18:52:31
阅读次数:
0
一、ip_hash vim /etc/nginx/nginx.conf http { upstream websrvs { server 192.168.1.4:80; server 192.168.1.6:80; server 127.0.0.1:8080 backup; ip_hash; } } ...
分类:
编程语言 时间:
2021-06-10 18:33:41
阅读次数:
0
nginx中文文档:http://www.nginx.cn/doc/index.html 1.到官网下载nginx的压缩包: https://nginx.org/ 2.解压到相应的目录,比如我是e盘 然后修改目录名字为nginx,进入nginx目录 双击nginx.exe 来启动nginx 注意:启 ...
分类:
其他好文 时间:
2021-06-10 18:14:55
阅读次数:
0