nginx could not build the server_names_hash 解决方法

nginx “nginx could not build the server_names_hash”解决方法 

给一个服务器下增加了一些站点别名,差不多有20多个。 

重启nginx时候,提示: 

could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32 

解决方法: 

在配置文件的http{}段增加一行配置 
server_names_hash_bucket_size 64; 
如果64还不够,那么就按32的倍数往上加。 

下面是在中文wiki上摘抄的一段说明: 

保存服务器名字的hash表是由指令 server_names_hash_max_size 和 server_names_hash_bucket_size所控制的。参数hash bucket size总是等于hash表的大小,并且是一路处理器缓存大小的倍数。在减少了在内存中的存取次数后,使在处理器中加速查找hash表键值成为可能。如果 hash bucket size等于一路处理器缓存的大小,那么在查找键的时候,最坏的情况下在内存中查找的次数为2。第一次是确定存储单元的地址,第二次是在存储单元中查找键值。因此,如果Nginx给出需要增大 hash max size 或 hash bucket size的提示,那么首要的是增大前一个参数的大小.

原文地址:https://www.cnblogs.com/xiaoleiel/p/8308537.html