CNTLM não funcionará no CentOS 7

5

O CNTLM RPM foi instalado corretamente. O serviço está configurado e parece funcionar bem:

[user@centos~]$ sudo service cntlmd status
Checking for CNTLM Authentication Proxy: ● cntlmd.service - LSB: start/stop the cntlm proxy
   Loaded: loaded (/etc/rc.d/init.d/cntlmd)
   Active: active (running) since Wed 2016-09-07 13:14:45 BST; 2min 53s ago

Mas não tenho conectividade de rede: o yum e o curl falharam com a mesma mensagem:

Failed connect to localhost:3128; Connection refused

Existem mais informações em journalctl :

Sep 07 13:09:47 centos cntlm[6283]: Starting cntlm version 0.92.3 for LITTLE endian
Sep 07 13:09:47 centos cntlm[6283]: Proxy listening on 0.0.0.0:3128
Sep 07 13:09:47 centos cntlm[6283]: Workstation name used: centos
Sep 07 13:09:47 centos cntlm[6283]: Using following NTLM hashes: NTLMv2(1) NT(0) LM(0)
Sep 07 13:09:47 centos cntlm[6284]: Daemon ready
Sep 07 13:09:47 centos cntlm[6284]: Changing uid:gid to 987:982 - Success
Sep 07 13:09:47 centos cntlm[6284]: Error creating a new PID file
Sep 07 13:09:47 centos cntlmd[6275]: Starting CNTLM Authentication Proxy: [  OK  ]

Então, aparentemente, o cntlm não pode criar seu arquivo pid ... O que eu posso fazer?

    
por Anto 07.09.2016 / 14:23

1 resposta

7

Esta postagem do centos.org me salvou. A solução é simplesmente permitir que o cntlm crie seu arquivo pid:

$ mkdir /var/run/cntlm
$ chgrp cntlm /var/run/cntlm/
$ chmod g+w /var/run/cntlm/
$ service cntlmd restart
    
por 07.09.2016 / 14:23