lnmp+erlang安装过程问题汇总

本文解决了一个常见的nginx启动问题:could not build the types_hash。通过调整配置文件中的types_hash_max_size参数,从默认的1024增加到2048,解决了因虚拟系统报告错误的缓存行大小而导致的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

安装LNMP+Erlang环境,在安装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;
                access_log  /dev/null;
                server_names_hash_bucket_size 128;
                types_hash_max_size 2048; 
                client_header_buffer_size 32k;
                large_client_header_buffers 4 32k;
                client_max_body_size 50m;

针对这一报错的具体解释:

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://my.oschina.net/HeAlvin/blog/378050

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值