0

我正在使用 varnish-4.0.3 并且vcc_allow_inline_c默认off情况下。我所做的是:

varnishadm 
200        
-----------------------------
Varnish Cache CLI 1.0
-----------------------------
Linux,3.10.0-123.el7.x86_64,x86_64,-sfile,-sfile,-sfile,-smalloc,-hcritbit
varnish-4.0.3 revision b8c4a34

Type 'help' for command list.
Type 'quit' to close CLI session.

param.show vcc_allow_inline_c
200
vcc_allow_inline_c         on [bool]

并且,在 default.vcl 中,

C{
  #include <stdio.h>
}C

但是,它不起作用,systemd 没有正常启动。

varnishd[28929]: Message from VCC-compiler:
varnishd[28929]: Inline-C not allowed
varnishd[28929]: ('input' Line 6 Pos 1)
varnishd[28929]: C{
varnishd[28929]: ##
varnishd[28929]: Running VCC-compiler failed, exited with 2
varnishd[28929]: VCL compilation failed

我也尝试过使用DAEMON_OPTS="-p vcc_allow_inline_c=on",但这也不起作用。

我在这里缺少什么?

4

2 回答 2

0

如果您运行 ps -ef|grep varnishd - 您应该查看是否设置了该选项。

于 2016-04-21T22:25:59.147 回答
0

会不会是你修改了错误的配置文件?

使用 systemd,启动参数在varnish.service文件中指定,而不是/etc/default/varnish像以前那样。

于 2016-04-13T14:04:18.370 回答