correajl commented on issue #8637: URL: https://github.com/apache/cloudstack/issues/8637#issuecomment-1971791481
@BryanMLima here is the log of the day of upgrade to 4.19. ``` 2024-02-09 14:49:17,012 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Decrypting global configuration values from the following tables: account_details and domain_details. 2024-02-09 14:49:17,017 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Successfully decrypted configurations from account_details table. 2024-02-09 14:49:17,025 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [1] to value [/etc/cloudstack/management/cloud.jks]. 2024-02-09 14:49:17,029 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [3] to value [_SOMELDAPINFO_]. 2024-02-09 14:49:17,033 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [4] to value [groupOfNames]. 2024-02-09 14:49:17,037 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [5] to value [member]. 2024-02-09 14:49:17,041 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [6] to value [/etc/cloudstack/management/cloud.jks]. 2024-02-09 14:49:17,045 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [8] to value [_SOMELDAPINFO_]. 2024-02-09 14:49:17,049 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [9] to value [groupOfNames]. 2024-02-09 14:49:17,052 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [10] to value [member]. 2024-02-09 14:49:17,056 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [11] to value [/etc/cloudstack/management/cloud.jks]. 2024-02-09 14:49:17,059 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [13] to value [_SOMELDAPINFO_]. 2024-02-09 14:49:17,062 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [14] to value [groupOfNames]. 2024-02-09 14:49:17,066 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [15] to value [member]. 2024-02-09 14:49:17,070 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [21] to value [/etc/cloudstack/management/cloud.jks]. 2024-02-09 14:49:17,073 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [23] to value [_SOMELDAPINFO_]. 2024-02-09 14:49:17,076 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [24] to value [groupOfNames]. 2024-02-09 14:49:17,078 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [25] to value [member]. 2024-02-09 14:49:17,081 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [26] to value [/etc/cloudstack/management/cloud.jks]. 2024-02-09 14:49:17,083 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [28] to value [_SOMELDAPINFO_]. 2024-02-09 14:49:17,086 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [29] to value [groupOfNames]. 2024-02-09 14:49:17,088 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Updating config with ID [30] to value [member]. 2024-02-09 14:49:17,089 INFO [c.c.u.d.Upgrade41810to41900] (main:null) (logid:) Successfully decrypted configurations from domain_details table. ``` As mentioned, in my case I had to update lines with _ldap.truststore.password_ in domain_details table. Currently they are in plain text and working. A thing I noted here, maybe can help. When merging configuration files, in db.properties the new configuration has a new parameter. Before upgrade: ``` # Encryption Settings db.cloud.encryption.type=file db.cloud.encrypt.secret=ENC(_A_VALUE_) ``` After the upgrade I can see **_db.cloud.encryptor.version=_**. Here it was left empty. ```# Encryption Settings db.cloud.encryption.type=file db.cloud.encrypt.secret=ENC(_A_VALUE_) db.cloud.encryptor.version= ``` I don't know if it is related. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
