ワニスをインストールしたところ、Webページを提供する準備ができました。
問題は、開いているファイルの制限に達していることです。
ユーザーにニスを塗るには、すでにulimit
を設定しています。
この構成を記述できるファイルを見つけたいと思います。
# Maximum number of open files
NFILES=131072
# Locked shared memory, default log size is 82MB + header
MEMLOCK=82000
## Configuration with VCL
#
# Listen on port 80, administration on localhost:6082, and forward to
# one content server selected by the vcl file, based on the request. Use a
# fixed-size cache file.
#
# Note: you must replace "example.org" with the outside IP address of your server
# - this is the address at which Varnish receives incoming requests.
# $wgSquidServers in MediaWiki's LocalSettings.php will also need to list all addresses for this Varnish cache.
#
DAEMON_OPTS="-a example.org:80 \
-T localhost:6082 \
-f /etc/varnish/default.vcl \
-u varnish -g varnish \
-s file,/var/lib/varnish/varnish_storage.bin,4G"
探しているファイルは、Varnishデーモン構成スクリプトです。これは(通常)Redhat/RHELを使用している場合は/etc/sysconfig/varnish
に、Debian/Ubuntuを使用している場合は/etc/default/varnish
にあります。
ニスの構成を行う必要がある場所は2つあります。
/etc/default/varnish
/etc/varnish/default.vcl
これはcentoslinuxサーバー上にあります
/etc/sysconfig/varnish
/etc/varnish/default.vcl
また、Apacheの前にニスを配置する場合は、ポートを変更するためにhttpd構成ファイルを変更する必要があります。
/etc/httpd/conf/httpd.conf
編集後にワニス設定をリロードすると、キャッシュがクリアされることにも注意してください。