mirror of https://github.com/apache/cloudstack.git
Generate keystore using RSA rather than DSA
Also fix a typo.
This commit is contained in:
parent
d03a396569
commit
611a1564cc
|
|
@ -447,6 +447,7 @@ public class ConfigurationServerImpl implements ConfigurationServer {
|
|||
script.add("-keystore", keystorePath);
|
||||
script.add("-storepass", "vmops.com");
|
||||
script.add("-keypass", "vmops.com");
|
||||
script.add("-keyalg", "RSA");
|
||||
script.add("-validity", "3650");
|
||||
script.add("-dname", dname);
|
||||
String result = script.execute();
|
||||
|
|
|
|||
|
|
@ -502,7 +502,7 @@ public class Link {
|
|||
}
|
||||
// We need more packets to complete this operation
|
||||
if (s_logger.isTraceEnabled()) {
|
||||
s_logger.trace("SSL: Buffer overflowed, getting more packets");
|
||||
s_logger.trace("SSL: Buffer underflowed, getting more packets");
|
||||
}
|
||||
tmp_pkgBuf.clear();
|
||||
count = ch.read(tmp_pkgBuf);
|
||||
|
|
|
|||
Loading…
Reference in New Issue