From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#23274: Misleading error message when running guix-daemon as unprivileged user Date: Mon, 11 Dec 2017 10:35:50 +0100 Message-ID: <87h8sx4nex.fsf@gnu.org> References: <20160412012237.GA24435@jasmine> <337b943b-56a1-f863-104e-8b309b18fb5d@uni-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51579) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eOKVJ-0007ry-3Z for bug-guix@gnu.org; Mon, 11 Dec 2017 04:36:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eOKVG-0003nw-14 for bug-guix@gnu.org; Mon, 11 Dec 2017 04:36:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:47353) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eOKVF-0003nr-Sq for bug-guix@gnu.org; Mon, 11 Dec 2017 04:36:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eOKVF-0005V1-MJ for bug-guix@gnu.org; Mon, 11 Dec 2017 04:36:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <337b943b-56a1-f863-104e-8b309b18fb5d@uni-bremen.de> (Martin Castillo's message of "Sat, 9 Dec 2017 16:28:58 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Martin Castillo Cc: 23274@debbugs.gnu.org Hi Martin, Martin Castillo skribis: > =E2=80=9CAddress already in use=E2=80=9D makes me directly think that the= re is already > another daemon running. Strangely, starting another daemon as root > works. It seems to take the socket from the other daemon away. Is this > intended? Or can two daemons run in parallel without problems? What you=E2=80=99re seeing here is the error return by bind(2) while trying= to bind the listening socket to /var/guix/daemon-socket/socket. guix-daemon doesn=E2=80=99t try to interpret the error in any way, it just = shows you what the OS reported. So I=E2=80=99m not sure there=E2=80=99s really an issue here. WDYT? Ludo=E2=80=99.