From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 06:14:23 2019 Received: (at submit) by debbugs.gnu.org; 5 Oct 2019 10:14:23 +0000 Received: from localhost ([127.0.0.1]:43783 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGh4w-0001hE-Jm for submit@debbugs.gnu.org; Sat, 05 Oct 2019 06:14:22 -0400 Received: from lists.gnu.org ([209.51.188.17]:55866) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGh4v-0001h6-7n for submit@debbugs.gnu.org; Sat, 05 Oct 2019 06:14:21 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40500) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iGh4t-00027e-Fv for bug-guix@gnu.org; Sat, 05 Oct 2019 06:14:21 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iGh4r-0002wd-Ao for bug-guix@gnu.org; Sat, 05 Oct 2019 06:14:18 -0400 Received: from ns13.heimat.it ([46.4.214.66]:38178) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iGh4q-0002tc-C5 for bug-guix@gnu.org; Sat, 05 Oct 2019 06:14:17 -0400 Received: from localhost (ip6-localhost [127.0.0.1]) by ns13.heimat.it (Postfix) with ESMTP id 716473000D3 for ; Sat, 5 Oct 2019 10:14:14 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at ns13.heimat.it Received: from ns13.heimat.it ([127.0.0.1]) by localhost (ns13.heimat.it [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DhvtY7yxxIP7 for ; Sat, 5 Oct 2019 10:14:12 +0000 (UTC) Received: from bourrache.mug.xelera.it (unknown [93.56.161.211]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ns13.heimat.it (Postfix) with ESMTPSA id 6024F3000D1 for ; Sat, 5 Oct 2019 10:14:12 +0000 (UTC) Received: from roquette.mug.biscuolo.net (roquette [10.38.2.14]) by bourrache.mug.xelera.it (Postfix) with SMTP id 60A91300A4B for ; Sat, 5 Oct 2019 12:14:11 +0200 (CEST) Received: (nullmailer pid 7233 invoked by uid 1000); Sat, 05 Oct 2019 10:14:10 -0000 From: Giovanni Biscuolo To: bug-guix@gnu.org Subject: service zabbix-server (and zabbix-agent) fails starting (cannot run as root!) Organization: Xelera.eu Date: Sat, 05 Oct 2019 12:14:10 +0200 Message-ID: <87pnjbzeh9.fsf@roquette.mug.biscuolo.net> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 46.4.214.66 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Hi Guix, executive summary: do we really need to start zabbix_server in foreground mode? I have a Guix System in which I defined this services (thanks to the work in guix-maintenance): --8<---------------cut here---------------start------------->8--- ;; For the Zabbix database. It was created by manually ;; following the instructions here: ;; https://www.zabbix.com/documentation/4.2/manual/appendix/install/db_scripts (postgresql-service) ;; Monitoring (service zabbix-agent-service-type) (service zabbix-server-service-type (zabbix-server-configuration (include-files '("/root/secrets/zabbix-server-dbpass")) (log-type "file"))) (service zabbix-front-end-service-type (zabbix-front-end-configuration (nginx (list (nginx-server-configuration (root #~(string-append #$zabbix-server:front-end "/share/zabbix/php")) (listen '("7878")) (index '("index.php")) (locations (let ((php-location (nginx-php-location))) (list (nginx-location-configuration (inherit php-location) (body (append (nginx-location-configuration-body php-location) (list " fastcgi_param PHP_VALUE \"post_max_size = 16M max_execution_time = 300\"; ")))))))))) (db-secret-file "/root/secrets/zabbix-front-end-dbpass")))) --8<---------------cut here---------------end--------------->8--- The zabbix frontend service is running well but the zabbix-server refuses to start --8<---------------cut here---------------start------------->8--- $ herd start zabbix-server Service zabbix-server could not be started. herd: failed to start service zabbix-server --8<---------------cut here---------------end--------------->8--- looking in the current system profile (built with a guix master branch on 27 Sept) --8<---------------cut here---------------start------------->8--- Generation 12 Sep 27 2019 21:18:26 (current) file name: /var/guix/profiles/system-12-link canonical file name: /gnu/store/h03qdv70sgndclgp04dpkka4rqlk9fg3-system label: GNU with Linux-Libre 5.2.17 bootloader: grub root device: UUID: 9862e534-946d-4323-b7ce-9937661bdb7d kernel: /gnu/store/bjs8k11phqhn39n7cs1wix5x147fwhnn-linux-libre-5.2.17/bzImage --8<---------------cut here---------------end--------------->8--- I found the shepherd uses /gnu/store/lm1d60d0kra3z86hcjmav828cfxjcgi8-shepherd-zabbix-server.scm with this (partial) parameters: --8<---------------cut here---------------start------------->8--- #:start (make-forkexec-constructor (list "/gnu/store/qcm5j0wk8rs6ykn6b10vg8awf2v6kvx1-zabbix-server-4.2.0/sbin/zabbix_server" "--config" "/gnu/store/w1vgvlbzs3jks014r5dra7ih6g7r26n7-zabbix_server.conf" "--foreground") #:user "zabbix" #:group "zabbix" #:pid-file "/var/run/zabbix/zabbix_server.pid" --8<---------------cut here---------------end--------------->8--- and if I try to start it from the command line: --8<---------------cut here---------------start------------->8--- /gnu/store/qcm5j0wk8rs6ykn6b10vg8awf2v6kvx1-zabbix-server-4.2.0/sbin/zabbix_server --config /gnu/store/w1vgvlbzs3jks014r5dra7ih6g7r26n7-zabbix_server.conf --foreground --8<---------------cut here---------------end--------------->8--- I get: --8<---------------cut here---------------start------------->8--- zabbix_server [879]: cannot run as root! --8<---------------cut here---------------end--------------->8--- I had a look in upstream bug reports but was not able to find nothing strictly related to zabbix_server, but I was able fo find this for zabbix_agentd https://support.zabbix.com/browse/ZBX-10611 (fixed since 4.2.1rc1) actually if I start zabbix_server without ``--foreground'' the server starts without problems I thought upgrading to the last stable release of zabbix was the solution, so I submitted a patch (bug#37629) to upgrade to 4.2.7 and now I'm using a custom channel with that patch applied: --8<---------------cut here---------------start------------->8--- (list (channel (name 'guix) (url "https://gitlab.com/gbiscuolo/guix.git") (branch "wip-zabbix-update"))) --8<---------------cut here---------------end--------------->8--- but if I switch to my last system generation (built with the above channel): --8<---------------cut here---------------start------------->8--- Generation 13 Oct 05 2019 10:24:28 file name: /var/guix/profiles/system-13-link canonical file name: /gnu/store/bmmjbk6sidqjahq0i53mgp38b342lnda-system label: GNU with Linux-Libre 5.3.2 bootloader: grub root device: UUID: 9862e534-946d-4323-b7ce-9937661bdb7d kernel: /gnu/store/b28yv4dww1fha0hdhxibfg0k1f50sy0f-linux-libre-5.3.2/bzImage --8<---------------cut here---------------end--------------->8--- and reboot... --8<---------------cut here---------------start------------->8--- $ sudo herd status zabbix-server Status of zabbix-server: It is stopped. It is enabled. Provides (zabbix-server). Requires (). Conflicts with (). Will be respawned. --8<---------------cut here---------------end--------------->8--- this time if I start zabbix_server from the command line: --8<---------------cut here---------------start------------->8--- $ /gnu/store/94w5smlc86xac7v1vz4wbqkq43b2fia8-zabbix-server-4.2.7/sbin/zabbix_server --config /gnu/store/w1vgvlbzs3jks014r5dra7ih6g7r26n7-zabbix_server.conf --foreground Starting Zabbix Server. Zabbix 4.2.7 (revision 624fb7497b). Press Ctrl+C to exit. --8<---------------cut here---------------end--------------->8--- the server starts but the console remains open (as expected by using of foreground) and if I press Ctrl+C obviously the server is terminated AFAIU the foreground process never exits and shepherd times it out: right? the same thing **almost** apply to zabbix-agent that is also started with "--foregroud": it is started by shepherd, the console gets busy (so I cannot login for exemple) but if I press Ctrl+C the process keeps running --8<---------------cut here---------------start------------->8--- $ sudo herd status zabbix-agent Status of zabbix-agent: It is started. Running value is 277. It is enabled. Provides (zabbix-agent). Requires (). Conflicts with (). Will be respawned. --8<---------------cut here---------------end--------------->8--- strange behaviour anyway back to the question: do we need to start zabbix_server and zabbix_agentd in foreground? Thanks! Gio' -- Giovanni Biscuolo Xelera IT Infrastructures From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 08:50:29 2019 Received: (at submit) by debbugs.gnu.org; 5 Oct 2019 12:50:29 +0000 Received: from localhost ([127.0.0.1]:43885 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGjW0-0003AI-ST for submit@debbugs.gnu.org; Sat, 05 Oct 2019 08:50:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:49172) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGjVy-0003A7-9L for submit@debbugs.gnu.org; Sat, 05 Oct 2019 08:50:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54194) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iGjVu-0007hz-Kl for bug-guix@gnu.org; Sat, 05 Oct 2019 08:50:25 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iGjVt-0006Kc-CP for bug-guix@gnu.org; Sat, 05 Oct 2019 08:50:22 -0400 Received: from ns13.heimat.it ([46.4.214.66]:39014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iGjVt-0006Id-6i for bug-guix@gnu.org; Sat, 05 Oct 2019 08:50:21 -0400 Received: from localhost (ip6-localhost [127.0.0.1]) by ns13.heimat.it (Postfix) with ESMTP id 961093000F8 for ; Sat, 5 Oct 2019 12:50:19 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at ns13.heimat.it Received: from ns13.heimat.it ([127.0.0.1]) by localhost (ns13.heimat.it [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p1gOWP5TQSpm for ; Sat, 5 Oct 2019 12:50:00 +0000 (UTC) Received: from bourrache.mug.xelera.it (unknown [93.56.161.211]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ns13.heimat.it (Postfix) with ESMTPSA id 2D7ED3000D5 for ; Sat, 5 Oct 2019 12:50:00 +0000 (UTC) Received: from roquette.mug.biscuolo.net (roquette [10.38.2.14]) by bourrache.mug.xelera.it (Postfix) with SMTP id 29BC5300A4B for ; Sat, 5 Oct 2019 14:49:59 +0200 (CEST) Received: (nullmailer pid 13635 invoked by uid 1000); Sat, 05 Oct 2019 12:49:58 -0000 From: Giovanni Biscuolo To: bug-guix@gnu.org Subject: Re: service zabbix-server (and zabbix-agent) fails starting (cannot run as root!) In-Reply-To: <87pnjbzeh9.fsf@roquette.mug.biscuolo.net> Organization: Xelera.eu References: <87pnjbzeh9.fsf@roquette.mug.biscuolo.net> Date: Sat, 05 Oct 2019 14:49:58 +0200 Message-ID: <87lftzz79l.fsf@roquette.mug.biscuolo.net> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 46.4.214.66 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Giovanni Biscuolo writes: > executive summary: do we really need to start zabbix_server in > foreground mode? executive answer: I don't know **but** this is not the cause of my issue :) > --8<---------------cut here---------------start------------->8--- [...] > (service zabbix-server-service-type > (zabbix-server-configuration > (include-files '("/root/secrets/zabbix-server-dbpass")) > (log-type "file"))) ouch!... looking at the console (it's a remote VM so I usually connect via ssh only, but today I also connected via SPICE): --8<---------------cut here---------------start------------->8--- zabbix_server [1942]: /root/secrets/zabbix-server-dbpass: [13] Permission denied --8<---------------cut here---------------end--------------->8--- unfortunately shepherd did not catch this error (due to foreground mode?) in syslog :-( I just had to adjust the permissions to allow zabbix (I allowed the zabbix group to traverse /root/secrets and read the file) to read the included file this now works with both zabbix 4.2.0 and zabbix 4.2.7 [...] Thanks! Gio' -- Giovanni Biscuolo Xelera IT Infrastructures From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 12:04:47 2019 Received: (at 37631) by debbugs.gnu.org; 5 Oct 2019 16:04:47 +0000 Received: from localhost ([127.0.0.1]:45060 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGmY3-0001j1-9J for submit@debbugs.gnu.org; Sat, 05 Oct 2019 12:04:47 -0400 Received: from mail-ed1-f54.google.com ([209.85.208.54]:40289) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGmY1-0001ik-26 for 37631@debbugs.gnu.org; Sat, 05 Oct 2019 12:04:45 -0400 Received: by mail-ed1-f54.google.com with SMTP id v38so8650760edm.7 for <37631@debbugs.gnu.org>; Sat, 05 Oct 2019 09:04:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=GxfbkXOX3OLrHLPyu7TuowgCR3hPtsLbJUDPAzW92bA=; b=ak6je8vqFer8HLNEeHqlOMY8ATigXT4fzEvZ6QRLGZr0muoQF16BMkGBYvkR9XV725 CmKNNUnO/cHNWTi24w+qhQbTii8IAnVF9CYM/2gBOu+QHI8NOeN7NAmpjtELIkgJjYtn 3N9DvDjy/pcHu8Wjp3cizTTm1sF/2+Smxbew1FxoueElkXy7wUDkb20kw71L6Hf9JKKU 9t92eVlE/wol/55Be3DhhKuIfuQmMb/G/7xZ605kfg9Xk1YdniM5UveK/rC8GmGuXVA+ 3KO8xxHKMKlzmLnH5Itc4yCqlwRsS++owxv4dG0SBrU5M3Mqi1K/y9kqqIo77YJ8RGj9 Mcnw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=GxfbkXOX3OLrHLPyu7TuowgCR3hPtsLbJUDPAzW92bA=; b=R/iX/XnMso+9yWEsc3fzJ6l8cpIkACh/4EhpsRYbvvrASgEamV2qoMJd95ZpEn8RDm PE+QD6FZp5uPMt6rvx350KoF6emkxEtkYzREWOaHT+NVOmQGsRD5Agy0BNDJZanf9H+u wlEJvx97hx7dExkSRiEPvdEHlBjksODlAKuHnReyrQUe1GwmMjJZnavZRN7DMXX0C5DY zgSFL3zmnbYYqilCShxk8SakCGCROL7LpZfJZgAkIK3xn6TO+ztN/4WULQ6IbLF0ECZk O2GLEIBxpy7wb7khvI10cipwhjhLRMRm4QPGsUo/BbgZUdeGfx0zOaP2cz9jx9u5i3l4 xizA== X-Gm-Message-State: APjAAAWNvrPOoWPWoQfMSs+KdECqy3Vc9UZdpG+Q6VYQv27Sc8gschq6 QcSNFPnIdcDrgVGziuFyRbu79GsC3+U4GegJLBHP X-Google-Smtp-Source: APXvYqzNYYojgo83t2muSU163K9YzeR9i7f9eRJIn1jW9VKvAmAkcdLJj9QEvKUDJcO14pWf+OdwOOqjt1ug9Gay1h4= X-Received: by 2002:a17:906:3546:: with SMTP id s6mr16631389eja.82.1570291479238; Sat, 05 Oct 2019 09:04:39 -0700 (PDT) MIME-Version: 1.0 References: <87pnjbzeh9.fsf@roquette.mug.biscuolo.net> <87lftzz79l.fsf@roquette.mug.biscuolo.net> In-Reply-To: <87lftzz79l.fsf@roquette.mug.biscuolo.net> From: =?UTF-8?Q?G=C3=A1bor_Boskovits?= Date: Sat, 5 Oct 2019 18:04:27 +0200 Message-ID: Subject: Re: bug#37631: service zabbix-server (and zabbix-agent) fails starting (cannot run as root!) To: Giovanni Biscuolo Content-Type: multipart/alternative; boundary="000000000000d05cd705942bf99f" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37631 Cc: 37631@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --000000000000d05cd705942bf99f Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hello Giovanni, Giovanni Biscuolo ezt =C3=ADrta (id=C5=91pont: 2019. okt. 5.,= Szo, 14:51): > Giovanni Biscuolo writes: > > > executive summary: do we really need to start zabbix_server in > > foreground mode? > > executive answer: I don't know **but** this is not the cause of my issue > :) > > > --8<---------------cut here---------------start------------->8--- > > [...] > > > (service zabbix-server-service-type > > (zabbix-server-configuration > > (include-files > '("/root/secrets/zabbix-server-dbpass")) > > (log-type "file"))) > > ouch!... looking at the console (it's a remote VM so I usually connect > via ssh only, but today I also connected via SPICE): > > --8<---------------cut here---------------start------------->8--- > zabbix_server [1942]: /root/secrets/zabbix-server-dbpass: [13] Permission > denied > --8<---------------cut here---------------end--------------->8--- > > unfortunately shepherd did not catch this error (due to foreground > mode?) in syslog :-( > > I just had to adjust the permissions to allow zabbix (I allowed the > zabbix group to traverse /root/secrets and read the file) to read the > included file > > this now works with both zabbix 4.2.0 and zabbix 4.2.7 > > [...] > > Thanks! Gio' > > -- > Giovanni Biscuolo > > Xelera IT Infrastructures > > > > Can we consider this resolved then? Best regards, g_bor --=20 OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21 --000000000000d05cd705942bf99f Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hello Giovanni,

Giovanni Biscuolo &l= t;g@xelera.eu> ezt =C3=ADrta (id=C5= =91pont: 2019. okt. 5., Szo, 14:51):
Giovanni Biscuolo <g@xelera.eu> writes:

> executive summary: do we really need to start zabbix_server in
> foreground mode?

executive answer: I don't know **but** this is not the cause of my issu= e
:)

> --8<---------------cut here---------------start------------->8--= -

[...]

>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (service zabbix-server-servic= e-type
>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(z= abbix-server-configuration
>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (= include-files '("/root/secrets/zabbix-server-dbpass"))
>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (= log-type "file")))

ouch!... looking at the console (it's a remote VM so I usually connect<= br> via ssh only, but today I also connected via SPICE):

--8<---------------cut here---------------start------------->8---
zabbix_server [1942]: /root/secrets/zabbix-server-dbpass: [13] Permission d= enied
--8<---------------cut here---------------end--------------->8---

unfortunately shepherd did not catch this error (due to foreground
mode?) in syslog :-(

I just had to adjust the permissions to allow zabbix (I allowed the
zabbix group to traverse /root/secrets and read the file) to read the
included file

this now works with both zabbix 4.2.0 and zabbix 4.2.7

[...]

Thanks! Gio'

--
Giovanni Biscuolo

Xelera IT Infrastructures



Can we consider this resolved then?

Best regards,
g_bor
--
OpenPGP Key Fingerprin= t: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
<= /div> --000000000000d05cd705942bf99f-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 12:15:29 2019 Received: (at 37631-done) by debbugs.gnu.org; 5 Oct 2019 16:15:29 +0000 Received: from localhost ([127.0.0.1]:45069 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGmiO-000207-RN for submit@debbugs.gnu.org; Sat, 05 Oct 2019 12:15:29 -0400 Received: from ns13.heimat.it ([46.4.214.66]:35346) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGmiM-0001zS-Rn for 37631-done@debbugs.gnu.org; Sat, 05 Oct 2019 12:15:27 -0400 Received: from localhost (ip6-localhost [127.0.0.1]) by ns13.heimat.it (Postfix) with ESMTP id 412D4300671; Sat, 5 Oct 2019 16:15:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at ns13.heimat.it Received: from ns13.heimat.it ([127.0.0.1]) by localhost (ns13.heimat.it [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oJ_e3_1f7-1z; Sat, 5 Oct 2019 16:15:19 +0000 (UTC) Received: from bourrache.mug.xelera.it (unknown [93.56.161.211]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ns13.heimat.it (Postfix) with ESMTPSA id E8EB230066E; Sat, 5 Oct 2019 16:15:18 +0000 (UTC) Received: from roquette.mug.biscuolo.net (roquette [10.38.2.14]) by bourrache.mug.xelera.it (Postfix) with SMTP id EDECF300A4B; Sat, 5 Oct 2019 18:15:15 +0200 (CEST) Received: (nullmailer pid 24506 invoked by uid 1000); Sat, 05 Oct 2019 16:15:14 -0000 From: Giovanni Biscuolo To: 37631-done@debbugs.gnu.org Subject: Re: bug#37631: service zabbix-server (and zabbix-agent) fails starting (cannot run as root!) In-Reply-To: Organization: Xelera.eu References: <87pnjbzeh9.fsf@roquette.mug.biscuolo.net> <87lftzz79l.fsf@roquette.mug.biscuolo.net> Date: Sat, 05 Oct 2019 18:15:14 +0200 Message-ID: <87imp3yxrh.fsf@roquette.mug.biscuolo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 37631-done Cc: =?utf-8?Q?G=C3=A1bor?= Boskovits X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) G=C3=A1bor Boskovits writes: [...] >> Can we consider this resolved then? oh yes sorry, forgot to (auto) close this bug as done: this message should do it Thanks! Gio' [...] --=20 Giovanni Biscuolo Xelera IT Infrastructures From unknown Mon Aug 18 06:57:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 03 Nov 2019 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator