From unknown Sun Jun 22 07:48:13 2025 X-Loop: help-debbugs@gnu.org Subject: bug#63602: guix deploy verbose option Resent-From: Artur Wroblewski Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sat, 20 May 2023 08:13:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 63602 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 63602@debbugs.gnu.org X-Debbugs-Original-To: bug-guix@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16845703715096 (code B ref -1); Sat, 20 May 2023 08:13:03 +0000 Received: (at submit) by debbugs.gnu.org; 20 May 2023 08:12:51 +0000 Received: from localhost ([127.0.0.1]:57806 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q0Hhq-0001K3-Dt for submit@debbugs.gnu.org; Sat, 20 May 2023 04:12:51 -0400 Received: from lists.gnu.org ([209.51.188.17]:52988) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q08FU-0000bb-OE for submit@debbugs.gnu.org; Fri, 19 May 2023 18:06:57 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q08FU-0002hs-I6 for bug-guix@gnu.org; Fri, 19 May 2023 18:06:56 -0400 Received: from mx0.riseup.net ([198.252.153.6]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q08FS-0006iH-PX for bug-guix@gnu.org; Fri, 19 May 2023 18:06:56 -0400 Received: from fews01-sea.riseup.net (fews01-sea-pn.riseup.net [10.0.1.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx0.riseup.net (Postfix) with ESMTPS id 4QNLXq43jBz9t2L for ; Fri, 19 May 2023 22:06:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1684534011; bh=cHtXYAL8FcCjgsZtyyK2hbtFokacKSrVwJhlcxN3Rsw=; h=Date:From:To:Subject:From; b=pzvvX0rtCGdcsvuMNY1QN/4OSOIwQLBHhzWfQUgnASpU2bPoft/3sDYEUEzo34HUe lqTxu7s3dSNXWqf8XgqCIu579DxqqU19GcphjgjbBIw2doMl+zAI2uG5PcECDRij6Z oltIGgd/fSBpboAaJZ8pDnmr4jYAAiERWA2x5xKg= X-Riseup-User-ID: 8F17811687D7CA04466907F52019CBAE42048C50B5455D562FEB694C89BA1733 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews01-sea.riseup.net (Postfix) with ESMTPSA id 4QNLXp5WJNzJq6L for ; Fri, 19 May 2023 22:06:50 +0000 (UTC) Date: Fri, 19 May 2023 23:06:47 +0100 From: Artur Wroblewski Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Received-SPF: pass client-ip=198.252.153.6; envelope-from=wrobell@riseup.net; helo=mx0.riseup.net X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Mailman-Approved-At: Sat, 20 May 2023 04:12:47 -0400 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, It would be great if verbose/debug option printed more useful information when running "guix deploy". At the moment, when deploying to a VM run with Qemu on my laptop (the same with --debug=3) $ GUILE_LOAD_PATH=. guix deploy --verbosity=3 iotpx.scm The following 1 machine will be deployed: iotpx guix deploy: deploying to iotpx... guix deploy: warning: without a 'host-key' is deprecated guix deploy: error: failed to deploy iotpx: SSH connection to 'localhost' failed: Connection refused It took me 2 days to figure this out... The problem was that the Qemu forwarded SSH port over ipv4, but Guix was resolving localhost to ipv6 address. After replacing "localhost" with "127.0.0.1" in `iotpx.scm` file, everything works like a charm. IMHO, it would be great if "guix deploy" printed hostname, its ip address, and SSH port. If not by default, then when verbosity/debug options are specified. Additionally, an option forcing Guix to use ipv4/ipv6 would be great as well. Best regards, Artur -- https://mortgage.diy-labs.eu/ From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 10 12:20:07 2024 Received: (at control) by debbugs.gnu.org; 10 Sep 2024 16:20:07 +0000 Received: from localhost ([127.0.0.1]:36736 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1so3b5-0004c7-3E for submit@debbugs.gnu.org; Tue, 10 Sep 2024 12:20:07 -0400 Received: from mail-wm1-f41.google.com ([209.85.128.41]:57457) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1so3as-0004Zq-KB for control@debbugs.gnu.org; Tue, 10 Sep 2024 12:19:54 -0400 Received: by mail-wm1-f41.google.com with SMTP id 5b1f17b1804b1-42cb5b3c57eso25229875e9.2 for ; Tue, 10 Sep 2024 09:19:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1725985124; x=1726589924; darn=debbugs.gnu.org; h=subject:from:to:message-id:date:from:to:cc:subject:date:message-id :reply-to; bh=ZNC+daNWuE9+Wap7Jc7Ee0DPfrtnHbkjRaBIlKVL+9U=; b=bRiON/Nbc6GcFFdU6R0zNmj8bIZ52hO1GGE4wY1NFYIMULe9K28DaLImTOUyL0OZlL gK20LzSVwfoWlHgyGk/4SkeqgfnZdbtzbLHHb86TJ6CKWn6rxkWtG2x0uKyA3qNGjWTw F3lY/ub8M7weGEHAjlMVqSNYHtFpwSgA00Y7r7HQ5TSE7e0FIF8Ho38pwzj9D0Q6eGd2 zCbAxvkm467c7hY17+5YPyod7V/7oRMu+ENUf4U6Yy82oep2Kc1Z1MshlIZGLjh6AzwW +r7nCXzZc28JKF6UEa/BoYBYiTxg73Kbd8qM/6fViWWi4DAHDZbyCpZovQVS5tF8urBh Ex6w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1725985124; x=1726589924; h=subject:from:to:message-id:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=ZNC+daNWuE9+Wap7Jc7Ee0DPfrtnHbkjRaBIlKVL+9U=; b=wOaJALab/dRN+e/Bl+5ZoqpVKXD28UTxsHYY7g/w+YKkthEJlkV89HeOc4gAqpN2NV iRqKAi773JaKykuaOq88Ra69pR7+z8l93Tvdr70tnxID1ROUmTZPn4avqwAtHrUaUMa6 +k7bAkhI8DXPHYfpjWfnn341eNuiV1ZCIXkEgka760UuwZrRMGentyLN2VwIn8dzlzeX UBqd5KU8UeBH4JKS3kbY1XFoliZEdIF8B+WnoAiQzOKgwysm0xa9aN88WGxYe5jSy3BT q1XKHM1E2UiyeuVJqpRrsoz/zAXC1nJSVdOZmWoqCGHVM7kgXH6zCoXu3Awxoy/jaYqj srXw== X-Gm-Message-State: AOJu0YzK9eQOfKmc1c/W3jenhzDu4wHow6pck0qe+iWvsswJOb2vO0SP C9h826E5OuZpJ1WWCwfNoAwHPYACwjjsJ9b9+y3RzO6MR0ki552pxcaYKw== X-Google-Smtp-Source: AGHT+IHmA25PEER9MzllRJmlcp9zxkCwEOihLZrE9YhZ2KrjHagzp+x+hCcbr1YuDj3Ex4guZNvIwg== X-Received: by 2002:a05:600c:3c8d:b0:426:647b:1bfc with SMTP id 5b1f17b1804b1-42c9f9d385emr109199535e9.30.1725985123816; Tue, 10 Sep 2024 09:18:43 -0700 (PDT) Received: from lili (roam-nat-fw-prg-194-254-61-46.net.univ-paris-diderot.fr. [194.254.61.46]) by smtp.gmail.com with ESMTPSA id 5b1f17b1804b1-42cc01d4617sm22860045e9.0.2024.09.10.09.18.43 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 10 Sep 2024 09:18:43 -0700 (PDT) Date: Tue, 10 Sep 2024 17:16:22 +0200 Message-Id: <87frq7czeh.fsf@gmail.com> To: control@debbugs.gnu.org From: Simon Tournier Subject: control message for bug #63602 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control 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 (-) severity 63602 wishlist quit