Closed arno-st closed 5 years ago
See if the temporary file is available still as that should list the various statuses of any DB updates.
No it's not available issuing a find / -name cdujDAgut didn't give anything
so How can I go on or restart the upgrade or ... Without having to crash everything
What version does it show in the version table?
I found this record:
install_version 1.2.6
That's in the settings table, not the version table. 👍
Sorry it's 1.2.3
So it would seem the 1.2.3 to 1.2.5 upgrade fails. Have you got innodb_large_prefix enabled?
Yes I do: | innodb_large_prefix | ON |
This sounds identical to https://github.com/Cacti/cacti/issues/2969 so makes me wonder. Can you show me all your innodb variables?
+-------------------------------------------+------------------------+
| Variable_name | Value |
+-------------------------------------------+------------------------+
| have_innodb | YES |
| ignore_builtin_innodb | OFF |
| innodb_adaptive_flushing | ON |
| innodb_adaptive_flushing_method | estimate |
| innodb_adaptive_hash_index | ON |
| innodb_adaptive_hash_index_partitions | 1 |
| innodb_additional_mem_pool_size | 134217728 |
| innodb_autoextend_increment | 8 |
| innodb_autoinc_lock_mode | 1 |
| innodb_blocking_buffer_pool_restore | OFF |
| innodb_buffer_pool_instances | 1 |
| innodb_buffer_pool_populate | OFF |
| innodb_buffer_pool_restore_at_startup | 0 |
| innodb_buffer_pool_shm_checksum | ON |
| innodb_buffer_pool_shm_key | 0 |
| innodb_buffer_pool_size | 16452157440 |
| innodb_change_buffering | all |
| innodb_checkpoint_age_target | 0 |
| innodb_checksums | ON |
| innodb_commit_concurrency | 0 |
| innodb_concurrency_tickets | 500 |
| innodb_corrupt_table_action | assert |
| innodb_data_file_path | ibdata1:10M:autoextend |
| innodb_data_home_dir | |
| innodb_dict_size_limit | 0 |
| innodb_doublewrite | ON |
| innodb_doublewrite_file | |
| innodb_fake_changes | OFF |
| innodb_fast_checksum | OFF |
| innodb_fast_shutdown | 1 |
| innodb_file_format | Barracuda |
| innodb_file_format_check | ON |
| innodb_file_format_max | Antelope |
| innodb_file_per_table | ON |
| innodb_flush_log_at_trx_commit | 2 |
| innodb_flush_method | |
| innodb_flush_neighbor_pages | area |
| innodb_force_load_corrupted | OFF |
| innodb_force_recovery | 0 |
| innodb_ibuf_accel_rate | 100 |
| innodb_ibuf_active_contract | 1 |
| innodb_ibuf_max_size | 8226062336 |
| innodb_import_table_from_xtrabackup | 0 |
| innodb_io_capacity | 200 |
| innodb_kill_idle_transaction | 0 |
| innodb_large_prefix | ON |
| innodb_lazy_drop_table | 0 |
| innodb_lock_wait_timeout | 50 |
| innodb_locking_fake_changes | ON |
| innodb_locks_unsafe_for_binlog | OFF |
| innodb_log_block_size | 512 |
| innodb_log_buffer_size | 8388608 |
| innodb_log_file_size | 5242880 |
| innodb_log_files_in_group | 2 |
| innodb_log_group_home_dir | ./ |
| innodb_max_bitmap_file_size | 104857600 |
| innodb_max_changed_pages | 1000000 |
| innodb_max_dirty_pages_pct | 75 |
| innodb_max_purge_lag | 0 |
| innodb_merge_sort_block_size | 1048576 |
| innodb_mirrored_log_groups | 1 |
| innodb_old_blocks_pct | 37 |
| innodb_old_blocks_time | 0 |
| innodb_open_files | 300 |
| innodb_page_size | 16384 |
| innodb_print_all_deadlocks | OFF |
| innodb_purge_batch_size | 20 |
| innodb_purge_threads | 1 |
| innodb_random_read_ahead | OFF |
| innodb_read_ahead | linear |
| innodb_read_ahead_threshold | 56 |
| innodb_read_io_threads | 4 |
| innodb_recovery_stats | OFF |
| innodb_recovery_update_relay_log | OFF |
| innodb_replication_delay | 0 |
| innodb_rollback_on_timeout | OFF |
| innodb_rollback_segments | 128 |
| innodb_show_locks_held | 10 |
| innodb_show_verbose_locks | 0 |
| innodb_simulate_comp_failures | 0 |
| innodb_spin_wait_delay | 6 |
| innodb_stats_auto_update | 1 |
| innodb_stats_method | nulls_equal |
| innodb_stats_modified_counter | 0 |
| innodb_stats_on_metadata | ON |
| innodb_stats_sample_pages | 8 |
| innodb_stats_traditional | ON |
| innodb_stats_update_need_lock | 1 |
| innodb_strict_mode | OFF |
| innodb_support_xa | ON |
| innodb_sync_spin_loops | 30 |
| innodb_table_locks | ON |
| innodb_thread_concurrency | 0 |
| innodb_thread_concurrency_timer_based | OFF |
| innodb_thread_sleep_delay | 10000 |
| innodb_track_changed_pages | OFF |
| innodb_use_atomic_writes | OFF |
| innodb_use_fallocate | OFF |
| innodb_use_global_flush_log_at_trx_commit | ON |
| innodb_use_native_aio | ON |
| innodb_use_stacktrace | OFF |
| innodb_use_sys_malloc | ON |
| innodb_use_sys_stats_table | OFF |
| innodb_version | 5.5.59-MariaDB-38.11 |
| innodb_write_io_threads | 4 |
+-------------------------------------------+------------------------+
This is the one that has me concerned. I've not seen this one before. What database and version?
| innodb_file_format_max | Antelope |
It's almost like even though the file format is Barracuda, that you can only use Antelope. I would think you might have upgraded from an old version of MySQL, and never upgraded your database. Why don't you run:
mysql_upgrade
Just to be sure, then restart MySQL/MariaDB.
Doing some more reading, you might want to do the following for the database tables that do now have the ROW_FORMAT=Barracuda
ALTER TABLE table_name ROW_FORMAT=Dynamic;
Once you do that, I think things should proceed better. The 'max' setting has been removed as both MySQL and MariaDB have kind of hammered out how to handle getting rid of Antelope.
Try this:
SELECT TABLE_NAME
FROM information_schema.TABLES
WHERE ENGINE='InnoDB'
AND ROW_FORMAT!='Dynamic'
AND SCHEMA='cacti';
Alter each to ROW_FORMAT=Dynamic
Ok the upgrade_database.php fixe the problem, I'm now able to connect to my server. Then I did mysql_upgrade: all OK. Then restart Mariadb then I try your select, but it give me this error: ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '='cacti'' at line 5
By the way I have this version : 5.5.60
Try this query instead:
SELECT TABLE_NAME,ROW_FORMAT
FROM information_schema.TABLES
WHERE ENGINE='InnoDB' AND ROW_FORMAT!='Dynamic' AND TABLE_SCHEMA='cacti'
I have the same problem, but cannot change to Barracuda format:
SHOW VARIABLES LIKE 'innodb_file_format%';
| innodb_file_format | Antelope |
| innodb_file_format_check | ON |
| innodb_file_format_max | Antelope |
This is on stock CentosOS 7, which is widely used.
I have the same problem, but cannot change to Barracuda format:
...
The innodb_file_format_max parameter is a bit misleading; it turns out you can switch to Barracuda
This worked just fine in /etc/my.cnf innodb_file_format = barracuda innodb_file_per_table = true innodb_large_prefix = true
That parameter is merely the highest that you have actually used, not the highest that you can go to. If you never use a table of a higher format (eg barracuda) then it will always be antelope.
https://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_file_format_max
Try this query instead:
SELECT TABLE_NAME,ROW_FORMAT FROM information_schema.TABLES WHERE ENGINE='InnoDB' AND ROW_FORMAT!='Dynamic' AND TABLE_SCHEMA='cacti'
Ok Now I have 125 tables
If you do the following, all the InnoDB will be converted to Barracuda
cd /var/www/html/cacti/cli
php -q repair_database.php --dynamic
Ok done without error, and no more that are not dynamic
Cacti Server v1.2.8 - Installation Wizard Installing Cacti Server v1.2.8 Your Cacti Server is now installing
Refresh in ProgressLast updated: 05:48:45
41 % 2020/01/27 05:48:45 - INSTALL: always: About to import Package #1 'Cacti_Stats.xml.gz'. 2020/01/27 05:48:45 - INSTALL: always: Found 6 templates to install 2020/01/27 05:48:45 - INSTALL: always: No tables where found or selected for conversion 2020/01/27 05:48:45 - INSTALL: always: Starting INSTALL Process for v1.2.8 2020/01/27 05:48:36 - INSTALL: always: Setting PHP Option memory_limit = -1 2020/01/27 05:48:36 - INSTALL: always: Setting PHP Option max_execution_time = 0 2020/01/27 05:48:36 - INSTALL: Checking arguments 2020/01/27 05:48:35 - INSTALL: always: Spawning background process: C:/cacti/php/php.exe "C:/cacti/Apache24/htdocs/cacti/install/background.php" 1580132915.5599 2020/01/27 05:23:33 - INSTALL: always: About to import Package #1 'Cacti_Stats.xml.gz'. 2020/01/27 05:23:32 - INSTALL: always: Found 6 templates to install 2020/01/27 05:23:32 - INSTALL: always: No tables where found or selected for conversion 2020/01/27 05:23:31 - INSTALL: always: Starting INSTALL Process for v1.2.8 2020/01/27 05:23:24 - INSTALL: always: Setting PHP Option memory_limit = -1 2020/01/27 05:23:24 - INSTALL: always: Setting PHP Option max_execution_time = 0 2020/01/27 05:23:24 - INSTALL: Checking arguments 2020/01/27 05:23:23 - INSTALL: always: Spawning background process: C:/cacti/php/php.exe "C:/cacti/Apache24/htdocs/cacti/install/background.php" 1580131403.7383 2020/01/27 04:58:22 - INSTALL: always: About to import Package #1 'Cacti_Stats.xml.gz'. 2020/01/27 04:58:22 - INSTALL: always: Found 6 templates to install 2020/01/27 04:58:21 - INSTALL: always: No tables where found or selected for conversion 2020/01/27 04:58:21 - INSTALL: always: Starting INSTALL Process for v1.2.8 2020/01/27 04:58:14 - INSTALL: always: Setting PHP Option memory_limit = -1 2020/01/27 04:58:14 - INSTALL: always: Setting PHP Option max_execution_time = 0 2020/01/27 04:58:14 - INSTALL: Checking arguments 2020/01/27 04:58:13 - INSTALL: always: Spawning background process: C:/cacti/php/php.exe "C:/cacti/Apache24/htdocs/cacti/install/background.php" 1580129893.0832 2020/01/27 04:33:12 - INSTALL: always: About to import Package #1 'Cacti_Stats.xml.gz'. 2020/01/27 04:33:11 - INSTALL: always: Found 6 templates to install 2020/01/27 04:33:11 - INSTALL: always: No tables where found or selected for conversion 2020/01/27 04:33:11 - INSTALL: always: Starting INSTALL Process for v1.2.8 2020/01/27 04:33:05 - INSTALL: always: Setting PHP Option memory_limit = -1 2020/01/27 04:33:05 - INSTALL: always: Setting PHP Option max_execution_time = 0 2020/01/27 04:33:05 - INSTALL: Checking arguments 2020/01/27 04:33:04 - INSTALL: always: Spawning background process: C:/cacti/php/php.exe "C:/cacti/Apache24/htdocs/cacti/install/background.php" 1580128384.3651
Copyright (C) 2004-2020 The Cacti Group
I'm not sure what your issue is as you've simply pasted a log ... if you do have a genuine issue, please create a new issue tracker.
I try to upgrade my cacti tests server from 1.2.0 to 1.2.6, besside getting an error at this step: ALTER TABLE poller_output_realtime DROP PRIMARY KEY, ADD PRIMARY KEY (local_data_id, rrd_name, time, poller_id)
The process finish, but not I just have: Error
Your Cacti Server v1.2.6 has been installed/updated with errors Process Log
--- NO LOG FOUND ---
And now way to go further, spine is working in background, but I can't access the gui, and can't fixe this problem. It'^s looke like the problem start during the upgrade on step 1.2.0 to 1.2.1since there is a warning at this step. here is the install-general.log [2018-10-25 16:05:35] [ always ] Spawning background process: /bin/php /usr/share/cacti/install/background.php 1540 476335.0041 [2018-10-25 16:05:35] [ always ] Setting PHP Option max_execution_time = 0 [2018-10-25 16:05:35] [ always ] Setting PHP Option memory_limit = -1 [2018-10-25 16:05:52] [ always ] Starting INSTALL Process for v1.2.0 [2018-10-25 16:05:53] [ always ] Found 109 tables to convert [2018-10-25 16:05:54] [ always ] Converting Table #1 'aggregate_graphs' [2018-10-25 16:06:00] [ always ] Converting Table #2 'aggregate_graphs_graph_item' [2018-10-25 16:06:04] [ always ] Converting Table #3 'aggregate_graphs_items' [2018-10-25 16:06:08] [ always ] Converting Table #4 'aggregate_graph_templates' [2018-10-25 16:06:12] [ always ] Converting Table #5 'aggregate_graph_templates_graph' [2018-10-25 16:06:15] [ always ] Converting Table #6 'aggregate_graph_templates_item' [2018-10-25 16:06:21] [ always ] Converting Table #7 'automation_devices' [2018-10-25 16:06:27] [ always ] Converting Table #8 'automation_graph_rules' [2018-10-25 16:06:30] [ always ] Converting Table #9 'automation_graph_rule_items' [2018-10-25 16:06:33] [ always ] Converting Table #10 'automation_ips' [2018-10-25 16:06:36] [ always ] Converting Table #11 'automation_match_rule_items' [2018-10-25 16:06:40] [ always ] Converting Table #12 'automation_networks' [2018-10-25 16:06:45] [ always ] Converting Table #13 'automation_processes' [2018-10-25 16:06:49] [ always ] Converting Table #14 'automation_snmp' [2018-10-25 16:06:49] [ always ] Converting Table #15 'automation_snmp_items' [2018-10-25 16:06:49] [ always ] Converting Table #16 'automation_templates' [2018-10-25 16:06:49] [ always ] Converting Table #17 'automation_tree_rules' [2018-10-25 16:06:49] [ always ] Converting Table #18 'automation_tree_rule_items' [2018-10-25 16:06:49] [ always ] Converting Table #19 'cdef' [2018-10-25 16:06:50] [ always ] Converting Table #20 'cdef_items' [2018-10-25 16:06:50] [ always ] Converting Table #21 'colors' [2018-10-25 16:06:50] [ always ] Converting Table #22 'color_templates' [2018-10-25 16:06:50] [ always ] Converting Table #23 'color_template_items' [2018-10-25 16:06:50] [ always ] Converting Table #24 'data_debug' [2018-10-25 16:06:50] [ always ] Converting Table #25 'data_input' [2018-10-25 16:06:51] [ always ] Converting Table #26 'data_input_data' [2018-10-25 16:06:51] [ always ] Converting Table #27 'data_input_fields' [2018-10-25 16:06:51] [ always ] Converting Table #28 'data_local' [2018-10-25 16:06:51] [ always ] Converting Table #29 'data_source_profiles' [2018-10-25 16:06:51] [ always ] Converting Table #30 'data_source_profiles_cf' [2018-10-25 16:06:51] [ always ] Converting Table #31 'data_source_profiles_rra' [2018-10-25 16:06:51] [ always ] Converting Table #32 'data_source_purge_action' [2018-10-25 16:06:52] [ always ] Converting Table #33 'data_source_purge_temp' [2018-10-25 16:06:52] [ always ] Converting Table #34 'data_source_stats_daily' [2018-10-25 16:06:52] [ always ] Converting Table #35 'data_source_stats_hourly' [2018-10-25 16:06:52] [ always ] Converting Table #36 'data_source_stats_hourly_cache' [2018-10-25 16:06:52] [ always ] Converting Table #37 'data_source_stats_hourly_last' [2018-10-25 16:06:52] [ always ] Converting Table #38 'data_source_stats_monthly' [2018-10-25 16:06:53] [ always ] Converting Table #39 'data_source_stats_weekly' [2018-10-25 16:06:53] [ always ] Converting Table #40 'data_source_stats_yearly' [2018-10-25 16:06:53] [ always ] Converting Table #41 'data_template' [2018-10-25 16:06:53] [ always ] Converting Table #42 'data_template_data' [2018-10-25 16:06:53] [ always ] Converting Table #43 'data_template_rrd' [2018-10-25 16:06:53] [ always ] Converting Table #44 'external_links' [2018-10-25 16:06:54] [ always ] Converting Table #45 'graph_local' [2018-10-25 16:06:54] [ always ] Converting Table #46 'graph_templates' [2018-10-25 16:06:54] [ always ] Converting Table #47 'graph_templates_gprint' [2018-10-25 16:06:57] [ always ] Converting Table #48 'graph_templates_graph' [2018-10-25 16:07:03] [ always ] Converting Table #49 'graph_templates_item' [2018-10-25 16:07:09] [ always ] Converting Table #50 'graph_template_input' [2018-10-25 16:07:14] [ always ] Converting Table #51 'graph_template_input_defs' [2018-10-25 16:07:20] [ always ] Converting Table #52 'graph_tree' [2018-10-25 16:07:26] [ always ] Converting Table #53 'graph_tree_items' [2018-10-25 16:07:32] [ always ] Converting Table #54 'host' [2018-10-25 16:07:41] [ always ] Converting Table #55 'host_graph' [2018-10-25 16:07:47] [ always ] Converting Table #56 'host_snmp_cache' [2018-10-25 16:07:52] [ always ] Converting Table #57 'host_snmp_query' [2018-10-25 16:07:57] [ always ] Converting Table #58 'host_template' [2018-10-25 16:08:04] [ always ] Converting Table #59 'host_template_graph' [2018-10-25 16:08:13] [ always ] Converting Table #60 'host_template_snmp_query' [2018-10-25 16:08:20] [ always ] Converting Table #61 'plugin_config' [2018-10-25 16:08:29] [ always ] Converting Table #62 'plugin_db_changes' [2018-10-25 16:08:34] [ always ] Converting Table #63 'plugin_hooks' [2018-10-25 16:08:43] [ always ] Converting Table #64 'plugin_realms' [2018-10-25 16:08:48] [ always ] Converting Table #65 'poller' [2018-10-25 16:08:57] [ always ] Converting Table #66 'poller_command' [2018-10-25 16:09:02] [ always ] Converting Table #67 'poller_data_template_field_mappings' [2018-10-25 16:09:07] [ always ] Converting Table #68 'poller_item' [2018-10-25 16:09:13] [ always ] Converting Table #69 'poller_output' [2018-10-25 16:09:19] [ always ] Converting Table #70 'poller_output_boost' [2018-10-25 16:09:24] [ always ] Converting Table #71 'poller_output_boost_processes' [2018-10-25 16:09:30] [ always ] Converting Table #72 'poller_output_realtime' [2018-10-25 16:09:36] [ always ] Converting Table #73 'poller_reindex' [2018-10-25 16:09:43] [ always ] Converting Table #74 'poller_resource_cache' [2018-10-25 16:09:49] [ always ] Converting Table #75 'poller_time' [2018-10-25 16:09:56] [ always ] Converting Table #76 'reports' [2018-10-25 16:10:01] [ always ] Converting Table #77 'reports_items' [2018-10-25 16:10:06] [ always ] Converting Table #78 'sessions' [2018-10-25 16:10:09] [ always ] Converting Table #79 'settings' [2018-10-25 16:10:11] [ always ] Converting Table #80 'settings_tree' [2018-10-25 16:10:15] [ always ] Converting Table #81 'settings_user' [2018-10-25 16:10:20] [ always ] Converting Table #82 'settings_user_group' [2018-10-25 16:10:24] [ always ] Converting Table #83 'sites' [2018-10-25 16:10:25] [ always ] Converting Table #84 'snmpagent_cache' [2018-10-25 16:10:26] [ always ] Converting Table #85 'snmpagent_cache_notifications' [2018-10-25 16:10:27] [ always ] Converting Table #86 'snmpagent_cache_textual_conventions' [2018-10-25 16:10:27] [ always ] Converting Table #87 'snmpagent_managers' [2018-10-25 16:10:27] [ always ] Converting Table #88 'snmpagent_managers_notifications' [2018-10-25 16:10:27] [ always ] Converting Table #89 'snmpagent_mibs' [2018-10-25 16:10:27] [ always ] Converting Table #90 'snmpagent_notifications_log' [2018-10-25 16:10:27] [ always ] Converting Table #91 'snmp_query' [2018-10-25 16:10:28] [ always ] Converting Table #92 'snmp_query_graph' [2018-10-25 16:10:28] [ always ] Converting Table #93 'snmp_query_graph_rrd' [2018-10-25 16:10:28] [ always ] Converting Table #94 'snmp_query_graph_rrd_sv' [2018-10-25 16:10:28] [ always ] Converting Table #95 'snmp_query_graph_sv' [2018-10-25 16:10:28] [ always ] Converting Table #96 'user_auth' [2018-10-25 16:10:28] [ always ] Converting Table #97 'user_auth_cache' [2018-10-25 16:10:29] [ always ] Converting Table #98 'user_auth_group' [2018-10-25 16:10:29] [ always ] Converting Table #99 'user_auth_group_members' [2018-10-25 16:10:29] [ always ] Converting Table #100 'user_auth_group_perms' [2018-10-25 16:10:29] [ always ] Converting Table #101 'user_auth_group_realm' [2018-10-25 16:10:29] [ always ] Converting Table #102 'user_auth_perms' [2018-10-25 16:10:29] [ always ] Converting Table #103 'user_auth_realm' [2018-10-25 16:10:29] [ always ] Converting Table #104 'user_domains' [2018-10-25 16:10:30] [ always ] Converting Table #105 'user_domains_ldap' [2018-10-25 16:10:30] [ always ] Converting Table #106 'user_log' [2018-10-25 16:10:30] [ always ] Converting Table #107 'vdef' [2018-10-25 16:10:30] [ always ] Converting Table #108 'vdef_items' [2018-10-25 16:10:30] [ always ] Converting Table #109 'version' [2018-10-25 16:10:30] [ always ] Found 4 templates to install [2018-10-25 16:10:30] [ always ] Importing Package #1 'Cisco_Router.xml.gz' under Profile '1' [2018-10-25 16:11:14] [ always ] Importing Package #2 'Generic_SNMP_Device.xml.gz' under Profile '1' [2018-10-25 16:11:55] [ always ] Importing Package #3 'Local_Linux_Machine.xml.gz' under Profile '1' [2018-10-25 16:12:48] [ always ] Importing Package #4 'NetSNMP_Device.xml.gz' under Profile '1' [2018-10-25 16:13:22] [ always ] Mapping Automation Template for Device Template 'Net-SNMP Device' [2018-10-25 16:13:22] [ always ] Mapping Automation Template for Device Template 'Cisco Router' [2018-10-25 16:13:22] [ always ] Updating automation network (1), mode "on" => "", subnet "192.168.1.0/24" => 192.1 68.1.0/24" [2018-10-25 16:13:22] [ always ] Device Template for First Cacti Device is 3 [2018-10-25 16:13:23] [ always ] Creating Graphs for Default Device [2018-10-25 16:13:23] [ always ] Adding Device to Default Tree [2018-10-25 16:13:23] [ always ] Repopulating poller cache [2018-10-25 16:13:23] [ always ] Repopulating SNMP Agent cache [2018-10-25 16:13:23] [ always ] Generating RSA Key Pair [2018-10-25 16:13:23] [ always ] Finished INSTALL Process for v1.2.0 [2018-10-25 16:13:23] [ always ] Installation was started at 2018-10-25 14:05:35, completed at 2018-10-25 14:13:23 [2019-02-14 14:09:07] [ always ] Spawning background process: /bin/php /usr/share/cacti/install/background.php 1550 149746.8966 [2019-02-14 14:09:07] [ always ] Setting PHP Option max_execution_time = 0 [2019-02-14 14:09:07] [ always ] Setting PHP Option memory_limit = -1 [2019-02-14 14:09:22] [ always ] Starting UPGRADE Process for v1.2.1 [2019-02-14 14:09:23] [ always ] No tables where found or selected for conversion [2019-02-14 14:09:24] [ always ] Switched from to /tmp/cdubeDUmb [2019-02-14 14:09:24] [ always ] NOTE: Using temporary file for db cache: /tmp/cdubeDUmb [2019-02-14 14:09:24] [ always ] Upgrading from v1.2.0 (DB 1.2.1 (DB: 1.2.0)) to v1.2.1 [2019-02-14 14:09:27] [ always ] Finished UPGRADE Process for v1.2.1 [2019-02-14 14:09:27] [ always ] WARNING: One or more upgrades failed to install correctly [2019-02-14 14:09:28] [ always ] Installation was started at 2019-02-14 13:09:07, completed at 2019-02-14 13:09:28 [2019-09-17 09:47:03] [ always ] Spawning background process: /bin/php '/usr/share/cacti/install/background.php' 15 68706422.7711 [2019-09-17 09:47:03] [ always ] Setting PHP Option max_execution_time = 0 [2019-09-17 09:47:03] [ always ] Setting PHP Option memory_limit = -1 [2019-09-17 09:47:20] [ always ] Starting UPGRADE Process for v1.2.6 [2019-09-17 09:47:21] [ always ] No tables where found or selected for conversion [2019-09-17 09:47:22] [ always ] Switched from to /tmp/cdujDAgut [2019-09-17 09:47:22] [ always ] NOTE: Using temporary file for db cache: /tmp/cdujDAgut [2019-09-17 09:47:22] [ always ] Upgrading from v1.2.1 (DB 1.2.6 (DB: 1.2.1)) to v1.2.2 [2019-09-17 09:47:26] [ always ] Upgrading from v1.2.2 (DB 1.2.2) to v1.2.3 [2019-09-17 09:47:35] [ always ] Upgrading from v1.2.3 (DB 1.2.3) to v1.2.5 [2019-09-17 09:47:39] [ always ] Repairing Automation Rules [2019-09-17 09:47:44] [ always ] Finished UPGRADE Process for v1.2.6 [2019-09-17 09:47:53] [ always ] WARNING: One or more upgrades failed to install correctly [2019-09-17 09:48:00] [ always ] Installation was started at 2019-09-17 07:47:03, completed at 2019-09-17 07:47:59
If you can provide some information on the upgrade process to be able to troubleshoot when it's going wrong, or fix this issue of not having a usable GUI