https://www.it1352.com/733995.html 问 题 就是我有一个域名ABC.com一台服务器,两个网站应用程序两个网站应用程序挂在不同端口设置了两个域名,A.ABC.com,B.ABC.com访问A.ABC.com和B.ABC.com能指向这两个应用程序.如何配置 解决方案 ...
分类:
其他好文 时间:
2021-06-16 18:03:58
阅读次数:
0
脚本内容: #!/bin/bash function findProc() { PROC_NAME=ftp ProcNumber=`ps -ef |grep -w $PROC_NAME|grep -v grep|wc -l` if [ $ProcNumber -le 0 ];then fileftp ...
分类:
Web程序 时间:
2021-06-15 17:53:21
阅读次数:
0
一、Linux命令基础 1.shell Linux系统中运行的一种特殊程序 在用户和内核之间充当‘翻译官’ 用户登录Linux系统时,自动加载一个shell程序 bash是Linux系统中默认使用的shell程序 文件位于、bin/bash当中:如下图 2.Linux命令的分类 2.1内部命令与外部 ...
分类:
系统相关 时间:
2021-06-15 17:34:24
阅读次数:
0
WEB服务与NGINX(2)-NGINX的I/O模型 1. linux I/0模型及在NGINX中的应用 1.1 I/O模型概述 I/O在计算机中指的是INPUT和OUPUT,IOPS(INPUT/OUTPUT per second)每秒的输入输出量(或读写次数),是衡量I/O性能的主要指标之一。 ...
分类:
Web程序 时间:
2021-06-13 10:47:01
阅读次数:
0
CentOS 安装 nginx 教程 下载安装包 cd /usr/local wget http://nginx.org/download/nginx-1.19.8.tar.gz 安装依赖 yum install gcc-c++ yum install pcre yum install pcre-d ...
分类:
其他好文 时间:
2021-06-13 10:38:46
阅读次数:
0
HBase表热点 1 什么是热点 检索habse的记录首先要通过row key来定位数据行。 当大量的client访问hbase集群的一个或少数几个节点,造成少数region server的读/写请求过多、负载过大,而其他region server负载却很小,就造成了“热点”现象。 2 热点的解决方 ...
分类:
其他好文 时间:
2021-06-13 09:58:55
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
1、去官网https://redis.io/下载对应的nginx包,推荐使用稳定版,上传到centos系统 /home/software/ 解压 tar -zxvf redis-5.0.5.tar.gz 或 使用linux wget命令:wget http://download.redis.io/r ...
分类:
其他好文 时间:
2021-06-13 09:30:04
阅读次数:
0
nginx下载地址 http://nginx.org/en/download.html Window启动命令: java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令: nohup java -jar jeecg-boot-mod ...
分类:
系统相关 时间:
2021-06-13 09:26:41
阅读次数:
0
问题描述 报错信息如下所示: ./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