摘要:
NGINX帮助 -h [19:08:40 root@localhost sbin]#nginx -h nginx version: nginx/1.16.1 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g direc 阅读全文
摘要:
官网:http://nginx.org/en/download.html 下载地址:http://nginx.org/download/nginx-1.16.1.tar.gz 一、编译前提,需要安装必要的包 yum install gcc pcre-devel openssl-devel zlib- 阅读全文
摘要:
错误提示如下 [19:06:44 root@localhost sbin]#nginx nginx: [emerg] getpwnam("nginx") failed 排查结果,忘记创建nginx用户了 创建用户: [19:06:51 root@localhost sbin]#useradd -r 阅读全文
摘要:
如:在root下有文件包含如下字符: Thisisatest 搜索 find /root/ -type f|xargs grep "Thisisatest" 返回结果如下: /root/f1.txt:Thisisatest find /root/ 针对/root/这个文件夹来搜索 -type f 普 阅读全文
摘要:
一、设置路由服务器(IP:192.168.1.4) 1、路由服务器开启路由转发 vi /etc/sysctl.conf net.ipv4.ip_forward=1 2、路由生效: sysctl -p 3、返回如下,则表示生效成功 net.ipv4.ip_forward = 1 二、配置RS1服务器( 阅读全文
摘要:
常用参数 delay_loop <INT>:检查后端服务器的时间间隔 lb_algo rr|wrr|lc|wlc|lblc|sh|dh:定义调度方法 lb_kind NAT|DR|TUN:集群的类型 persistence_timeout <INT>:持久连接时长 protocol TCP:服务协议 阅读全文