all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#44999: guix deploy Error reading from the channel
@ 2020-12-02  0:14 Jérémy Korwin-Zmijowski
  2020-12-03 16:45 ` Ludovic Courtès
  0 siblings, 1 reply; 7+ messages in thread
From: Jérémy Korwin-Zmijowski @ 2020-12-02  0:14 UTC (permalink / raw)
  To: 44999

[-- Attachment #1: Type: text/plain, Size: 1853 bytes --]

Hello Guixters,

I am trying to deploy a system on DigitalOcean droplet using `guix
deploy`. But I am facing the following issue :

   $ guix deploy ynm-machine-declaration.scm 
   La (1) machine suivante sera déployée :
     ynm

   guix deploy: déploiement vers ynm...
   ;;; [2020/12/02 00:15:48.683027, 0] read_from_channel_port: [GSSH
   ERROR] Error reading from the channel: #<unknown channel (freed)
   7f3ca3ef80a0>

Then I decided to Ctrl-C the process.


Sometimes I did ssh to the target to see if I can see proof that things
were doing ok (for example if the infect script is created in the tmp
directory...). And I noticed I had to delete the ssh key of the target
on my laptop to ssh again...

   ssh-keygen -f "/home/jeko/.ssh/known_hosts" -R "159.89.21.175"

Then, on the target machine guix seems to be installed. I am able to
run `guix pull`. But the packages I wanted to be globally installed
were missing.

On the laptop I deployed from:

   $ guix --version
   guix (GNU Guix) d848b6caab973f6191143360ca53787a19c5e6e4
   Copyright © 2020 les auteurs de Guix
   Licence GPLv3+ : GNU GPL version 3 ou ultérieure <
   http://www.gnu.org/licenses/gpl.fr.html>
   Ceci est un logiciel libre : vous êtes libre de le modifier et de le
   redistribuer.
   Il n'y a AUCUNE GARANTIE, dans les limites permises par la loi.

On the droplet after guix pull:

   # guix --version
   guix (GNU Guix) 04b83678653fda3c66e600e88f54f5108290ec1c
   Copyright (C) 2020 the Guix authors
   License GPLv3+: GNU GPL version 3 or later <
   http://gnu.org/licenses/gpl.html>
   This is free software: you are free to change and redistribute it.
   There is NO WARRANTY, to the extent permitted by law.

I have no clue how to provide more info (logs, traces, …) but I would
be very happy to do so if anyone can lead me a bit on that.

Cheers,

Jeko

[-- Attachment #2: ynm-machine-declaration.scm --]
[-- Type: text/x-scheme, Size: 912 bytes --]

(add-to-load-path (getcwd))

(use-modules (gnu)
	     (ynm-system-decalaration))

;; (machine
;;  (operating-system %ynm-system-decalaration)
;;  (environment managed-host-environment-type)
;;  (configuration (machine-ssh-configuration
;;                  (host-name "yournextmeal.tech")
;; 		 (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGXArluyIh9+8Nooz9a7LoQV8ree1jpFLMvp7wPsgiMO root@yournextmeal.tech")
;; 		 (system "x86_64-linux")
;;                  (user "root")
;;                  (identity "/home/jeko/.ssh/id_ed25519.pub")
;;                  (port 2222))))
(list
 (machine
  (operating-system %ynm-system-decalaration)
  (environment digital-ocean-environment-type)
  (configuration (digital-ocean-configuration
                  (region "fra1")
                  (size "s-1vcpu-1gb")
		  (ssh-key "/home/jeko/.ssh/id_rsa")
		  (tags (list "guix" "ynm"))
                  (enable-ipv6? #f)))))

[-- Attachment #3: ynm-system-decalaration.scm --]
[-- Type: text/x-scheme, Size: 1343 bytes --]

(define-module (ynm-system-decalaration))

(use-modules (gnu)
	     (gnu services))

(use-service-modules ssh networking)
(use-package-modules screen ssh certs version-control)

(define-public %ynm-system-decalaration
  (operating-system
   (host-name "ynm")
   (timezone "Europe/Paris")
   (locale "fr_FR.utf8")
   (packages (cons* screen git nss-certs %base-packages))
   (bootloader (bootloader-configuration
		(bootloader grub-bootloader)
		(target "/dev/vda")))
   (file-systems (cons (file-system
			(mount-point "/")
			(device "/dev/vda1")
			(type "ext4"))
                       %base-file-systems))
   (initrd-modules (append (list "virtio_scsi")
                           %base-initrd-modules))
   (services
    (append
     (list      
      (service dhcp-client-service-type)
      (service openssh-service-type
	       (openssh-configuration
		(openssh openssh-sans-x)
		(permit-root-login 'without-password)
		(authorized-keys
		 `(("root" ,(local-file "/home/jeko/.ssh/id_rsa.pub"))))
		(port-number 2222))))
     (modify-services %base-services
		      (guix-service-type ynm-config =>
					 (guix-configuration (inherit ynm-config)
							     (authorized-keys
							      (append
							       (list (local-file "/etc/guix/signing-key.pub"))
							       %default-authorized-guix-keys)))))))))

%ynm-system-decalaration

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-07-25 17:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-02  0:14 bug#44999: guix deploy Error reading from the channel Jérémy Korwin-Zmijowski
2020-12-03 16:45 ` Ludovic Courtès
2020-12-04 14:53   ` Jérémy Korwin-Zmijowski
2020-12-17 11:37     ` Ludovic Courtès
2020-12-17 13:20       ` Jérémy Korwin-Zmijowski
2021-07-23 21:33         ` Jérémy Korwin-Zmijowski
2021-07-25 17:01           ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.