摘要:
Windows版本因为文件访问句柄数被限制为1024了,当访问量大时就会无法响应 error_log maximum number of descriptors supported by select() is 1024 使用专门的windows版本的nginx,已修改了文件句柄数据的限制。 ngi 阅读全文
摘要:
show global status like 'Max_used_connections'; #已经使用的连接数 show variables like 'max_connections'; #mysql的最大连接数 set global max_connections=500; #修改最大连接数 阅读全文