guides:reference:database:database_sync_repair
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
guides:reference:database:database_sync_repair [2020/01/22 07:14] – [ck_dbsync.pl command] bdorlandt | guides:reference:database:database_sync_repair [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== NetYCE Database Re-synchronization procedure ===== | ||
+ | |||
+ | |||
+ | Refer to the two NetYCE database servers as PRI and SEC although this assignment has nothing to do with the actual organization and hierarchy. Think of it as the local and remote NetYCE database server respectively. | ||
+ | |||
+ | Only execute this procedure if the db-sync issues could not be resolved using ‘skip errors’ | ||
+ | and a database re-merge is required. I.e, the normal restore master archive on both servers | ||
+ | is not possible since there is no clear master | ||
+ | |||
+ | |||
+ | ==== Step 1 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | This procedure will use cli commands to be issued by an application manager familiar with he NetYCE | ||
+ | setup and UNIX commands | ||
+ | |||
+ | ALL tasks have to be executed as ‘yce’ user | ||
+ | |||
+ | Do not permit user activity or API activity on any NetYCE system while executing this procedure | ||
+ | </ | ||
+ | |||
+ | ==== Step 2 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Set the ignore flag for the skulker and kill it on both servers | ||
+ | < | ||
+ | $ go stop skulker | ||
+ | </ | ||
+ | |||
+ | Check both servers are running on their preferred database. | ||
+ | < | ||
+ | $ go jobs | ||
+ | $ hostname -i | ||
+ | $ cat DSN.dat | ||
+ | </ | ||
+ | If ip-addresses does not match, edit DSN.dat and update the address | ||
+ | |||
+ | This step ensures no database failovers will take place during execution | ||
+ | </ | ||
+ | |||
+ | ==== Step 3 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Ensure we have sufficient workspace in /var/tmp and / | ||
+ | The free disk space required is somewhat more than the largest *.MYD file in the databases | ||
+ | |||
+ | Check both servers: | ||
+ | < | ||
+ | $ df -h / | ||
+ | $ df -h /var/tmp | ||
+ | </ | ||
+ | |||
+ | If disk space is low, see what files could be removed from the archives directory | ||
+ | < | ||
+ | $ go backup | ||
+ | $ ls -l | ||
+ | </ | ||
+ | |||
+ | Or empty debugging logs | ||
+ | < | ||
+ | $ go clr dev | ||
+ | $ go logs | ||
+ | $ cp /dev/null *debug* | ||
+ | </ | ||
+ | |||
+ | Or excessive database (bin)log files | ||
+ | < | ||
+ | $ go mysql | ||
+ | $ ls -l | ||
+ | </ | ||
+ | |||
+ | If very large files like ‘mysql-bin.000nnn’ or ‘< | ||
+ | are found, those will be removed in step 4, other large log files can safely be deleted. | ||
+ | |||
+ | Should the mysql-bin and relay-bin files not prove to be removable, stop the database, | ||
+ | delete ALL these files and restart it. | ||
+ | </ | ||
+ | |||
+ | ==== Step 4 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | On both servers ensure no table errors exist and the table fragmentation is reduced to within 5%: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -c | ||
+ | </ | ||
+ | |||
+ | > This command MUST be executed locally on both NetYCE database servers since the ' | ||
+ | |||
+ | <WRAP indent> | ||
+ | Because the ' | ||
+ | < | ||
+ | $ log_maint.pl | ||
+ | </ | ||
+ | |||
+ | Check for errors | ||
+ | If in doubt, repeat | ||
+ | |||
+ | As with the ck_dbsync ' | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | ==== Step 5 ==== | ||
+ | |||
+ | > <color orange> Steps 5 through 8 use the ' | ||
+ | |||
+ | <WRAP indent> | ||
+ | Reset the dbsync for both replication directions: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -F | ||
+ | $ ck_dbsync.pl -x -F -r | ||
+ | </ | ||
+ | |||
+ | These commands will first repair the master-master setup between the PRI and SEC databases if it is needed. | ||
+ | |||
+ | Then the master and slave replication backlogs will be reset at both ends. This will also get rid the | ||
+ | possibly by now very large binary log files in the var/ | ||
+ | |||
+ | Verify no large mysql-bin or relay-bin files remain after this step. | ||
+ | |||
+ | The synchronization may seem to be functional again at this stage, but since data-inconsistencies | ||
+ | are not yet removed, the out-of-sync errors will soon reappear. | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Step 6a ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Steps 6a and 6b perform the actual database table comparison and merging. | ||
+ | This could be a very slow process since all column values of all rows in all the tables | ||
+ | need to be compared and were needed inserted or updated. | ||
+ | |||
+ | Therefore the merging can be executed in two phases. The 6a) step is faster and focuses on | ||
+ | table mismatches where rows are missing. It ensures that the the rows (using the same keys) of a | ||
+ | table exist in both databases. It does not verify that all rows have the same content, only | ||
+ | the added missing rows will have that guarantee. | ||
+ | |||
+ | The second phase of this step, 6b), is significantly slower and will perform the full table field | ||
+ | verification AND insert any missing rows as well. In situations where the time required for a full | ||
+ | table verification is not (yet) available, the operator could choose to execute step 6a) and skip 6b). | ||
+ | When such time restraints are no factor, 6a) is optional and could be skipped. | ||
+ | |||
+ | > Skip to step 6b) if the fast-but-incomplete key-only compare is not desired | ||
+ | |||
+ | The ck_dbsync.pl has many options. Below is fastest method to merge only those tables | ||
+ | with obvious row count and size differences. In this case we demonstrate the manual table-by-table | ||
+ | approach where the operator selects the tables with an obvious row count difference. | ||
+ | This involves using the '' | ||
+ | rows checked. | ||
+ | |||
+ | We need to compare each table twice. Once to compare the PRI database with the SEC database, and | ||
+ | once to compare the SEC database to the PRI. To accomplish this reversal the -r option is used. | ||
+ | |||
+ | Execute on PRI only (the SEC gives the same results) | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -s | ||
+ | </ | ||
+ | |||
+ | Write down the table names listing issues in records or size like the Task_log table in the example below: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -s | ||
+ | 2017-12-19 13:40:13 === Started === | ||
+ | 2017-12-19 13:40:13 Defaulting to -s (summary option) | ||
+ | 2017-12-19 13:40:13 Using local PRI and remote SEC setup: | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13:40:13 Connected to databases | ||
+ | 2017-12-19 13:40:13 Table: YCE.Action_log | ||
+ | 2017-12-19 13:40:13 Table: YCE.auth_permissions | ||
+ | 2017-12-19 13:40:13 Table: YCE.City_codes | ||
+ | 2017-12-19 13:40:13 Table: YCE.Client | ||
+ | 2017-12-19 13:40:13 Table: YCE.Client_types | ||
+ | 2017-12-19 13:40:13 Table: YCE.Config_log | ||
+ | ::: | ||
+ | 2017-12-19 13:40:13 Table: YCE.Task_log | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13: | ||
+ | ::: | ||
+ | 2017-12-19 13:40:13 Table: NMS.Service_status | ||
+ | 2017-12-19 13:40:13 Table: NCCM.Nccm_node_data | ||
+ | 2017-12-19 13:40:13 Table: NCCM.Nccm_parameters | ||
+ | 2017-12-19 13:40:13 Table: NCCM.Nccm_selection | ||
+ | 2017-12-19 13:40:13 Replication status | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13: | ||
+ | 2017-12-19 13:40:13 === Completed === | ||
+ | </ | ||
+ | |||
+ | For each of these tables execute these two commands: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -t < | ||
+ | $ ck_dbsync.pl -x -t < | ||
+ | </ | ||
+ | |||
+ | When done, check the summary again: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -s | ||
+ | </ | ||
+ | |||
+ | |||
+ | Alternatively, | ||
+ | execute these two commands once. The number of rows may be equal, but both tables may have (an equal number) of missing rows. The commands below will verify all tables have no missing rows. | ||
+ | |||
+ | < | ||
+ | $ ck_dbsync.pl -x -k | ||
+ | $ ck_dbsync.pl -x -k -r | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Step 6b ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Once the row count of all tables are equal on the PRI and the SEC, a reasonable level of synchronization | ||
+ | is achieved. However there could be many differences in the values of each row. To resolve these conflicts | ||
+ | all tables need to be compared row-by-row, field-by-field. | ||
+ | |||
+ | This step (6b) is intended to do just that, but requires some time to execute. On a large database hours could be required. Therefore it is suggested to execute this step only if such time is available. | ||
+ | |||
+ | The level of synchronization achieved so far is likely sufficient to prevent synchronization failures due | ||
+ | to primary-key violations, but an equal row-count does not imply that both tables have entries for the same keys. | ||
+ | To ensure proper synchronization, | ||
+ | same key could have fields with different values. | ||
+ | |||
+ | The -T option is used to decide which record is the ‘latest’ should it exist on both servers but with | ||
+ | field differences. In those cases the -T uses the record timestamps to determine, otherwise the PRI | ||
+ | is assumed to be the valid record. | ||
+ | |||
+ | So in cases where the SEC is expected to have most of the valid records, it advisable to use the command | ||
+ | with the reversed roles (’-T -r’) options before the regular (‘-T’) command. | ||
+ | |||
+ | |||
+ | Before initiating, ensure that the databases will not be halted for backup. The default backup times are 23:00 | ||
+ | and 23:20 and are initiated by crontab (/ | ||
+ | |||
+ | < | ||
+ | $ ck_dbsync.pl -x -u -T | ||
+ | $ ck_dbsync.pl -x -u -T -r | ||
+ | </ | ||
+ | |||
+ | Whether this step is skipped or executed later, the remaining steps MUST be completed in either case. | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Step 7 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Reset some important ID's like Job-id and Task-id: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -L | ||
+ | $ ck_dbsync.pl -x -L -r | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Step 8 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Reset the dbsync, again on PRI only: | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -F | ||
+ | $ ck_dbsync.pl -x -F -r | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Step 9 ==== | ||
+ | |||
+ | <WRAP indent> | ||
+ | Check the NetYCE front-end Admin - System’ tool also reports a healthy synchronization status on both servers | ||
+ | Test that several times because other tables might need merging too, or the initial updates cause a conflict. | ||
+ | |||
+ | In that case try the ‘Skip error’ button (only a few times should suffice). If that is not the case, as shown by the backlog counters in the message, then reset the sync again as in step 8. | ||
+ | |||
+ | By this time it should be safe to allow user and API operations to resume. | ||
+ | |||
+ | Also the skulkers can be restarted on each server: | ||
+ | < | ||
+ | go clr skulker | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== ck_dbsync.pl command ===== | ||
+ | |||
+ | The latest revision of ck_dbsync has additional options to simplify, speedup and group actions together. It also has an option to check, defragment and repair corrupt tables. | ||
+ | |||
+ | The usage message: | ||
+ | < | ||
+ | Compare data between synced YCE databases | ||
+ | usage: / | ||
+ | options -x -s | ||
+ | -x -c | ||
+ | -x -k [-r] [-t table_name] | ||
+ | -x -u [-r] [-T] [-t table_name] | ||
+ | -x -L [-r] | ||
+ | -x -F [-r] | ||
+ | -x -R | ||
+ | -x -Q | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | -t table table-name only. Use ' | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | of the various options for both databases (-F, -uT, -L, -F). | ||
+ | | ||
+ | of the various options for both databases (-F, -k, -L, -F). | ||
+ | | ||
+ | |||
+ | The ' | ||
+ | </ | ||
+ | |||
+ | The new options are ' | ||
+ | |||
+ | The output generated while executing is also logged in the file ''/ | ||
+ | |||
+ | |||
+ | ==== Skipping in-sync tables ==== | ||
+ | |||
+ | A significant speedup in the overall process was achieved by determining if tables are already in-sync or not. Tables already in-sync are skipped in the comparison. The sync status is determined by calculating checksums over the data and is thereby not influenced by fragmentation or row-orders. | ||
+ | |||
+ | The output for the summary takes a little longer though. Sample output of the summary (-s) option: | ||
+ | |||
+ | < | ||
+ | $ ck_dbsync.pl -x -s | ||
+ | 2018-01-04 10:53:05 === Started === | ||
+ | 2018-01-04 10:53:05 Using local PRI and remote SEC setup: | ||
+ | 2018-01-04 10: | ||
+ | 2018-01-04 10: | ||
+ | 2018-01-04 10:53:05 Connected to databases | ||
+ | 2018-01-04 10:53:05 Table summary | ||
+ | 2018-01-04 10:53:06 Table: YCE.Action_log | ||
+ | 2018-01-04 10:53:06 Table: YCE.auth_permissions | ||
+ | 2018-01-04 10:53:06 Table: YCE.City_codes | ||
+ | 2018-01-04 10:53:06 Table: YCE.Client | ||
+ | 2018-01-04 10:53:06 Table: YCE.Client_types | ||
+ | 2018-01-04 10:53:06 Table: YCE.Config_log | ||
+ | 2018-01-04 10:53:06 Table: YCE.Domain | ||
+ | 2018-01-04 10:53:06 Table: YCE.Graph | ||
+ | 2018-01-04 10:53:06 Table: YCE.Images | ||
+ | 2018-01-04 10:53:06 Table: YCE.IpBKrouter | ||
+ | 2018-01-04 10:53:06 Table: YCE.IpCNrouterIN | ||
+ | 2018-01-04 10:53:06 Table: YCE.Ipsec_gre | ||
+ | 2018-01-04 10:53:06 Table: YCE.Ipsec_map | ||
+ | 2018-01-04 10:53:06 Table: YCE.IpSupernet | ||
+ | ::: | ||
+ | 2018-01-04 10:53:13 Table: YCE.Task_log | ||
+ | ::: | ||
+ | 2018-01-04 10:53:14 Table: NCCM.Nccm_parameters | ||
+ | 2018-01-04 10:53:14 Table: NCCM.Nccm_selection | ||
+ | 2018-01-04 10:53:14 Replication status | ||
+ | 2018-01-04 10: | ||
+ | 2018-01-04 10: | ||
+ | 2018-01-04 10: | ||
+ | 2018-01-04 10: | ||
+ | 2018-01-04 10:53:14 === Completed === | ||
+ | </ | ||
+ | |||
+ | ==== Table check, defragment and repair === | ||
+ | |||
+ | The ' | ||
+ | |||
+ | The output of the ' | ||
+ | |||
+ | < | ||
+ | $ ck_dbsync.pl -x -c | ||
+ | 2018-01-04 11:25:09 === Started === | ||
+ | 2018-01-04 11:25:09 Using local PRI and remote SEC setup: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:25:09 Connected to databases | ||
+ | 2018-01-04 11:25:09 LOCAL Database table check (defragment, | ||
+ | 2018-01-04 11:25:09 Table check | ||
+ | 2018-01-04 11:25:09 Flushing database tables to disk | ||
+ | 2018-01-04 11:25:09 Checking fragmentation database ' | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | ::: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:25:12 Checking fragmentation database ' | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:25:12 Checking fragmentation database ' | ||
+ | 2018-01-04 11:25:12 Database table checking complete | ||
+ | 2018-01-04 11:25:12 === Completed === | ||
+ | </ | ||
+ | |||
+ | When including the ' | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -c -r | ||
+ | 2018-01-04 11:26:46 === Started === | ||
+ | 2018-01-04 11:26:46 Using reversed remote PRI and local SEC setup: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:26:46 Connected to databases | ||
+ | 2018-01-04 11:26:46 LOCAL Database table check (defragment, | ||
+ | 2018-01-04 11:26:46 Table check | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:26:46 === Completed === | ||
+ | </ | ||
+ | |||
+ | ==== All-in-one options ==== | ||
+ | |||
+ | The ' | ||
+ | |||
+ | < | ||
+ | -x -s | ||
+ | -x -F | ||
+ | -x -F -r | ||
+ | -x -u -T | ||
+ | -x -u -T -r | ||
+ | -x -L | ||
+ | -x -L -r | ||
+ | -x -F | ||
+ | -x -F -r | ||
+ | -x -s | ||
+ | </ | ||
+ | |||
+ | > <color orange> | ||
+ | |||
+ | Likewise, the ' | ||
+ | |||
+ | Using the ' | ||
+ | < | ||
+ | -x -s | ||
+ | -x -F | ||
+ | -x -F -r | ||
+ | -x -k | ||
+ | -x -k -r | ||
+ | -x -L | ||
+ | -x -L -r | ||
+ | -x -F | ||
+ | -x -F -r | ||
+ | -x -s | ||
+ | </ | ||
+ | |||
+ | A sample session summary of the ' | ||
+ | < | ||
+ | $ ck_dbsync.pl -x -R | ||
+ | 2018-01-04 11:40:21 === Started === | ||
+ | 2018-01-04 11:40:21 Using local PRI and remote SEC setup: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:40:21 Connected to databases | ||
+ | 2018-01-04 11:40:21 Doing full repair using a sequence of options | ||
+ | 2018-01-04 11:40:21 Table status | ||
+ | 2018-01-04 11:40:22 Table: YCE.Action_log | ||
+ | 2018-01-04 11:40:22 Table: YCE.auth_permissions | ||
+ | 2018-01-04 11:40:22 Table: YCE.City_codes | ||
+ | 2018-01-04 11:40:22 Table: YCE.Client | ||
+ | :: | ||
+ | 2018-01-04 11:40:29 Table: YCE.Task_log | ||
+ | :: | ||
+ | 2018-01-04 11:40:29 Table: NCCM.Nccm_selection | ||
+ | 2018-01-04 11:40:29 Reset dbsync PRI <- SEC | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:40:34 Reset dbsync SEC <- PRI | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:40:38 Sync table records PRI -> SEC | ||
+ | 2018-01-04 11:40:38 Table: YCE.Action_log | ||
+ | :: | ||
+ | 2018-01-04 11:40:45 Table: YCE.Task_log | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | :: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:42:06 Table: YCE.Template | ||
+ | :: | ||
+ | 2018-01-04 11:42:07 Table: NCCM.Nccm_selection | ||
+ | 2018-01-04 11:42:07 Sync table records SEC -> PRI | ||
+ | 2018-01-04 11:42:08 Table: YCE.Action_log | ||
+ | :: | ||
+ | 2018-01-04 11:42:14 Table: YCE.Task_log | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | :: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | :: | ||
+ | 2018-01-04 11:43:32 Table: NCCM.Nccm_selection | ||
+ | 2018-01-04 11:43:32 Reset PRI Job-, Task- and other ID's | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:43:32 Reset SEC Job-, Task- and other ID's | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:43:32 Reset dbsync PRI <- SEC | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:43:36 Reset dbsync SEC <- PRI | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:43:40 Table status | ||
+ | 2018-01-04 11:43:41 Table: YCE.Action_log | ||
+ | :: | ||
+ | 2018-01-04 11:43:47 Table: YCE.Task_log | ||
+ | :: | ||
+ | 2018-01-04 11:43:48 Table: NCCM.Nccm_selection | ||
+ | 2018-01-04 11:43:48 Sync status | ||
+ | 2018-01-04 11:43:48 Replication status | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11: | ||
+ | 2018-01-04 11:43:48 === Completed === | ||
+ | </ | ||