日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Nginx做负载均衡报:nginx: [emerg] could not build the types_hash

發布時間:2025/5/22 233 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Nginx做负载均衡报:nginx: [emerg] could not build the types_hash 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

環境:KVM/Centos6.3


用Nginx做負載均衡的時候在配置完成后,啟動Nginx的時候報:

nginx: [emerg] could not build the types_hash, you should increase either types_hash_max_size: 1024 or types_hash_bucket_size: 32

解決方法:在nginx配置文件http模塊添加:types_hash_max_size 2048;

http{include mime.types;default_type application/octet-stream;types_hash_max_size 2048;server_names_hash_bucket_size 128;client_header_buffer_size 32k;large_client_header_buffers 4 32k;

錯誤原因真心不知道,只能Google了,方法找到了,錯誤原因也找到了,但真心不明白什么意思。


#################################################

I found out nginx is reporting the wrong cache line size on a virtual system.

On startup it reports:

Restarting nginx: nginx: [emerg] could not build the types_hash, you should
increase either types_hash_max_size: 1024 or types_hash_bucket_size: 32

This is caused by /etc/nginx/mime.types having a key which is 36 bytes long:

echo -n application/vnd.google-earth.kml+xml |wc -c
36

In src/core/ngx_cpuinfo.c , the ngx_cpuinfo() reports my CPU has having a 32 bytes cache line which is then used as the default value for types_hash_bucket_size and thus trigger the startup error.



轉載于:https://blog.51cto.com/jqbash/1316658

總結

以上是生活随笔為你收集整理的Nginx做负载均衡报:nginx: [emerg] could not build the types_hash的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。