我需要以非root用户身份运行varnish。这就是我实际做的事情:
wget https://repo.varnish-cache.org/source/varnish-4.0.2.tar.gz
tar xzf varnish-4.0.2.tar.gz
./configure --prefix=/home/neuquino/varnish
make
make install
但是,当我运行varnishd
命令时,我收到以下错误:
Message from VCC-compiler:
Not running as root, no priv-sep
这似乎与VCL编译器有关。是否有任何选项可以传递给./configure
或make
命令,以便能够以普通用户身份运行varnishd
?
我期待找到像./configure --user=neuquino
这样的内容,但我无法在配置文件中找到这样的选项。