cockpit
cockpit copied to clipboard
cockpit-tls: gnutls_handshake error.
Explain what happens
- Everything was fine when I installed it, on July 1. I was using it with Nginx proxy in-front of it.
- Installed some addons right after installation. Addons were cockpit-machines 265-1, cockpit-packagekit 264-1, cockpit-podman 45-1 and cockpit-storaged 264-1
- There wasn't any issue with the installation until 2-3 days ago. I saw that I wasn't able to access the WebUI through the Nginx reverse proxy.
- Although was able to see the login page when I was accessing it without the Nginx reverse proxy. But when I tried to login with my user and pass I was seeing a page where it said to check me the
journalctl -u cockpitto see the error.
In the meantime I tried with different browsers to check if this was something on my end or not.
Linux VM:
OS: Artix with plasma and openrc
Browser: Firefox 102.0
On Mac: OS: MacOS Monterey 12.4 Browser: Safari 15.5
My Lazy Fix (not secure!)
Because I'm using cockpit with Nginx Reverse Proxy (with SSL) and the Nginx is on the same machine I don't think there is much of a security risk for me at least.
All though I was able to fix the issue by changing the ownership of the /run/cockpit
chown -R cockpit-ws:cockpit-ws /run/cockpit
And adding AllowUnencrypted = true to the /etc/cockpit/cockpit.conf file
I've putted all the log but the problem started on 26 July.
Nginx reverse proxy settings.
When the problem occurred.
server {
listen 443 ssl;
server_name cockpit.0x30c4.dev;
access_log /var/log/nginx/cockpit.access.log;
error_log /var/log/nginx/cockpit.error.log;
ssl_certificate /etc/letsencrypt/live/cockpit.0x30c4.dev/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/cockpit.0x30c4.dev/privkey.pem; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
location / {
proxy_pass https://192.168.69.2:9090;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
gzip off;
}
}
server {
listen 80;
server_name cockpit.0x30c4.dev;
return 301 https://$server_name$request_uri;
}
Nginx Settings now after the fix.
I only changed proxy_pass https://192.168.69.2:9090; to proxy_pass http://127.0.0.1:9090; this
server {
listen 443 ssl;
server_name cockpit.0x30c4.dev;
access_log /var/log/nginx/cockpit.access.log;
error_log /var/log/nginx/cockpit.error.log;
ssl_certificate /etc/letsencrypt/live/cockpit.0x30c4.dev/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/cockpit.0x30c4.dev/privkey.pem; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
location / {
proxy_pass http://127.0.0.1:9090;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
gzip off;
}
}
server {
listen 80;
server_name cockpit.0x30c4.dev;
return 301 https://$server_name$request_uri;
}
Version of Cockpit
264-1
Where is the problem in Cockpit?
Networking
Server operating system
Ubuntu
Server operating system version
Ubuntu Server 22.04
What browsers are you using?
Firefox 102.0 And Safari 15.5
System log
Jun 29 00:16:44 coco cockpit-certificate-ensure[31388]: /usr/lib/cockpit/cockpit-certificate-helper: line 32: sscg: command not found
Jun 29 00:16:44 coco systemd[1]: Starting Cockpit Web Service...
Jun 29 00:16:44 coco cockpit-certificate-ensure[31389]: .....+....+...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*..+...+.+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*..+.....+.+......+..+.+............+..+.+..+..............................+.......+......+..+....+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Jun 29 00:16:44 coco cockpit-certificate-ensure[31389]: .....+.........+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*....+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*.+.........+..........+...+...........+.+........+................+..+.........+...+............+.+...+..+.........+...+.......+...............+......+...+..+...+....+...+.................+..........+...+.........+......+...+..+..........+.....+.......+...........+.+.........+.....+.+...+............+.....+...+...............+...+...+.+.....+...............+......+....+..................+...+...+...........+..........+...........+.........+...+...+....+.........+..+...+......+.+.........+..............+.......+...+..+...+..........+.....+............+...+......+.+............+..+.+............+..+.+..+.+...............+..+....+........+...+...+..........+...............+..+....+...+..+...+.......+..............+....+..+....+..+.........+....+............+..+...+...+......+.+...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Jun 29 00:16:44 coco cockpit-certificate-ensure[31389]: -----
Jun 29 00:16:44 coco systemd[1]: Started Cockpit Web Service.
Jun 29 00:18:14 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 61b9f69f5f734a0fa385195c358dd918 --
Jun 29 17:14:55 coco systemd[1]: Starting Cockpit Web Service...
Jun 29 17:14:55 coco systemd[1]: Started Cockpit Web Service.
Jun 29 17:14:55 coco cockpit-tls[1436]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jun 29 18:59:56 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 29 18:59:56 coco systemd[1]: cockpit.service: Consumed 7.594s CPU time.
Jun 29 20:10:37 coco systemd[1]: Starting Cockpit Web Service...
Jun 29 20:10:37 coco systemd[1]: Started Cockpit Web Service.
Jun 29 20:12:38 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 29 21:37:35 coco systemd[1]: Starting Cockpit Web Service...
Jun 29 21:37:35 coco systemd[1]: Started Cockpit Web Service.
Jun 29 23:01:04 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 29 23:01:04 coco systemd[1]: cockpit.service: Consumed 12.114s CPU time.
Jun 30 03:17:26 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 03:17:26 coco systemd[1]: Started Cockpit Web Service.
Jun 30 03:19:27 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 04:15:20 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 04:15:20 coco systemd[1]: Started Cockpit Web Service.
Jun 30 04:24:08 coco cockpit-tls[4278]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jun 30 04:28:13 coco cockpit-tls[4278]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jun 30 04:48:47 coco cockpit-tls[4278]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jun 30 05:00:46 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 05:00:46 coco systemd[1]: cockpit.service: Consumed 4.694s CPU time.
Jun 30 05:17:03 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 05:17:03 coco systemd[1]: Started Cockpit Web Service.
Jun 30 05:19:08 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 13:29:49 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 13:29:49 coco systemd[1]: Started Cockpit Web Service.
Jun 30 14:44:13 coco systemd[1]: Stopping Cockpit Web Service...
Jun 30 14:44:13 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 14:44:13 coco systemd[1]: Stopped Cockpit Web Service.
Jun 30 14:44:13 coco systemd[1]: cockpit.service: Consumed 1min 2.291s CPU time.
Jun 30 14:44:13 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 14:44:13 coco systemd[1]: Started Cockpit Web Service.
Jun 30 14:44:48 coco systemd[1]: Stopping Cockpit Web Service...
Jun 30 14:44:48 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 14:44:48 coco systemd[1]: Stopped Cockpit Web Service.
Jun 30 14:44:48 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 14:44:48 coco systemd[1]: Started Cockpit Web Service.
Jun 30 14:51:19 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 14:51:19 coco systemd[1]: cockpit.service: Consumed 5.897s CPU time.
-- Boot 42c94eb4f35a4cacb55a309f62ded3c4 --
Jun 30 16:28:29 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 16:28:29 coco systemd[1]: Started Cockpit Web Service.
Jun 30 16:51:34 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 16:51:34 coco systemd[1]: cockpit.service: Consumed 6.333s CPU time.
Jun 30 17:42:35 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 17:42:35 coco systemd[1]: Started Cockpit Web Service.
Jun 30 17:44:05 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 17:47:42 coco systemd[1]: Starting Cockpit Web Service...
Jun 30 17:47:42 coco systemd[1]: Started Cockpit Web Service.
Jun 30 18:03:02 coco systemd[1]: cockpit.service: Deactivated successfully.
Jun 30 18:03:02 coco systemd[1]: cockpit.service: Consumed 1min 5.648s CPU time.
Jul 01 00:07:04 coco systemd[1]: Starting Cockpit Web Service...
Jul 01 00:07:04 coco systemd[1]: Started Cockpit Web Service.
Jul 01 00:35:29 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 01 00:35:29 coco systemd[1]: cockpit.service: Consumed 7.743s CPU time.
Jul 01 15:33:50 coco systemd[1]: Starting Cockpit Web Service...
Jul 01 15:33:50 coco systemd[1]: Started Cockpit Web Service.
Jul 01 15:36:32 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 01 15:46:15 coco systemd[1]: Starting Cockpit Web Service...
Jul 01 15:46:15 coco systemd[1]: Started Cockpit Web Service.
Jul 01 15:48:43 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 01 15:50:12 coco systemd[1]: Starting Cockpit Web Service...
Jul 01 15:50:12 coco systemd[1]: Started Cockpit Web Service.
Jul 01 15:52:59 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 01 15:52:59 coco systemd[1]: cockpit.service: Consumed 1.724s CPU time.
Jul 01 17:16:33 coco systemd[1]: Starting Cockpit Web Service...
Jul 01 17:16:33 coco systemd[1]: Started Cockpit Web Service.
Jul 01 17:27:44 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 01 19:04:00 coco systemd[1]: Starting Cockpit Web Service...
Jul 01 19:04:00 coco systemd[1]: Started Cockpit Web Service.
Jul 01 19:09:35 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 01 19:09:35 coco systemd[1]: cockpit.service: Consumed 1.614s CPU time.
-- Boot 57dd3d3a997e4629988bba668bc146ed --
Jul 02 16:18:26 coco systemd[1]: Starting Cockpit Web Service...
Jul 02 16:18:26 coco systemd[1]: Started Cockpit Web Service.
Jul 02 16:18:28 coco cockpit-tls[9640]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 02 16:20:29 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 6305114a15084f3cacd39b9a373484ea --
Jul 02 22:39:09 coco systemd[1]: Starting Cockpit Web Service...
Jul 02 22:39:09 coco systemd[1]: Started Cockpit Web Service.
Jul 02 22:41:24 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 02 22:58:29 coco systemd[1]: Starting Cockpit Web Service...
Jul 02 22:58:29 coco systemd[1]: Started Cockpit Web Service.
Jul 02 23:00:13 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot bee8156e9248489a95588b2b95b18971 --
Jul 03 15:57:12 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 15:57:12 coco systemd[1]: Started Cockpit Web Service.
Jul 03 15:59:41 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 03 16:16:39 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 16:16:39 coco systemd[1]: Started Cockpit Web Service.
Jul 03 16:55:56 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 03 16:55:56 coco systemd[1]: cockpit.service: Consumed 7.180s CPU time.
Jul 03 17:12:16 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 17:12:16 coco systemd[1]: Started Cockpit Web Service.
Jul 03 18:22:44 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 03 18:22:44 coco systemd[1]: cockpit.service: Consumed 1.388s CPU time.
Jul 03 18:23:14 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 18:23:14 coco systemd[1]: Started Cockpit Web Service.
Jul 03 18:30:42 coco systemd[1]: Stopping Cockpit Web Service...
Jul 03 18:30:42 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 03 18:30:42 coco systemd[1]: Stopped Cockpit Web Service.
Jul 03 18:30:42 coco systemd[1]: cockpit.service: Consumed 2.515s CPU time.
-- Boot ed23b865ca5a4104b00205663e26c140 --
Jul 03 18:38:19 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 18:38:19 coco systemd[1]: Started Cockpit Web Service.
Jul 03 18:41:38 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 03 18:41:44 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 18:41:44 coco systemd[1]: Started Cockpit Web Service.
Jul 03 18:49:24 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 03 18:49:24 coco systemd[1]: cockpit.service: Consumed 1.482s CPU time.
Jul 03 18:52:26 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 18:52:26 coco systemd[1]: Started Cockpit Web Service.
Jul 03 18:54:02 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot cf356ccec2ac41fb83dbcbc12f508318 --
Jul 03 19:26:47 coco systemd[1]: Starting Cockpit Web Service...
Jul 03 19:26:47 coco systemd[1]: Started Cockpit Web Service.
Jul 03 19:28:48 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 4517c6714e9d40d9b570bcabba3f7fe0 --
Jul 04 00:37:35 coco systemd[1]: Starting Cockpit Web Service...
Jul 04 00:37:35 coco systemd[1]: Started Cockpit Web Service.
Jul 04 00:39:36 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot bfd6d152bb1844d79a76594199cc4c54 --
Jul 04 22:39:24 coco systemd[1]: Starting Cockpit Web Service...
Jul 04 22:39:24 coco systemd[1]: Started Cockpit Web Service.
Jul 04 22:41:26 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 05 00:04:45 coco systemd[1]: Starting Cockpit Web Service...
Jul 05 00:04:45 coco systemd[1]: Started Cockpit Web Service.
Jul 05 00:07:00 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 05 01:35:02 coco systemd[1]: Starting Cockpit Web Service...
Jul 05 01:35:02 coco systemd[1]: Started Cockpit Web Service.
Jul 05 01:38:19 coco systemd[1]: Stopping Cockpit Web Service...
Jul 05 01:38:19 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 05 01:38:19 coco systemd[1]: Stopped Cockpit Web Service.
Jul 05 01:38:19 coco systemd[1]: cockpit.service: Consumed 2.445s CPU time.
-- Boot 33d36f8cdf694cdc9dfefc1df9ec529e --
Jul 05 14:45:45 coco systemd[1]: Starting Cockpit Web Service...
Jul 05 14:45:45 coco systemd[1]: Started Cockpit Web Service.
Jul 05 14:48:04 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 06aacf39d0b3468d9ca6c17ad43ba7f6 --
Jul 05 18:20:04 coco systemd[1]: Starting Cockpit Web Service...
Jul 05 18:20:04 coco systemd[1]: Started Cockpit Web Service.
Jul 05 18:20:05 coco cockpit-tls[2152]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 05 18:37:57 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 05 18:44:55 coco systemd[1]: Starting Cockpit Web Service...
Jul 05 18:44:55 coco systemd[1]: Started Cockpit Web Service.
Jul 05 19:09:05 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 05 19:09:05 coco systemd[1]: cockpit.service: Consumed 5.144s CPU time.
-- Boot 27949137dfd3414f8acadb730c6a0dcd --
Jul 06 14:09:48 coco systemd[1]: Starting Cockpit Web Service...
Jul 06 14:09:49 coco systemd[1]: Started Cockpit Web Service.
Jul 06 14:22:12 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 06 14:22:12 coco systemd[1]: cockpit.service: Consumed 3.631s CPU time.
-- Boot 94626bf4a8cc4e30989edaa75e24b90c --
Jul 06 22:44:11 coco systemd[1]: Starting Cockpit Web Service...
Jul 06 22:44:11 coco systemd[1]: Started Cockpit Web Service.
Jul 06 22:46:12 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 07 14:01:09 coco systemd[1]: Starting Cockpit Web Service...
Jul 07 14:01:09 coco systemd[1]: Started Cockpit Web Service.
Jul 07 14:01:09 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:09 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:09 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:09 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:01:10 coco cockpit-tls[32366]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 07 14:02:40 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 07 16:29:25 coco systemd[1]: Starting Cockpit Web Service...
Jul 07 16:29:25 coco systemd[1]: Started Cockpit Web Service.
Jul 07 17:22:32 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 07 17:22:32 coco systemd[1]: cockpit.service: Consumed 1min 58.236s CPU time.
Jul 07 17:25:23 coco systemd[1]: Starting Cockpit Web Service...
Jul 07 17:25:23 coco systemd[1]: Started Cockpit Web Service.
Jul 07 17:40:38 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 07 17:40:38 coco systemd[1]: cockpit.service: Consumed 1.832s CPU time.
Jul 07 18:38:46 coco systemd[1]: Starting Cockpit Web Service...
Jul 07 18:38:46 coco systemd[1]: Started Cockpit Web Service.
Jul 07 18:47:02 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 1e5dadd31ec940f5adb6fc8ba37804fb --
Jul 09 18:10:22 coco systemd[1]: Starting Cockpit Web Service...
Jul 09 18:10:22 coco systemd[1]: Started Cockpit Web Service.
Jul 09 18:10:22 coco cockpit-tls[64062]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 09 18:10:22 coco cockpit-tls[64062]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 09 18:11:52 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 04860fd4dbeb469686d0b950174e78a5 --
Jul 14 01:39:58 coco systemd[1]: Starting Cockpit Web Service...
Jul 14 01:39:58 coco systemd[1]: Started Cockpit Web Service.
Jul 14 01:46:28 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 15 09:58:09 coco systemd[1]: Starting Cockpit Web Service...
Jul 15 09:58:09 coco systemd[1]: Started Cockpit Web Service.
Jul 15 10:00:41 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 15 10:00:41 coco systemd[1]: cockpit.service: Consumed 2.837s CPU time.
-- Boot e0b1a7982a154ce6bd5a8d29341c40ee --
Jul 15 22:29:13 coco systemd[1]: Starting Cockpit Web Service...
Jul 15 22:29:13 coco systemd[1]: Started Cockpit Web Service.
Jul 15 22:30:44 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot f74808a1daa84d3aa9ec42ab3e917c94 --
Jul 19 17:41:17 coco systemd[1]: Starting Cockpit Web Service...
Jul 19 17:41:19 coco systemd[1]: Started Cockpit Web Service.
Jul 19 17:41:20 coco cockpit-tls[2012]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 19 17:43:25 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 19 17:43:41 coco systemd[1]: Starting Cockpit Web Service...
Jul 19 17:43:41 coco systemd[1]: Started Cockpit Web Service.
Jul 19 17:45:44 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 13908a1cacc14467b87784a2c0cd6626 --
Jul 19 21:22:31 coco systemd[1]: Starting Cockpit Web Service...
Jul 19 21:22:31 coco systemd[1]: Started Cockpit Web Service.
Jul 19 21:24:37 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 19 21:45:52 coco systemd[1]: Starting Cockpit Web Service...
Jul 19 21:45:52 coco systemd[1]: Started Cockpit Web Service.
Jul 19 21:47:42 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 19 22:48:20 coco systemd[1]: Starting Cockpit Web Service...
Jul 19 22:48:20 coco systemd[1]: Started Cockpit Web Service.
Jul 19 22:49:51 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 20 01:54:07 coco systemd[1]: Starting Cockpit Web Service...
Jul 20 01:54:07 coco systemd[1]: Started Cockpit Web Service.
Jul 20 01:55:40 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 20 10:24:11 coco systemd[1]: Starting Cockpit Web Service...
Jul 20 10:24:11 coco systemd[1]: Started Cockpit Web Service.
Jul 20 10:25:47 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 2473ba51a06f4a90a1ccb9b66817d775 --
Jul 20 19:45:50 coco systemd[1]: Starting Cockpit Web Service...
Jul 20 19:45:50 coco systemd[1]: Started Cockpit Web Service.
Jul 20 19:48:05 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 20 19:48:05 coco systemd[1]: cockpit.service: Consumed 1.092s CPU time.
Jul 20 22:48:41 coco systemd[1]: Starting Cockpit Web Service...
Jul 20 22:48:41 coco systemd[1]: Started Cockpit Web Service.
Jul 20 22:50:12 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 20 23:31:00 coco systemd[1]: Starting Cockpit Web Service...
Jul 20 23:31:00 coco systemd[1]: Started Cockpit Web Service.
Jul 20 23:32:45 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 20 23:49:00 coco systemd[1]: Starting Cockpit Web Service...
Jul 20 23:49:00 coco systemd[1]: Started Cockpit Web Service.
Jul 20 23:50:30 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 21 08:16:33 coco systemd[1]: Starting Cockpit Web Service...
Jul 21 08:16:33 coco systemd[1]: Started Cockpit Web Service.
Jul 21 08:18:08 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 21 11:33:28 coco systemd[1]: Starting Cockpit Web Service...
Jul 21 11:33:29 coco systemd[1]: Started Cockpit Web Service.
Jul 21 11:35:02 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 4ebbecb9e8964bfc98eaccfc7a8ef29e --
Jul 21 17:00:52 coco systemd[1]: Starting Cockpit Web Service...
Jul 21 17:00:53 coco systemd[1]: Started Cockpit Web Service.
Jul 21 18:34:08 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 21 18:34:08 coco systemd[1]: cockpit.service: Consumed 14.230s CPU time.
-- Boot c3fe42c88e0f42e1a61fa2876fa42c32 --
Jul 21 23:34:29 coco systemd[1]: Starting Cockpit Web Service...
Jul 21 23:34:29 coco systemd[1]: Started Cockpit Web Service.
Jul 21 23:53:35 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 21 23:53:35 coco systemd[1]: cockpit.service: Consumed 7.342s CPU time.
Jul 22 01:30:50 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 01:30:50 coco systemd[1]: Started Cockpit Web Service.
Jul 22 01:32:31 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 01:49:08 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 01:49:08 coco systemd[1]: Started Cockpit Web Service.
Jul 22 01:54:54 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 01:54:54 coco systemd[1]: cockpit.service: Consumed 1.693s CPU time.
Jul 22 04:57:36 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 04:57:36 coco systemd[1]: Started Cockpit Web Service.
Jul 22 04:59:11 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 11:00:17 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 11:00:17 coco systemd[1]: Started Cockpit Web Service.
Jul 22 11:01:47 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 14:01:41 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 14:01:41 coco systemd[1]: Started Cockpit Web Service.
Jul 22 14:18:24 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 14:18:24 coco systemd[1]: cockpit.service: Consumed 1min 3.510s CPU time.
Jul 22 14:22:48 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 14:22:48 coco systemd[1]: Started Cockpit Web Service.
Jul 22 14:43:15 coco systemd[1]: Stopping Cockpit Web Service...
Jul 22 14:43:15 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 14:43:15 coco systemd[1]: Stopped Cockpit Web Service.
Jul 22 14:43:15 coco systemd[1]: cockpit.service: Consumed 11.322s CPU time.
-- Boot 33c5814b3d5349c399f2dcc211e90aac --
Jul 22 14:48:42 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 14:48:42 coco systemd[1]: Started Cockpit Web Service.
Jul 22 14:50:12 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 14:50:22 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 14:50:22 coco systemd[1]: Started Cockpit Web Service.
Jul 22 15:41:49 coco systemd[1]: Stopping Cockpit Web Service...
Jul 22 15:41:49 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 15:41:49 coco systemd[1]: Stopped Cockpit Web Service.
Jul 22 15:41:49 coco systemd[1]: cockpit.service: Consumed 4.916s CPU time.
-- Boot ec7c180091fc444681347c3fba7bd0ee --
Jul 22 15:56:08 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 15:56:08 coco systemd[1]: Started Cockpit Web Service.
Jul 22 15:58:36 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 15:59:06 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 15:59:06 coco systemd[1]: Started Cockpit Web Service.
Jul 22 16:02:48 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 16:06:38 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 16:06:38 coco systemd[1]: Started Cockpit Web Service.
Jul 22 16:08:09 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 16:52:45 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 16:52:45 coco systemd[1]: Started Cockpit Web Service.
Jul 22 18:14:44 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 18:14:44 coco systemd[1]: cockpit.service: Consumed 36.500s CPU time.
Jul 22 18:26:19 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 18:26:19 coco systemd[1]: Started Cockpit Web Service.
Jul 22 18:30:10 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 6fd0962d5c4e4bdeaae84d23d0089ec5 --
Jul 22 21:10:34 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 21:10:34 coco systemd[1]: Started Cockpit Web Service.
Jul 22 21:13:11 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 21:13:11 coco systemd[1]: cockpit.service: Consumed 1.992s CPU time.
Jul 22 21:35:04 coco systemd[1]: Starting Cockpit Web Service...
Jul 22 21:35:04 coco systemd[1]: Started Cockpit Web Service.
Jul 22 22:05:43 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 22 22:05:43 coco systemd[1]: cockpit.service: Consumed 8.133s CPU time.
Jul 23 01:45:53 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 01:45:53 coco systemd[1]: Started Cockpit Web Service.
Jul 23 01:48:36 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 01:48:37 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 01:48:37 coco systemd[1]: Started Cockpit Web Service.
Jul 23 01:50:52 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 05:33:49 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 05:33:49 coco systemd[1]: Started Cockpit Web Service.
Jul 23 05:35:20 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 05:43:40 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 05:43:40 coco systemd[1]: Started Cockpit Web Service.
Jul 23 05:45:10 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 17:03:54 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 17:03:54 coco systemd[1]: Started Cockpit Web Service.
Jul 23 17:07:03 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 17:09:13 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 17:09:14 coco systemd[1]: Started Cockpit Web Service.
Jul 23 17:11:01 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 17:11:30 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 17:11:30 coco systemd[1]: Started Cockpit Web Service.
Jul 23 17:13:17 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 17:18:36 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 17:18:36 coco systemd[1]: Started Cockpit Web Service.
Jul 23 17:22:18 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 2283ab5838b84c83b7d07863455cfe08 --
Jul 23 22:40:22 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 22:40:22 coco systemd[1]: Started Cockpit Web Service.
Jul 23 22:40:22 coco cockpit-tls[27809]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 23 22:41:52 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 23 22:51:09 coco systemd[1]: Starting Cockpit Web Service...
Jul 23 22:51:09 coco systemd[1]: Started Cockpit Web Service.
Jul 23 22:51:09 coco cockpit-tls[28765]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 23 22:52:39 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 24 05:40:31 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 05:40:31 coco systemd[1]: Started Cockpit Web Service.
Jul 24 05:42:01 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 24 06:00:26 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 06:00:26 coco systemd[1]: Started Cockpit Web Service.
Jul 24 06:01:56 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 24 06:10:59 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 06:10:59 coco systemd[1]: Started Cockpit Web Service.
Jul 24 06:12:29 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 24 16:21:24 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 16:21:24 coco systemd[1]: Started Cockpit Web Service.
Jul 24 16:24:39 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot 18a079fae748411199f39ecc0e2e0777 --
Jul 24 19:28:50 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 19:28:50 coco systemd[1]: Started Cockpit Web Service.
Jul 24 19:28:50 coco cockpit-tls[54433]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 24 19:32:22 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot f9719ce22891415d90fb91628303ebde --
Jul 24 22:08:28 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 22:08:28 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:08:29 coco cockpit-tls[4243]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 24 22:08:29 coco cockpit-tls[4243]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
Jul 24 22:12:34 coco cockpit-tls[4243]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
Jul 24 22:12:36 coco cockpit-tls[4243]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
Jul 24 22:14:07 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 24 22:20:55 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:20:55 coco cockpit-tls[5332]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:20:55 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:20:55 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:05 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:21:06 coco cockpit-tls[5366]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:06 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:21:06 coco cockpit-tls[5369]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:06 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:21:06 coco cockpit-tls[5373]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:06 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:21:06 coco cockpit-tls[5377]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:06 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:21:06 coco cockpit-tls[5380]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Start request repeated too quickly.
Jul 24 22:21:06 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:21:06 coco systemd[1]: Failed to start Cockpit Web Service.
Jul 24 22:22:16 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:22:16 coco cockpit-tls[5641]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:22:16 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:22:16 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:23:02 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 22:23:02 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:23:02 coco cockpit-tls[5850]: cockpit-tls: Failed to initialize server certificate: Error while reading file.
Jul 24 22:23:02 coco systemd[1]: cockpit.service: Main process exited, code=exited, status=1/FAILURE
Jul 24 22:23:02 coco systemd[1]: cockpit.service: Failed with result 'exit-code'.
Jul 24 22:23:21 coco systemd[1]: Starting Cockpit Web Service...
Jul 24 22:23:21 coco systemd[1]: Started Cockpit Web Service.
Jul 24 22:25:27 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot e3aaef6e0faa42cba2dd0a39169a86d0 --
Jul 26 19:50:43 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 19:50:43 coco systemd[1]: Started Cockpit Web Service.
Jul 26 19:52:31 coco cockpit-tls[27640]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
Jul 26 19:52:39 coco cockpit-tls[27640]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
Jul 26 19:54:24 coco cockpit-tls[27640]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
Jul 26 19:59:38 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:01:29 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:01:29 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:03:23 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:03:23 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:03:23 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:03:23 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:03:23 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:05:23 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:05:23 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:05:23 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:05:24 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:05:24 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:07:50 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:07:50 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:07:50 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:07:53 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:07:53 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:08:04 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:08:04 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:08:04 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:08:07 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:08:07 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:08:22 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:08:22 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:08:22 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:08:47 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:08:47 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:08:56 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:08:56 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:08:56 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:09:46 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:09:46 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:14:07 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:14:08 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:14:08 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:17:08 coco systemd[1]: Stopping Cockpit Web Service...
Jul 26 20:17:08 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 20:17:08 coco systemd[1]: Stopped Cockpit Web Service.
Jul 26 20:17:08 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 20:17:08 coco systemd[1]: Started Cockpit Web Service.
Jul 26 20:18:21 coco cockpit-tls[31135]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
Jul 26 20:20:56 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 22:44:24 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 22:44:24 coco systemd[1]: Started Cockpit Web Service.
Jul 26 22:47:26 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 26 23:39:00 coco systemd[1]: Starting Cockpit Web Service...
Jul 26 23:39:00 coco systemd[1]: Started Cockpit Web Service.
Jul 26 23:40:30 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot c4b34a4ccffe47db91f176d54ef7bb46 --
Jul 27 19:07:43 coco systemd[1]: Starting Cockpit Web Service...
Jul 27 19:07:43 coco systemd[1]: Started Cockpit Web Service.
Jul 27 19:09:51 coco systemd[1]: cockpit.service: Deactivated successfully.
Jul 28 11:10:34 coco systemd[1]: Starting Cockpit Web Service...
Jul 28 11:10:34 coco systemd[1]: Started Cockpit Web Service.
Jul 28 11:12:30 coco systemd[1]: cockpit.service: Deactivated successfully.
-- Boot b243c1b87f0b4c93b4257fdceae4076e --
Jul 28 16:11:02 coco systemd[1]: Starting Cockpit Web Service...
Jul 28 16:11:02 coco systemd[1]: Started Cockpit Web Service.
I had the same issue. I also changed the nginx conf file, changing my ip address with the localhost one. I didn't add AllowUnencrypted=True, nor did I do the ownership thing. I don't know what's the difference between the bare ip address and the localhost one security-wise though... Ty for the fix!
same thing happening here Aug 02 22:12:38 vps.zeusteam.dev cockpit-tls[10710]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received. Aug 02 22:12:38 vps.zeusteam.dev cockpit-tls[10710]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received. Aug 02 22:12:53 vps.zeusteam.dev cockpit-tls[10710]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received. Aug 02 22:12:53 vps.zeusteam.dev cockpit-tls[10710]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received. Aug 02 22:14:09 vps.zeusteam.dev cockpit-tls[10710]: cockpit-tls: gnutls_handshake failed: The TLS connection was non-properly terminated.
This seems not to be a bug. I had the same problem. I got:
An unexpected error occurred while connecting to the machine.
and:
gnutls_handshake failed: A TLS fatal alert has been received.
But I found the solution here: https://github.com/cockpit-project/cockpit/wiki/Proxying-Cockpit-over-NGINX
I just allowed the origin in /etc/cockpit/cockpit.conf (if the file is not there create it) like this:
[WebService]
Origins = https://cockpit.domain.tld wss://cockpit.domain.tld
ProtocolHeader = X-Forwarded-Proto
I think the expression unexpected error in the error message is kinda misleading in this situation.
If anybody is using NGINX proxy manager, you just need to enable Websockets support from the WebUI
This seems not to be a bug. I had the same problem. I got:
An unexpected error occurred while connecting to the machine.and:gnutls_handshake failed: A TLS fatal alert has been received.But I found the solution here: https://github.com/cockpit-project/cockpit/wiki/Proxying-Cockpit-over-NGINX
I just allowed the origin in /etc/cockpit/cockpit.conf (if the file is not there create it) like this:
[WebService] Origins = https://cockpit.domain.tld wss://cockpit.domain.tld ProtocolHeader = X-Forwarded-ProtoI think the expression
unexpected errorin the error message is kinda misleading in this situation.
thank you. did it for me. cockpit stopped working behind nginx with
[WebService]
Origins = http://domain.tld/subdir/cockpit ws://domain.tld/subdir/cockpit
https // wss works.