Apache CloudStack for Arch Linux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.7 KiB

  1. #!/bin/sh
  2. # Temporarily permit non-SSL connections to port 8250
  3. # Fixes cloudstack-management error 'SSL error caught during wrap data: Empty server certificate chain, for local address ...'
  4. # Use only while setting up CloudStack. Provide proper values for production environment.
  5. mysql -u cloud -pcloud -e \
  6. "
  7. USE cloud;
  8. UPDATE configuration SET value='false' WHERE name='ca.plugin.root.auth.strictness';
  9. "
  10. # CloudStack Management server configuration for SSL authentication.
  11. # Recommended to be configured via web UI although direct SQL updates are technically possible.
  12. # ca.framework.provider.plugin The configured CA provider plugin
  13. # ca.framework.cert.keysize The key size used for certificate generation
  14. # ca.framework.cert.signature.algorithm The certificate signature algorithm
  15. # ca.framework.cert.validity.period Certificate validity in days
  16. # ca.framework.cert.automatic.renewal Whether to auto-renew expiring certificate on hosts
  17. # ca.framework.background.task.delay The delay between each CA background task round in seconds
  18. # ca.framework.cert.expiry.alert.period The number of days to check and alert expiring certificates
  19. # ca.plugin.root.private.key (hidden/encrypted in database) Auto-generated CA private key
  20. # ca.plugin.root.public.key (hidden/encrypted in database) CA public key
  21. # ca.plugin.root.ca.certificate (hidden/encrypted in database) CA certificate
  22. # ca.plugin.root.issuer.dn The CA issue distinguished name used by the root CA provider
  23. # ca.plugin.root.auth.strictness Setting to enforce two-way SSL authentication and trust validation
  24. # ca.plugin.root.allow.expired.cert Setting to allow clients with expired certificates
  25. # Ref: http://docs.cloudstack.apache.org/en/4.11.2.0/adminguide/hosts.html