Azure / iot-edge-v1

Azure IoT Edge
http://azure.github.io/iot-edge/
Other
525 stars 257 forks source link

V2 - The manual configuration throws errors when I try to do `iotedge list` #639

Closed HenrikBach1 closed 5 years ago

HenrikBach1 commented 5 years ago

Hi,

I'm following your guide https://docs.microsoft.com/en-us/azure/iot-edge/how-to-install-iot-edge-linux-arm to install Azure IoT Edge runtime on a Raspberry Pi 3B device with Raspbian Stretch 9 June release.

However, when I run:

pi@raspberrypi:~$ sudo cp ~/config.yaml /etc/iotedge/config.yaml
pi@raspberrypi:~$ sudo systemctl restart iotedge
pi@raspberrypi:~$ iotedge list
An error in the management http client occurred.
        caused by: Hyper error
        caused by: Permission denied (os error 13)
pi@raspberrypi:~$ sudo iotedge list
An error in the management http client occurred.
        caused by: Hyper error
        caused by: Connection refused (os error 111)
pi@raspberrypi:~$ sudo systemctl status iotedge
● iotedge.service - Azure IoT Edge daemon
   Loaded: loaded (/lib/systemd/system/iotedge.service; enabled; vendor preset:
   Active: failed (Result: exit-code) since Wed 2018-07-18 10:48:28 UTC; 56min a
     Docs: man:iotedged(8)
  Process: 14935 ExecStart=/usr/bin/iotedged -c /etc/iotedge/config.yaml (code=e
 Main PID: 14935 (code=exited, status=1/FAILURE)
      CPU: 52ms

Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Main process exited, co
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Unit entered failed sta
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Failed with result 'exi
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Service hold-off time o
Jul 18 10:48:28 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Start request repeated
Jul 18 10:48:28 raspberrypi systemd[1]: Failed to start Azure IoT Edge daemon.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Unit entered failed sta
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Failed with result 'exi
pi@raspberrypi:~$ sudo journalctl -u iotedge -f
-- Logs begin at Thu 2016-11-03 17:16:42 UTC. --
Jul 18 10:48:28 raspberrypi iotedged[14935]: 2018-07-18T10:48:28Z [INFO] - Configuring /tmp/iotedge as the home directory.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Main process exited, code=exited, status=1/FAILURE
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Unit entered failed state.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Failed with result 'exit-code'.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Service hold-off time over, scheduling restart.
Jul 18 10:48:28 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Start request repeated too quickly.
Jul 18 10:48:28 raspberrypi systemd[1]: Failed to start Azure IoT Edge daemon.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Unit entered failed state.
Jul 18 10:48:28 raspberrypi systemd[1]: iotedge.service: Failed with result 'exit-code'.
pi@raspberrypi:~$ sudo systemctl cat iotedge.service
# /lib/systemd/system/iotedge.service
[Unit]
Description=Azure IoT Edge daemon
After=network-online.target iotedge.socket iotedge.mgmt.socket
Requires=network-online.target iotedge.socket iotedge.mgmt.socket
Documentation=man:iotedged(8)

[Service]
ExecStart=/usr/bin/iotedged -c /etc/iotedge/config.yaml
KillMode=process
TimeoutStartSec=600
TimeoutStopSec=40
Restart=on-failure
User=iotedge
Group=iotedge

[Install]
WantedBy=multi-user.target
Also=iotedge.socket iotedge.mgmt.socket

# /etc/systemd/system/iotedge.service.d/override.conf
[Service]
Environment=IOTEDGE_LOG=edgelet=debug

pi@raspberrypi:~$ sudo systemctl daemon-reload
pi@raspberrypi:~$ sudo systemctl restart iotedge
pi@raspberrypi:~$ sudo journalctl -u iotedge -f
-- Logs begin at Thu 2016-11-03 17:16:42 UTC. --
Jul 18 12:37:00 raspberrypi iotedged[15142]: 2018-07-18T12:37:00Z [INFO] - Configuring /tmp/iotedge as the home directory.
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Main process exited, code=exited, status=1/FAILURE
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Unit entered failed state.
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Failed with result 'exit-code'.
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Service hold-off time over, scheduling restart.
Jul 18 12:37:00 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Start request repeated too quickly.
Jul 18 12:37:00 raspberrypi systemd[1]: Failed to start Azure IoT Edge daemon.
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Unit entered failed state.
Jul 18 12:37:00 raspberrypi systemd[1]: iotedge.service: Failed with result 'exit-code'.
pi@raspberrypi:~$ sudo systemctl cat iotedge.service
# /lib/systemd/system/iotedge.service
[Unit]
Description=Azure IoT Edge daemon
After=network-online.target iotedge.socket iotedge.mgmt.socket
Requires=network-online.target iotedge.socket iotedge.mgmt.socket
Documentation=man:iotedged(8)

[Service]
ExecStart=/usr/bin/iotedged -c /etc/iotedge/config.yaml
KillMode=process
TimeoutStartSec=600
TimeoutStopSec=40
Restart=on-failure
User=iotedge
Group=iotedge

[Install]
WantedBy=multi-user.target
Also=iotedge.socket iotedge.mgmt.socket

# /etc/systemd/system/iotedge.service.d/override.conf
[Service]
Environment=IOTEDGE_LOG=edgelet=debug

My config.yaml is here

What did I do wrong?

Thank you.

/Henrik

HenrikBach1 commented 5 years ago

Hi,

I did (again) a fresh install in vein:


$ curl -L https://aka.ms/moby-engine-armhf-latest -o moby_engine.deb && sudo dpkg -i ./moby_engine.deb
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   193  100   193    0     0    572      0 --:--:-- --:--:-- --:--:--   572
100 15.4M  100 15.4M    0     0  1046k      0  0:00:15  0:00:15 --:--:-- 1163k
Selecting previously unselected package moby-engine.
(Reading database ... 34394 files and directories currently installed.)
Preparing to unpack ./moby_engine.deb ...
Unpacking moby-engine (1.0.0-1) ...
Setting up moby-engine (1.0.0-1) ...
Adding group `docker' (GID 113) ...
Done.
Created symlink /etc/systemd/system/sockets.target.wants/docker.socket → /lib/systemd/system/docker.socket.
Created symlink /etc/systemd/system/multi-user.target.wants/docker.service → /lib/systemd/system/docker.service.
$ curl -L https://aka.ms/moby-cli-armhf-latest -o moby_cli.deb && sudo dpkg -i ./moby_cli.deb
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   190  100   190    0     0    683      0 --:--:-- --:--:-- --:--:--   685
100 5455k  100 5455k    0     0   916k      0  0:00:05  0:00:05 --:--:-- 1158k
Selecting previously unselected package moby-cli.
(Reading database ... 34408 files and directories currently installed.)
Preparing to unpack ./moby_cli.deb ...
Unpacking moby-cli (1.0.0-1) ...
Setting up moby-cli (1.0.0-1) ...
$ sudo apt-get install –f
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
$ curl -L https://aka.ms/libiothsm-std-linux-armhf-latest -o libiothsm-std.deb && sudo dpkg -i ./libiothsm-std.deb
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   195  100   195    0     0    827      0 --:--:-- --:--:-- --:--:--   826
100  466k  100  466k    0     0   316k      0  0:00:01  0:00:01 --:--:-- 1449k
Selecting previously unselected package libiothsm-std.
(Reading database ... 34413 files and directories currently installed.)
Preparing to unpack ./libiothsm-std.deb ...
Unpacking libiothsm-std (1.0.0-1) ...
Setting up libiothsm-std (1.0.0-1) ...
$ curl -L https://aka.ms/iotedged-linux-armhf-latest -o iotedge.deb && sudo dpkg -i ./iotedge.deb
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   189  100   189    0     0    799      0 --:--:-- --:--:-- --:--:--   804
100 2527k  100 2527k    0     0   762k      0  0:00:03  0:00:03 --:--:--  931k
Selecting previously unselected package iotedge.
(Reading database ... 34430 files and directories currently installed.)
Preparing to unpack ./iotedge.deb ...
Adding system user `iotedge' (UID 109) ...
Adding new user `iotedge' (UID 109) with group `nogroup' ...
Creating home directory `/var/lib/iotedge' ...
Adding group `iotedge' (GID 114) ...
Done.
Adding user `iotedge' to group `docker' ...
Adding user iotedge to group docker
Done.
Unpacking iotedge (1.0.0-1) ...
Setting up iotedge (1.0.0-1) ...
===============================================================================

                              Azure IoT Edge

  IMPORTANT: Please update the configuration file located at:

    /etc/iotedge/config.yaml

  with your device's provisioning information. You will need to restart the
  'iotedge' service for these changes to take effect.

  To restart the 'iotedge' service, use:

    'systemctl restart iotedge'

    - OR -

    /etc/init.d/iotedge restart

  These commands may need to be run with sudo depending on your environment.

===============================================================================
Created symlink /etc/systemd/system/sockets.target.wants/iotedge.mgmt.socket → /lib/systemd/system/iotedge.mgmt.socket.
Created symlink /etc/systemd/system/multi-user.target.wants/iotedge.service → /lib/systemd/system/iotedge.service.
Created symlink /etc/systemd/system/sockets.target.wants/iotedge.socket → /lib/systemd/system/iotedge.socket.
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for systemd (232-25+deb9u2) ...
$ sudo nano /etc/iotedge/config.yaml
$ sudo systemctl status iotedge
● iotedge.service - Azure IoT Edge daemon
   Loaded: loaded (/lib/systemd/system/iotedge.service; enabled; vendor preset:
   Active: active (running) since Thu 2018-07-19 10:48:29 UTC; 14s ago
     Docs: man:iotedged(8)
 Main PID: 1449 (iotedged)
      CPU: 242ms
   CGroup: /system.slice/iotedge.service
           └─1449 /usr/bin/iotedged -c /etc/iotedge/config.yaml

Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Manual
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Finish
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Starti
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Listen
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Starti
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Listen
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Starti
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Checki
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Creati
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Updati
lines 1-19/19 (END)
$ journalctl -u iotedge --no-pager --no-full
-- Logs begin at Thu 2016-11-03 17:16:43 UTC, end at Thu 2018-07-19 10:50:46 UTC. --
Jul 19 10:40:21 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:40:21 raspberrypi iotedged[1151]: 2018-07-19T10:40:21Z [INFO] - St…mon
Jul 19 10:40:21 raspberrypi iotedged[1151]: 2018-07-19T10:40:21Z [INFO] - Ve…6b)
Jul 19 10:40:21 raspberrypi iotedged[1151]: 2018-07-19T10:40:21Z [INFO] - Us…aml
Jul 19 10:40:21 raspberrypi iotedged[1151]: 2018-07-19T10:40:21Z [INFO] - Us…dge
Jul 19 10:40:21 raspberrypi iotedged[1151]: 2018-07-19T10:40:21Z [INFO] - In…...
Jul 19 10:40:22 raspberrypi iotedged[1151]: 2018-07-19T10:40:22Z [INFO] - Fi…me.
Jul 19 10:40:22 raspberrypi iotedged[1151]: 2018-07-19T10:40:22Z [INFO] - Co…ry.
Jul 19 10:40:22 raspberrypi iotedged[1151]: 2018-07-19T10:40:22Z [INFO] - Co…...
Jul 19 10:40:22 raspberrypi iotedged[1151]: 2018-07-19T10:40:22Z [INFO] - Tr…...
Jul 19 10:40:22 raspberrypi iotedged[1151]: 2018-07-19T10:40:22Z [INFO] - Fi…es.
Jul 19 10:40:22 raspberrypi iotedged[1151]: 2018-07-19T10:40:22Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [INFO] - Fi…sm.
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [INFO] - De…...
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [INFO] - Ch…ed.
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [INFO] - Re…...
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [INFO] - Fi…es.
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [INFO] - Pr…...
Jul 19 10:41:02 raspberrypi iotedged[1151]: 2018-07-19T10:41:02Z [ERR!] - A …ed.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Main process exited…URE
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Service hold-off ti…rt.
Jul 19 10:41:02 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - St…mon
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Ve…6b)
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Us…aml
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Us…dge
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Fi…me.
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Co…ry.
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Co…...
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Tr…...
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Fi…es.
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Fi…sm.
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - De…...
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - No…ed.
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [INFO] - Pr…...
Jul 19 10:41:02 raspberrypi iotedged[1391]: 2018-07-19T10:41:02Z [ERR!] - A …ed.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Main process exited…URE
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Service hold-off ti…rt.
Jul 19 10:41:02 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - St…mon
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Ve…6b)
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Us…aml
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Us…dge
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Fi…me.
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Co…ry.
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Co…...
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Tr…...
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Fi…es.
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1398]: 2018-07-19T10:41:02Z [INFO] - Fi…sm.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Main process exited…URE
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Service hold-off ti…rt.
Jul 19 10:41:02 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - St…mon
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Ve…6b)
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Us…aml
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Us…dge
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Fi…me.
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Co…ry.
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Co…...
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Tr…...
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Fi…es.
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - In…...
Jul 19 10:41:02 raspberrypi iotedged[1405]: 2018-07-19T10:41:02Z [INFO] - Fi…sm.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Main process exited…URE
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:41:02 raspberrypi systemd[1]: iotedge.service: Service hold-off ti…rt.
Jul 19 10:41:02 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 19 10:41:02 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - St…mon
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Ve…6b)
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Us…aml
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Us…dge
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - In…...
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Fi…me.
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Co…ry.
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Co…...
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Tr…...
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Fi…es.
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - In…...
Jul 19 10:41:03 raspberrypi iotedged[1413]: 2018-07-19T10:41:03Z [INFO] - Fi…sm.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Main process exited…URE
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Service hold-off ti…rt.
Jul 19 10:41:03 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 19 10:41:03 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - St…mon
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Ve…6b)
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Us…aml
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Us…dge
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - In…...
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Fi…me.
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Co…ry.
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Co…...
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Tr…...
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Fi…es.
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - In…...
Jul 19 10:41:03 raspberrypi iotedged[1420]: 2018-07-19T10:41:03Z [INFO] - Fi…sm.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Main process exited…URE
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Service hold-off ti…rt.
Jul 19 10:41:03 raspberrypi systemd[1]: Stopped Azure IoT Edge daemon.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Start request repea…ly.
Jul 19 10:41:03 raspberrypi systemd[1]: Failed to start Azure IoT Edge daemon.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Unit entered failed…te.
Jul 19 10:41:03 raspberrypi systemd[1]: iotedge.service: Failed with result …e'.
Jul 19 10:48:29 raspberrypi systemd[1]: Started Azure IoT Edge daemon.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - St…mon
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Ve…6b)
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Us…aml
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Us…dge
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - In…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Fi…me.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Co…ry.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Co…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Tr…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Fi…es.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - In…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Fi…sm.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - De…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Ch…ed.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Re…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Fi…es.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Pr…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Ma…et"
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Fi…ce.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - St…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Li…PI.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - St…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Li…PI.
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - St…...
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Ch…tus
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Cr…ent
Jul 19 10:48:29 raspberrypi iotedged[1449]: 2018-07-19T10:48:29Z [INFO] - Up…ent
Jul 19 10:49:54 raspberrypi iotedged[1449]: 2018-07-19T10:49:54Z [INFO] - Ch…tus
Jul 19 10:49:54 raspberrypi iotedged[1449]: 2018-07-19T10:49:54Z [INFO] - Ed…ng.
Jul 19 10:50:01 raspberrypi iotedged[1449]: 2018-07-19T10:50:01Z [INFO] - [w…03)
Jul 19 10:50:01 raspberrypi iotedged[1449]: 2018-07-19T10:50:01Z [INFO] - [m…03)
Jul 19 10:50:02 raspberrypi iotedged[1449]: 2018-07-19T10:50:02Z [INFO] - [m…03)
Jul 19 10:50:10 raspberrypi iotedged[1449]: 2018-07-19T10:50:10Z [INFO] - [m…03)
Jul 19 10:50:16 raspberrypi iotedged[1449]: 2018-07-19T10:50:16Z [INFO] - [m…03)
Jul 19 10:50:21 raspberrypi iotedged[1449]: 2018-07-19T10:50:21Z [INFO] - [m…03)
Jul 19 10:50:26 raspberrypi iotedged[1449]: 2018-07-19T10:50:26Z [INFO] - [m…03)
Jul 19 10:50:29 raspberrypi iotedged[1449]: 2018-07-19T10:50:29Z [INFO] - Ch…tus
Jul 19 10:50:29 raspberrypi iotedged[1449]: 2018-07-19T10:50:29Z [INFO] - Ed…ng.
Jul 19 10:50:31 raspberrypi iotedged[1449]: 2018-07-19T10:50:31Z [INFO] - [m…03)
Jul 19 10:50:36 raspberrypi iotedged[1449]: 2018-07-19T10:50:36Z [INFO] - [m…03)
Jul 19 10:50:41 raspberrypi iotedged[1449]: 2018-07-19T10:50:41Z [INFO] - [m…03)
Jul 19 10:50:46 raspberrypi iotedged[1449]: 2018-07-19T10:50:46Z [INFO] - [m…03)
HenrikBach1 commented 5 years ago

Hi,

A reset of my device apparently did the trick.

pi@raspberrypi:~$ sudo iotedge list
NAME             STATUS           DESCRIPTION      CONFIG
edgeAgent        running          Up a minute      mcr.microsoft.com/azureiotedge-agent:1.0

Case is closed.