From owner-freebsd-questions@freebsd.org Wed Sep 22 07:45:53 2021 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 49CDB6AD2BD for ; Wed, 22 Sep 2021 07:45:53 +0000 (UTC) (envelope-from doralitze@chaotikum.org) Received: from mail.chaotikum.net (magrathea.chaotikum.net [138.201.66.177]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4HDr282pqKz4Wt2 for ; Wed, 22 Sep 2021 07:45:52 +0000 (UTC) (envelope-from doralitze@chaotikum.org) Received: from [141.83.32.217] (unknown [141.83.32.217]) by mail.chaotikum.net (Postfix) with ESMTPSA id A7E3D15402A9 for ; Wed, 22 Sep 2021 09:45:45 +0200 (CEST) Subject: Gnome-keyring not unlocking To: freebsd-questions@freebsd.org References: From: Leon Christopher Dietrich Message-ID: Date: Wed, 22 Sep 2021 09:45:43 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Content-Language: en-US X-Rspamd-Queue-Id: 4HDr282pqKz4Wt2 X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of doralitze@chaotikum.org designates 138.201.66.177 as permitted sender) smtp.mailfrom=doralitze@chaotikum.org X-Spamd-Result: default: False [-3.27 / 15.00]; RCVD_TLS_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:138.201.66.177]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000]; ARC_NA(0.00)[]; NEURAL_HAM_SHORT(-0.97)[-0.971]; DMARC_NA(0.00)[chaotikum.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:24940, ipnet:138.201.0.0/16, country:DE]; RCVD_COUNT_TWO(0.00)[2]; MAILMAN_DEST(0.00)[freebsd-questions] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Sep 2021 07:45:53 -0000 Hi there, I recently switched from running i3 on Xorg to running sway (Wayland) due to issues that I encountered with a new version of a software I really need to use when running Xorg. Everything went well except for the Nextcloud desktop synchronization tool which refuses to log in due to not being able to read/write to a locked key ring. Trying to unlock the key ring manually fails (seahorse simply does nothing when clicking on "unlock"). The deamon is running. Issuing `ps -aux | grep keyring` proves so. The strange ting is that my /tmp/xdgdir/keyring directory only lists sockets for control and pkcs11 while the daemon was started with ``` eval $(/usr/local/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets) export GNOME_KEYRING_CONTROL=/tmp/xdgdir/keyring ``` This is my content of the .local/share/keyrings directory: ``` ➜ l .local/share/keyrings total 18 drwx------   2 doralitze  doralitze     4B Sep 22 09:14 . drwx------  10 doralitze  doralitze    12B Sep 22 09:39 .. -rw-------   1 doralitze  doralitze   1.1K Sep 21 15:00 login.keyring -rw-r--r--   1 doralitze  doralitze   207B Sep 22 09:13 user.keystore ``` I'm not having any clue left on what's going on and would appreciate any help. Thanks