Skip to main content
Question

pollers not running after update from 23.04.2 to 23.04.7

  • September 21, 2023
  • 1 reply
  • 95 views

Forum|alt.badge.img+3

Hello everyone

I tried to update centreon 23.04.2 to 23.04.7, I done the update without problem but after this pollers are not running.
Someone had this issue ?

I followed this topic, no result https://thewatch.centreon.com/platform-7/pollers-and-central-not-running-after-upgrade-from-21-04-to-21-10-505?postid=1623#post1623

 

 

/var/log/centreon-broker/central-broker-master.log

 

 

1 reply

Sébastien
Centreonian
Forum|alt.badge.img+8
  • Centreonian
  • March 4, 2026

Hello ​@Paco 

For some reason, the data_bin table is missing.

You can create it using the query below.

mysql
use centreon_storage
CREATE TABLE
`data_bin` (
`id_metric` INT (11) DEFAULT NULL,
`ctime` INT (11) DEFAULT NULL,
`value` FLOAT DEFAULT NULL,
`status` enum ('0', '1', '2', '3', '4') DEFAULT NULL,
KEY `index_metric` (`id_metric`)
);

And run this command

/usr/bin/php /usr/share/centreon/bin/centreon-partitioning.php -m data_bin