常见error

简介: 小榕

1:做keepalived时,iptables设置不规范导致keepalived发生脑裂情况,两台keepalived都存在虚拟IP地址,都认为自己是master

#解决方法,在两台LB上分别放开对应的ARRP报文iptables规则
iptables -A INPUT -i eth0 -p vrrp -s 10.0.0.5 -j ACCEPT
iptables -A INPUT -i eth0 -p vrrp -s 10.0.0.6 -j ACCEPT

2:网页报504错误

大量请求进来nginx出现延迟,此时建议加上三行参数
proxy_connect_timeuot  600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
send_timeout 600s;
目录
相关文章
|
Java 数据库连接 数据库
ERROR 11848
ERROR 11848
160 1
|
1月前
|
安全 网络安全 开发者
OpenScManager failed , error code = 5
【10月更文挑战第7天】OpenScManager failed , error code = 5
111 3
|
前端开发 JavaScript
Uncaught (in promise) Error: Request failed with status code 500
Uncaught (in promise) Error: Request failed with status code 500
518 0
使用errors.Wrapf()代替log.Error()
使用errors.Wrapf()代替log.Error()
58 0
|
JavaScript 前端开发 开发者
Error,Error,到底什么是Error
总所周知,当系统运行出现错误的时候,就会抛出一个 Error ,那么这个 Error 是什么?它是怎么来的?它又是怎么被抛出的?它又是怎么被捕获的?这些问题,我们一起来探讨一下。
214 0
|
关系型数据库 MySQL C++
Error:fatal error C1010: unexpected end of file while looking for precompiled head
Error:fatal error C1010: unexpected end of file while looking for precompiled head
117 0
|
关系型数据库 MySQL
把log_error_verbosity设置为3,调试连接问题ERROR 2003 (HY000):ERROR 1045 (28000):
mysql 8里面使用global log_error_verbosity控制日志记录的详细程度
SignTool Error: An error occurred while attempting/Error information: “SignerTimeStamp() failed.“
SignTool Error: An error occurred while attempting/Error information: “SignerTimeStamp() failed.“
148 0
C中error的使用
C中error的使用
95 0