...
The conf/application.conf
file contained in this utility has to be supplied with the correct values for the source/target databases and whether the source server is LDAP enabled or not. It should also specify the Syndeia 3.3 server IP address and the port and the sign-in username and password for signing in to Syndeia Cloud 3.3. The username/password for Syndeia Cloud 3.3 should be for an admin account (preferably super.user
) that has ALL the permissions, including user management. The relevant sections are:
Code Block |
---|
targetsource { // The Cassandra server used with Syndeia Cloud 3.2 db { host = "localhost", username = "cassandra-username", password = "cassandra-pwd", port = 9042 keyspace = "syndeia_cloud_devops" " } // If the Syndeia Cloud 3.2 server is LDAP enabled server { isLdapEnabled = false } } sourcetarget { // The Cassandra server used with Syndeia Cloud 3.3 db { host = "localhost", username = "cassandra-username", password = "cassandra-pwd", port = 9042 keyspace = "syndeia_cloud_devops" } } // serverSyndeia {Cloud 3.3 admin isLdapEnabled = false } } user credentials sign-in { username = "super.user" password = "super.user.pwd" } // Syndeia Cloud 3.3 server host and port server { ip-address = "localhost" port = 9000 } api { default-wait-duration = 2 } |
...