daemon do verniz não está escutando na porta configurada

5

Estou tentando instalar o verniz no Ubuntu 16.04,

Eu li vários artigos que não estão funcionando. Pelo que li, desde o ubuntu 15.04, a forma de configurar o verniz mudou (por causa do systemd).

Agora, eu tenho uma verdadeira bagunça que não funciona:

/ etc / default / verniz:

DAEMON_OPTS="-a :80 \
             -T localhost:6082 \
             -f /etc/varnish/default.vcl \
             -S /etc/varnish/secret \
             -s malloc,256m"

/etc/varnish/default.vcl (normalmente ele aponta para um host apontando para 127.0.0 e porta 8080, mas para fins de depuração eu o modifiquei para um domínio externo)     vcl 4.0;

# Default backend definition. Set this to point to your content server.
backend default {
    .host = "www.varnish-cache.org"; 
    .port = "80";
}

/etc/apache2/ports.conf

Listen 8080

grep -R 'ExecStart=/usr/sbin/varnishd' /etc/

/etc/systemd/system/varnish.service:ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m
/etc/systemd/system/varnish.service.d/customexec.conf:ExecStart=/usr/sbin/varnishd -a :80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m
/etc/systemd/system/multi-user.target.wants/varnish.service:ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m

/lib/systemd/system/varnish.service:

  GNU nano 2.5.3                                                Fichier : /lib/systemd/system/varnish.service                                                                                                      

[Unit]
Description=Varnish HTTP accelerator
Documentation=https://www.varnish-cache.org/docs/4.1/ man:varnishd

[Service]
Type=simple
LimitNOFILE=131072
LimitMEMLOCK=82000
ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m
ExecReload=/usr/share/varnish/reload-vcl
ProtectSystem=full
ProtectHome=true
PrivateTmp=true
PrivateDevices=true

[Install]
WantedBy=multi-user.target

service --status-all | grep varnish

 [ - ]  varnish
 [ + ]  varnishlog
 [ + ]  varnishncsa

depois de um

sudo service varnish stop
sudo service varnish start

O serviço de verniz não está escutando http://127.0.0.1:80/ , antes da reinicialização, aguarda http://127.0.0.1:6081/ mas não funciona mais ... não sei o que fazer mais ...

EDIT: após uma reinicialização, nada funciona,

se eu fizer: systemctl status varnish

● varnish.service - Varnish HTTP accelerator
   Loaded: loaded (/etc/systemd/system/varnish.service; enabled; vendor preset: enabled)
  Drop-In: /etc/systemd/system/varnish.service.d
           └─customexec.conf
   Active: inactive (dead) since jeu. 2017-01-05 14:48:09 CET; 1s ago
     Docs: https://www.varnish-cache.org/docs/4.1/
           man:varnishd
  Process: 5077 ExecStart=/usr/sbin/varnishd -a :80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m (code=exited, status=0/SUCCESS)
 Main PID: 5077 (code=exited, status=0/SUCCESS)

janv. 05 14:48:09 xubuntu-16 systemd[1]: Started Varnish HTTP accelerator.

service --status-all | grep varnish

 [ - ]  varnish
 [ - ]  varnishlog
 [ - ]  varnishncsa

se eu sudo: varnishd -d -f /etc/varnish/default.vcl , então start , tudo funciona bem ... até eu sair do cli

resolvido graças à resposta da @Gerald Schneider. Eu postei os passos que tinha que fazer:

sudo apt remove varnish
sudo apt-get purge varnish
# I manually remove the 3 files in created in /etc/systemd/system/*
sudo apt install varnish
sudo nano /lib/systemd/system/varnish.service # put the rigth conf
sudo nano /etc/varnish/default.vcl #put the rigth conf
sudo systemctl daemon-reload
sudo service varnish restart

e tudo funciona bem! a mágica está no arquivo /lib/systemd/system/varnish.service , outros recursos online que eu encontrei me fizeram pensar que está em outro lugar, então cuidado com os tutoriais online (desatualizados)!

    
por Bruno 05.01.2017 / 14:22

2 respostas

7

Você também precisa alterar os parâmetros iniciais do verniz na definição do serviço systemd. Você pode editar a linha que começa com ExecStart no arquivo de definição de serviço:

sudo vi /lib/systemd/system/varnish.service

Modificar este arquivo, no entanto, tem a desvantagem de não ser atualizado em futuras atualizações do pacote. Como alternativa, conforme sugerido nos comentários, você pode criar um sistema de descarte no arquivo , que é a maneira preferida de adicionar configurações às definições do systemd.

# create the drop in directory
sudo mkdir /etc/systemd/system/varnish.service.d
# create the drop in file. The name is irrelevant, as long as it ends in .conf
sudo vi /etc/systemd/system/varnish.service.d/mysettings.conf

Aqui você só precisa adicionar as configurações que deseja alterar, todo o resto será carregado a partir do arquivo de definição padrão.

Exemplo:

[Service]
ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m

Esta é a linha padrão, altere-a conforme necessário

Depois, diga ao systemctl para recarregar seus arquivos de configuração e reiniciar o serviço

sudo systemctl daemon-reload
sudo service varnish restart

O verniz deve agora ouvir na porta 80.

    
por 05.01.2017 / 14:55
1

Observe que o drop-in deve ter um ExecStart vazio Caso contrário, você receberá um erro ao iniciar o serviço (ExecStart duplicado)

sudo mkdir /etc/systemd/system/varnish.service.d sudo nano /etc/systemd/system/varnish.service.d/varnishd.conf

[Service]
ExecStart=
ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :80 -T <YOUR WEBSERVER IP>:8081 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m
    
por 01.05.2018 / 01:54