Checkmk update fail #723

Closed
opened 2026-02-04 21:06:55 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @demlak on GitHub (Apr 1, 2025).

Have you read and understood the above guidelines?

yes

📜 What is the name of the script you are using?

Checkmk LXC

📂 What was the exact command used to execute the script?

update

📝 Provide a clear and concise description of the issue.

Errors on update

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 12

🔄 Steps to reproduce the issue.

just do update

Paste the full error output (if available).

silent update:

curl: (22) The requested URL returned error: 400

[ERROR] in line 1256: exit code 0: while executing command "$@" >> "$LOGFILE" 2>&1

Verbose-update afterwards:
⠸ Updating checkmk to v2.4.0b2Removing Crontab...no crontab for monitoring
Stopping redis...Not running.
Stopping apache...(not running)...OK
Stopping nagios...not running...OK
npcd was not running... could not stop
Stopping rrdcached...not running.
⠼ Updating checkmk to v2.4.0b2Stopping mkeventd...Not running.
Stopping agent-receiver...not running.
⠧ Updating checkmk to v2.4.0b2Site 'monitoringbackup' already existing.
⠇ Updating checkmk to v2.4.0b2
[ERROR] in line 34: exit code 0: while executing command $STD omd cp monitoring monitoringbackup

🖼️ Additional context (optional).

No response

Originally created by @demlak on GitHub (Apr 1, 2025). ### ✅ Have you read and understood the above guidelines? yes ### 📜 What is the name of the script you are using? Checkmk LXC ### 📂 What was the exact command used to execute the script? update ### 📝 Provide a clear and concise description of the issue. Errors on update ### ⚙️ What settings are you using? - [x] Default Settings - [ ] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 12 ### 🔄 Steps to reproduce the issue. just do update ### ❌ Paste the full error output (if available). silent update: curl: (22) The requested URL returned error: 400 [ERROR] in line 1256: exit code 0: while executing command "$@" >> "$LOGFILE" 2>&1 Verbose-update afterwards: ⠸ Updating checkmk to v2.4.0b2Removing Crontab...no crontab for monitoring Stopping redis...Not running. Stopping apache...(not running)...OK Stopping nagios...not running...OK npcd was not running... could not stop Stopping rrdcached...not running. ⠼ Updating checkmk to v2.4.0b2Stopping mkeventd...Not running. Stopping agent-receiver...not running. ⠧ Updating checkmk to v2.4.0b2Site 'monitoringbackup' already existing. ⠇ Updating checkmk to v2.4.0b2 [ERROR] in line 34: exit code 0: while executing command $STD omd cp monitoring monitoringbackup ### 🖼️ Additional context (optional). _No response_
OVERLORD added the bug label 2026-02-04 21:06:55 +03:00
Author
Owner

@MickLesk commented on GitHub (Apr 1, 2025):

you get an 400 (bad request)
try:
RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | tr ' ' '\n' | grep -v '-rc' | sort -V | tail -n 1)
echo $RELEASE
curl -fsSL "https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_amd64.deb" -o "/opt/checkmk.deb"
ls -la /opt

@MickLesk commented on GitHub (Apr 1, 2025): you get an 400 (bad request) try: RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | tr ' ' '\n' | grep -v '\-rc' | sort -V | tail -n 1) echo $RELEASE curl -fsSL "https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_amd64.deb" -o "/opt/checkmk.deb" ls -la /opt
Author
Owner

@michelroegl-brunner commented on GitHub (Apr 1, 2025):

Nah it fails when copying the montioring site. Can you check how much space you hav left? And delete the backup befor running the script again:

omd -f rm monitoringbackup

@michelroegl-brunner commented on GitHub (Apr 1, 2025): Nah it fails when copying the montioring site. Can you check how much space you hav left? And delete the backup befor running the script again: omd -f rm monitoringbackup
Author
Owner

@demlak commented on GitHub (Apr 1, 2025):

you get an 400 (bad request) try: RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | tr ' ' '\n' | grep -v '-rc' | sort -V | tail -n 1) echo $RELEASE curl -fsSL "https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_amd64.deb" -o "/opt/checkmk.deb" ls -la /opt

the - at -rc needs to be escaped..

root@checkmk:~# RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | tr ' ' '\n' | grep -v '\-rc' | sort -V | tail -n 1)

echo $RELEASE

curl -fsSL "https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_amd64.deb" -o "/opt/checkmk.deb"

ls -la /opt
2.4.0b2
total 265568
drwxr-xr-x  3 root root      4096 Apr  1 13:04 .
drwxr-xr-x 18 root root      4096 Apr  1 13:27 ..
-rw-r--r--  1 root root 271921076 Apr  1 13:31 checkmk.deb
-rw-r--r--  1 root root         6 Jan 17 23:43 checkmk_version.txt
drwxr-xr-x  5 root root      4096 Jan 17 23:40 omd
root@checkmk:~# cat /opt/checkmk_version.txt 
2.3.0
root@checkmk:~# 

Nah it fails when copying the montioring site. Can you check how much space you hav left? And delete the backup befor running the script again:

omd -f rm monitoringbackup

doing verbose-update after omd -f rm monitoringbackup:

⠸ Updating checkmk to v2.4.0b2Removing Crontab...no crontab for monitoring
Stopping redis...Not running.
Stopping apache...(not running)...OK
Stopping nagios...not running...OK
npcd was not running... could not stop
Stopping rrdcached...not running.
Stopping mkeventd...Not running.
Stopping agent-receiver...not running.
⠴ Updating checkmk to v2.4.0b2 * Converted      ./.profile
 * Converted      ./.modulebuildrc
 * Converted      etc/logrotate.conf
 * Converted      etc/xinetd.conf
 * Converted      etc/apache/apache.conf
 * Converted      etc/apache/php-wrapper
 * Converted      etc/apache/conf.d/auth.conf
 * Converted      etc/apache/conf.d/01_wsgi.conf
 * Converted      etc/apache/conf.d/02_fcgid.conf
 * Converted      etc/apache/conf.d/site.conf
 * Converted      etc/apache/conf.d/var_www.conf
 * Converted      etc/apache/conf.d/stats.conf
 * Converted      etc/apache/conf.d/omd.conf
⠦ Updating checkmk to v2.4.0b2 * Converted      etc/check_mk/apache.conf
 * Converted      etc/logrotate.d/update
 * Converted      etc/logrotate.d/ldap
 * Converted      etc/logrotate.d/agent_bakery
 * Converted      etc/logrotate.d/security
 * Converted      etc/logrotate.d/license-usage
 * Converted      etc/logrotate.d/livestatus
 * Converted      etc/logrotate.d/apache
 * Converted      etc/logrotate.d/apache-stats
 * Converted      etc/logrotate.d/mk-alerts
 * Converted      etc/logrotate.d/web
 * Converted      etc/logrotate.d/diskspace
 * Converted      etc/logrotate.d/audit
 * Converted      etc/logrotate.d/mkeventd
 * Converted      etc/logrotate.d/xinetd
 * Converted      etc/logrotate.d/agent-registration
 * Converted      etc/logrotate.d/agent-receiver
 * Converted      etc/logrotate.d/rrdcached
 * Converted      etc/logrotate.d/mk-notify
 * Converted      etc/logrotate.d/stunnel
 * Converted      etc/logrotate.d/redis
 * Converted      etc/init.d/apache
 * Converted      etc/init.d/nagios
 * Converted      etc/init.d/npcd
 * Converted      etc/init.d/crontab
 * Converted      etc/init.d/rrdcached
 * Converted      etc/init.d/stunnel
 * Converted      etc/init.d/pnp_gearman_worker
 * Converted      etc/cron.d/cmk_bulk_notify
 * Converted      etc/cron.d/cmk_multisite
 * Converted      etc/cron.d/cmk_update_license_usage
 * Converted      etc/pnp4nagios/npcd.cfg
 * Converted      etc/pnp4nagios/nagios_npcd.cfg
 * Converted      etc/pnp4nagios/nagios_npcdmod.cfg
 * Converted      etc/pnp4nagios/config.php
 * Converted      etc/pnp4nagios/process_perfdata.cfg
⠧ Updating checkmk to v2.4.0b2 * Converted      etc/nagios/cgi.cfg
 * Converted      etc/nagios/resource.cfg
 * Converted      etc/nagios/config.inc.php
 * Converted      etc/nagios/conf.d/check_mk_templates.cfg
 * Converted      etc/nagios/nagios.d/omd.cfg
 * Converted      etc/mk-livestatus/livestatus@.service
 * Converted      etc/mk-livestatus/xinetd.conf
 * Converted      etc/mk-livestatus/nagios.cfg
 * Converted      etc/stunnel/server.conf
 * Converted      etc/stunnel/conf.d/01-livestatus.conf
 * Converted      etc/nagvis/apache.conf
 * Converted      etc/nagvis/conf.d/omd.ini.php
 * Converted      etc/redis/redis.conf
OK
⠇ Updating checkmk to v2.4.0b2Adding /opt/omd/sites/monitoringbackup/tmp to /etc/fstab.
Creating temporary filesystem /omd/sites/monitoringbackup/tmp...OK
agent-receiver port 8000 is in use. I've choosen 8002 instead.
Apache port 5000 is in use. I've choosen 5002 instead.
⠏ Updating checkmk to v2.4.0b2Livestatus port 6557 is in use. I've choosen 6559 instead.
Updating core configuration...
⠼ Updating checkmk to v2.4.0b2Generating configuration for core (type nagios)...
Precompiling host checks...OK
⠦ Updating checkmk to v2.4.0b2Executing post-cp script "01_cmk-post-rename-site"...
-|  1/7 Distributed monitoring configuration...
-|  2/7 Hosts and folders...
-|  3/7 Update core config...
⠙ Updating checkmk to v2.4.0b2-| Generating configuration for core (type nagios)...
-| Precompiling host checks...OK
⠴ Updating checkmk to v2.4.0b2-|  4/7 Compute REST API specification...
⠇ Updating checkmk to v2.4.0b2-|  5/7 Warn about renamed remote site...
-|  6/7 Warn about new network ports...
-| 
-| WARNING: Network port configuration may need your attention
-| 
-| It seems like you copied an existing site. In case you plan to use both on the same system, you may have to review the network port configuration of your sites. Two sites with the same configuration may cause network port conflicts. For example if you enabled livestatus to listen via TCP or enabled the Event Console to listen for incoming Syslog messages or SNMP traps, you may have to update the configuration in one of the sites to resolve the conflicts.
-| 
-|  7/7 Warn about configurations to review...
-| 
-| WARNING: Some configs may need to be reviewed
-| 
-| Parts of the site configuration cannot be migrated automatically. The following
-| parts of the configuration may have to be reviewed and adjusted manually:
-| 
-| - Custom bookmarks (in users bookmark lists)
-| - Hard coded site filters in custom dashboards, views, reports
-| - Path in rrdcached journal files
-| - NagVis maps or custom NagVis backend settings
-| - Notification rule "site" conditions
-| - Event Console rule "site" conditions
-| - "site" field in "Agent updater (Linux, Windows, Solaris)" rules (CEE/CME only)
-| - Alert handler rule "site" conditions (CEE/CME only)
-| 
-| Done
⠼ Updating checkmk to v2.4.0b2OK
⠦ Updating checkmk to v2.4.0b2OK
Reading package lists... Done2
Building dependency tree... Done
Reading state information... Done
Note, selecting 'check-mk-raw-2.4.0b2' instead of '/opt/checkmk.deb'
⠦ Updating checkmk to v2.4.0b2The following NEW packages will be installed:
  check-mk-raw-2.4.0b2
⠧ Updating checkmk to v2.4.0b20 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/272 MB of archives.
After this operation, 1,261 MB of additional disk space will be used.
Get:1 /opt/checkmk.deb check-mk-raw-2.4.0b2 amd64 0.bookworm [272 MB]
⠧ Updating checkmk to v2.4.0b2Preconfiguring packages ...
(Reading database ... 71518 files and directories currently installed.)
Preparing to unpack /opt/checkmk.deb ...
⠸ Updating checkmk to v2.4.0b2Unpacking check-mk-raw-2.4.0b2 (0.bookworm) ...
⠼ Updating checkmk to v2.4.0b2dpkg: error processing archive /opt/checkmk.deb (--unpack):
 cannot copy extracted data for './opt/omd/versions/2.4.0b2.cre/lib/python3.12/site-packages/googleapiclient/discovery_cache/documents/aiplatform.v1beta1.json' to '/opt/omd/versions/2.4.0b2.cre/lib/python3.12/site-packages/googleapiclient/discovery_cache/documents/aiplatform.v1beta1.json.dpkg-new': failed to write (No space left on device)
⠋ Updating checkmk to v2.4.0b2dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
⠹ Updating checkmk to v2.4.0b2Errors were encountered while processing:
 /opt/checkmk.deb
⠸ Updating checkmk to v2.4.0b2E: Sub-process /usr/bin/dpkg returned an error code (1)
⠦ Updating checkmk to v2.4.0b2
[ERROR] in line 36: exit code 0: while executing command $STD apt-get install -y /opt/checkmk.deb

root@checkmk:~# df -h
Filesystem                               Size  Used Avail Use% Mounted on
/dev/mapper/local--vms-vm--100--disk--0  3.9G  3.1G  657M  83% /
none                                     492K  4.0K  488K   1% /dev
udev                                     7.8G     0  7.8G   0% /dev/tty
tmpfs                                    7.8G  1.2M  7.8G   1% /dev/shm
tmpfs                                    3.2G  124K  3.2G   1% /run
tmpfs                                    5.0M     0  5.0M   0% /run/lock
tmpfs                                    7.8G   20K  7.8G   1% /opt/omd/sites/monitoring/tmp
tmpfs                                    7.8G   84K  7.8G   1% /opt/omd/sites/npmproxymanager/tmp
tmpfs                                    7.8G     0  7.8G   0% /opt/omd/sites/monitoringbackup/tmp

so, i need to resize disk?

Edit: yes.. resizing disk results in a working update.. (needed to rm monitoringbackup again)
Mabe default size of 4gb should be raised? this was a nearly new install without much data.

@demlak commented on GitHub (Apr 1, 2025): > you get an 400 (bad request) try: RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | tr ' ' '\n' | grep -v '-rc' | sort -V | tail -n 1) echo $RELEASE curl -fsSL "[https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_amd64.deb](https://download.checkmk.com/checkmk/$%7BRELEASE%7D/check-mk-raw-$%7BRELEASE%7D_0.bookworm_amd64.deb)" -o "/opt/checkmk.deb" ls -la /opt the `-` at `-rc` needs to be escaped.. ``` root@checkmk:~# RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | tr ' ' '\n' | grep -v '\-rc' | sort -V | tail -n 1) echo $RELEASE curl -fsSL "https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_amd64.deb" -o "/opt/checkmk.deb" ls -la /opt 2.4.0b2 total 265568 drwxr-xr-x 3 root root 4096 Apr 1 13:04 . drwxr-xr-x 18 root root 4096 Apr 1 13:27 .. -rw-r--r-- 1 root root 271921076 Apr 1 13:31 checkmk.deb -rw-r--r-- 1 root root 6 Jan 17 23:43 checkmk_version.txt drwxr-xr-x 5 root root 4096 Jan 17 23:40 omd root@checkmk:~# cat /opt/checkmk_version.txt 2.3.0 root@checkmk:~# ``` > Nah it fails when copying the montioring site. Can you check how much space you hav left? And delete the backup befor running the script again: > > omd -f rm monitoringbackup doing verbose-update after `omd -f rm monitoringbackup`: ``` ⠸ Updating checkmk to v2.4.0b2Removing Crontab...no crontab for monitoring Stopping redis...Not running. Stopping apache...(not running)...OK Stopping nagios...not running...OK npcd was not running... could not stop Stopping rrdcached...not running. Stopping mkeventd...Not running. Stopping agent-receiver...not running. ⠴ Updating checkmk to v2.4.0b2 * Converted ./.profile * Converted ./.modulebuildrc * Converted etc/logrotate.conf * Converted etc/xinetd.conf * Converted etc/apache/apache.conf * Converted etc/apache/php-wrapper * Converted etc/apache/conf.d/auth.conf * Converted etc/apache/conf.d/01_wsgi.conf * Converted etc/apache/conf.d/02_fcgid.conf * Converted etc/apache/conf.d/site.conf * Converted etc/apache/conf.d/var_www.conf * Converted etc/apache/conf.d/stats.conf * Converted etc/apache/conf.d/omd.conf ⠦ Updating checkmk to v2.4.0b2 * Converted etc/check_mk/apache.conf * Converted etc/logrotate.d/update * Converted etc/logrotate.d/ldap * Converted etc/logrotate.d/agent_bakery * Converted etc/logrotate.d/security * Converted etc/logrotate.d/license-usage * Converted etc/logrotate.d/livestatus * Converted etc/logrotate.d/apache * Converted etc/logrotate.d/apache-stats * Converted etc/logrotate.d/mk-alerts * Converted etc/logrotate.d/web * Converted etc/logrotate.d/diskspace * Converted etc/logrotate.d/audit * Converted etc/logrotate.d/mkeventd * Converted etc/logrotate.d/xinetd * Converted etc/logrotate.d/agent-registration * Converted etc/logrotate.d/agent-receiver * Converted etc/logrotate.d/rrdcached * Converted etc/logrotate.d/mk-notify * Converted etc/logrotate.d/stunnel * Converted etc/logrotate.d/redis * Converted etc/init.d/apache * Converted etc/init.d/nagios * Converted etc/init.d/npcd * Converted etc/init.d/crontab * Converted etc/init.d/rrdcached * Converted etc/init.d/stunnel * Converted etc/init.d/pnp_gearman_worker * Converted etc/cron.d/cmk_bulk_notify * Converted etc/cron.d/cmk_multisite * Converted etc/cron.d/cmk_update_license_usage * Converted etc/pnp4nagios/npcd.cfg * Converted etc/pnp4nagios/nagios_npcd.cfg * Converted etc/pnp4nagios/nagios_npcdmod.cfg * Converted etc/pnp4nagios/config.php * Converted etc/pnp4nagios/process_perfdata.cfg ⠧ Updating checkmk to v2.4.0b2 * Converted etc/nagios/cgi.cfg * Converted etc/nagios/resource.cfg * Converted etc/nagios/config.inc.php * Converted etc/nagios/conf.d/check_mk_templates.cfg * Converted etc/nagios/nagios.d/omd.cfg * Converted etc/mk-livestatus/livestatus@.service * Converted etc/mk-livestatus/xinetd.conf * Converted etc/mk-livestatus/nagios.cfg * Converted etc/stunnel/server.conf * Converted etc/stunnel/conf.d/01-livestatus.conf * Converted etc/nagvis/apache.conf * Converted etc/nagvis/conf.d/omd.ini.php * Converted etc/redis/redis.conf OK ⠇ Updating checkmk to v2.4.0b2Adding /opt/omd/sites/monitoringbackup/tmp to /etc/fstab. Creating temporary filesystem /omd/sites/monitoringbackup/tmp...OK agent-receiver port 8000 is in use. I've choosen 8002 instead. Apache port 5000 is in use. I've choosen 5002 instead. ⠏ Updating checkmk to v2.4.0b2Livestatus port 6557 is in use. I've choosen 6559 instead. Updating core configuration... ⠼ Updating checkmk to v2.4.0b2Generating configuration for core (type nagios)... Precompiling host checks...OK ⠦ Updating checkmk to v2.4.0b2Executing post-cp script "01_cmk-post-rename-site"... -| 1/7 Distributed monitoring configuration... -| 2/7 Hosts and folders... -| 3/7 Update core config... ⠙ Updating checkmk to v2.4.0b2-| Generating configuration for core (type nagios)... -| Precompiling host checks...OK ⠴ Updating checkmk to v2.4.0b2-| 4/7 Compute REST API specification... ⠇ Updating checkmk to v2.4.0b2-| 5/7 Warn about renamed remote site... -| 6/7 Warn about new network ports... -| -| WARNING: Network port configuration may need your attention -| -| It seems like you copied an existing site. In case you plan to use both on the same system, you may have to review the network port configuration of your sites. Two sites with the same configuration may cause network port conflicts. For example if you enabled livestatus to listen via TCP or enabled the Event Console to listen for incoming Syslog messages or SNMP traps, you may have to update the configuration in one of the sites to resolve the conflicts. -| -| 7/7 Warn about configurations to review... -| -| WARNING: Some configs may need to be reviewed -| -| Parts of the site configuration cannot be migrated automatically. The following -| parts of the configuration may have to be reviewed and adjusted manually: -| -| - Custom bookmarks (in users bookmark lists) -| - Hard coded site filters in custom dashboards, views, reports -| - Path in rrdcached journal files -| - NagVis maps or custom NagVis backend settings -| - Notification rule "site" conditions -| - Event Console rule "site" conditions -| - "site" field in "Agent updater (Linux, Windows, Solaris)" rules (CEE/CME only) -| - Alert handler rule "site" conditions (CEE/CME only) -| -| Done ⠼ Updating checkmk to v2.4.0b2OK ⠦ Updating checkmk to v2.4.0b2OK Reading package lists... Done2 Building dependency tree... Done Reading state information... Done Note, selecting 'check-mk-raw-2.4.0b2' instead of '/opt/checkmk.deb' ⠦ Updating checkmk to v2.4.0b2The following NEW packages will be installed: check-mk-raw-2.4.0b2 ⠧ Updating checkmk to v2.4.0b20 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. Need to get 0 B/272 MB of archives. After this operation, 1,261 MB of additional disk space will be used. Get:1 /opt/checkmk.deb check-mk-raw-2.4.0b2 amd64 0.bookworm [272 MB] ⠧ Updating checkmk to v2.4.0b2Preconfiguring packages ... (Reading database ... 71518 files and directories currently installed.) Preparing to unpack /opt/checkmk.deb ... ⠸ Updating checkmk to v2.4.0b2Unpacking check-mk-raw-2.4.0b2 (0.bookworm) ... ⠼ Updating checkmk to v2.4.0b2dpkg: error processing archive /opt/checkmk.deb (--unpack): cannot copy extracted data for './opt/omd/versions/2.4.0b2.cre/lib/python3.12/site-packages/googleapiclient/discovery_cache/documents/aiplatform.v1beta1.json' to '/opt/omd/versions/2.4.0b2.cre/lib/python3.12/site-packages/googleapiclient/discovery_cache/documents/aiplatform.v1beta1.json.dpkg-new': failed to write (No space left on device) ⠋ Updating checkmk to v2.4.0b2dpkg-deb: error: paste subprocess was killed by signal (Broken pipe) ⠹ Updating checkmk to v2.4.0b2Errors were encountered while processing: /opt/checkmk.deb ⠸ Updating checkmk to v2.4.0b2E: Sub-process /usr/bin/dpkg returned an error code (1) ⠦ Updating checkmk to v2.4.0b2 [ERROR] in line 36: exit code 0: while executing command $STD apt-get install -y /opt/checkmk.deb root@checkmk:~# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/local--vms-vm--100--disk--0 3.9G 3.1G 657M 83% / none 492K 4.0K 488K 1% /dev udev 7.8G 0 7.8G 0% /dev/tty tmpfs 7.8G 1.2M 7.8G 1% /dev/shm tmpfs 3.2G 124K 3.2G 1% /run tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 7.8G 20K 7.8G 1% /opt/omd/sites/monitoring/tmp tmpfs 7.8G 84K 7.8G 1% /opt/omd/sites/npmproxymanager/tmp tmpfs 7.8G 0 7.8G 0% /opt/omd/sites/monitoringbackup/tmp ``` so, i need to resize disk? Edit: yes.. resizing disk results in a working update.. (needed to rm monitoringbackup again) Mabe default size of 4gb should be raised? this was a nearly new install without much data.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#723