...
Special Steps for Upgrading a Cell Environment to 1.0.14.0
Before upgrading the cell environment, in the cell manager, execute the following command:
Code Block curl -X PUT "montier-es-http:9200/_cluster/settings" -H 'Content-Type: application/json' -d'{"persistent":{"cluster.max_shards_per_node":"20000"}}' Expected response: {"acknowledged":true,"persistent":{"cluster":{"max_shards_per_node":"20000"}},"transient":{}}
After upgrading the cell manager, copy
/app/keys
directory (including any sub-directories) from the cell manager to all cell members (this will share the encryption key and generated certificates between the cell components).
Additional Setup of Configuration Database
After successfully running the upgrade process, run the following commands in the server's shellcommand line (only on All-in-One or Cell Manager instances):
Code Block | ||
---|---|---|
| ||
ij ALTER TABLE SyncTaskExecution ALTER COLUMN lastDomainConfigChangeTimestamp SET DATA TYPE VARCHAR(200); ALTER TABLE SyncLastDomainChange ALTER COLUMN changeStringFromWdp SET DATA TYPE VARCHAR(200); |
...