mirror of https://github.com/apache/cloudstack.git
In 4.3, SSL was turned off by default.
However, for SSVM, the value from configuration server overrides the default in Config.java. Work around is to change in global properties. Local testing, checking a fresh install has the above property false by default. Signed-off-by: Nitin Mehta<nitin.mehta@citrix.com>
This commit is contained in:
parent
744e2a54e8
commit
05802004e2
|
|
@ -212,8 +212,8 @@ public class ConfigurationServerImpl extends ManagerBase implements Configuratio
|
|||
_configDao.update(Config.UseSecondaryStorageVm.key(), Config.UseSecondaryStorageVm.getCategory(), "true");
|
||||
s_logger.debug("ConfigurationServer made secondary storage vm required.");
|
||||
|
||||
_configDao.update(Config.SecStorageEncryptCopy.key(), Config.SecStorageEncryptCopy.getCategory(), "true");
|
||||
s_logger.debug("ConfigurationServer made secondary storage copy encrypted.");
|
||||
_configDao.update(Config.SecStorageEncryptCopy.key(), Config.SecStorageEncryptCopy.getCategory(), "false");
|
||||
s_logger.debug("ConfigurationServer made secondary storage copy encrypt set to false.");
|
||||
|
||||
_configDao.update("secstorage.secure.copy.cert", "realhostip");
|
||||
s_logger.debug("ConfigurationServer made secondary storage copy use realhostip.");
|
||||
|
|
|
|||
Loading…
Reference in New Issue