Member since
04-19-2018
6
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
810 | 12-13-2018 02:09 PM |
04-02-2019
12:09 PM
You might also add the certificate alias to you uaa-changes.yml file: https://github.com/cloudfoundry/uaa/blob/releases/3.6.14/uaa/src/main/resources/uaa.yml#L91
... View more
04-01-2019
04:33 PM
Your other options would be to either use a trusted certificate (assuming currently you have a self-signed cert) or adding the certificate to JVM's trust store in the identity container as I stated in my other reply.
... View more
04-01-2019
02:19 PM
LDAPS connection will not validate the server certificate. If you feel uncomfortable to use this attribute, you can also import the certificate to JVM's trust store in the identity container: keytool -import -alias "$cert" -noprompt -file "$TRUSTED_CERT_DIR/$cert" -keystore /etc/ssl/certs/java/cacerts -storepass changeit;
... View more
04-01-2019
02:13 PM
Hi, Unfortunatley Cloudbreak does not support specifying volume types on OpenStack. It posts the request without a volume type, which Cinder translates to a default volume type. Mixing storage types is only possible if the VM type has ephemeral storage attached to it.
... View more
04-01-2019
01:52 PM
Hi, Please add the following property to your uaa-changes.yml file: ldap:
ssl:
skipverification: "true"
... View more
12-13-2018
02:09 PM
The Ambari version information seems to have changed. In Cloudbreak version 2.4.2 there is no way to update this data through API calls. You have to update it manually in the database instead:
Connect to the Cloudbreak database In the cbdb schema, in the cluster table, find the cluster, on which you experienced the problem and note its id
Update the Ambari version information eg.: UPDATE clustercomponent SET attributes = '{"predefined":false,"version":"2.6.2.0-155","baseUrl":"http://public-repo-1.hortonworks.com/ambari/centos6/2.x/updates/2.6.2.0","gpgKeyUrl":"http://public-repo-1.hortonworks.com/ambari/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins"}' WHERE componenttype = ‘AMBARI_REPO_DETAILS’ AND cluster_id = <id_of_the_cluster>
Verify if the update was successful The above attribute value is just an example. Please replace it with the one in you database and edit the version field in the json to include the build number: "2.6.2.0-155"
... View more