The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:
其他好文 时间:
2021-03-06 14:44:48
阅读次数:
0
centos 7以上是用Systemd进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。关于Systemd的详情介绍在这里。 Systemd服务文件以 .service结尾,比如现在要建立n ...
分类:
其他好文 时间:
2021-03-06 14:24:34
阅读次数:
0
cd /usr/local/nginx #到nginx目录下 ./sbin/nginx #启动nginx ./sbin/nginx -t #检测配置文件 ps aux|grep nginx #查看nginx进程 nginx配置文件修改后,执行nginx -t successful。执行nginx - ...
分类:
其他好文 时间:
2021-03-05 13:30:31
阅读次数:
0
##什么是Nginx Nginx是一个高性能的Http和反向代理的web服务器 占用的内存少,并发能力强 支持高达50000个并发连接 Nginx提供负载均衡策略有2种:内置策略和扩展策略。内置策略为轮询,加权轮询,ip hash 扩展策略 ###轮询 ###加权轮询 ###iphash ###动静 ...
分类:
其他好文 时间:
2021-03-05 13:15:42
阅读次数:
0
用nginx反向代理、uwsgi部署django的过程中,session可能在request中通过request.session.get()获取不到,其可能的原因有两种: 一、nginx反向代理的过程中,因为域名变化,可能会获取不到,需要将cookie的路径通过nginx也要反射出去。在nginx. ...
分类:
其他好文 时间:
2021-03-05 13:07:59
阅读次数:
0
Redisson是一个在Redis的基础上实现的Java驻内存数据网格(In-Memory Data Grid)。它不仅提供了一系列的分布式的Java常用对象,还提供了许多分布式服务。其中包括(BitSet, Set, Multimap, SortedSet, Map, List, Queue, B ...
分类:
其他好文 时间:
2021-03-05 13:04:54
阅读次数:
0
问题症状 Nginx的错误日志里,有如下信息: no resolver defined to resolve example.com 问题原因 这已经和明显了,就是提示你没有定义resolver指令。 Nginx就这样,它不理会系统的DNS(/etc/resolv.conf)配置。 如果你在配置文件 ...
分类:
其他好文 时间:
2021-03-05 13:00:35
阅读次数:
0
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
Web程序 时间:
2021-03-04 13:35:58
阅读次数:
0
在允许nginx服务器中,输入命令: netstat -ano | grep "TIME_WAIT" 可以看到出现很多TIME_WAIT的端口, 输入命令: netstat -an|awk '/tcp/ {print $6}'|sort|uniq -c 可以看到结果: 76 CLOSE_WAIT 3 ...
分类:
其他好文 时间:
2021-03-04 13:10:09
阅读次数:
0
sed -n '1p' input #打印input文件的第一行sed '1p' input #不仅打印文件第一行,还打印文件的输出内容sed -n '3,6p' input #搜索input文件第3~6行的文件sed -n '/certificate/p' input #搜索input文件cert ...
分类:
其他好文 时间:
2021-03-04 13:06:57
阅读次数:
0