Error creating bean with name 'primaryDataSourceConfig' . What can I do?

I encounter problems in starting an Appian server 17.2. This what I have in output (also the full log > output.log):

The processes are started by appian linux user (start-suite, start search server and jboss/standalone.sh) which is the owner of appian, jboss and repo folders

This is my custom.proprieties with the modified fields:

This is my appian-myslq-ds:

And in standalone.xml I only put the mysql connector:

                    <driver name="com.mysql.jdbc" module="com.mysql.jdbc">
                        <driver-class>com.mysql.jdbc.Driver</driver-class>
                        <xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
                    </driver>

and DS domain:

                <security-domain name="ds-name-security-primary" cache-type="default">
                    <authentication>
                        <login-module code="org.picketbox.datasource.security.SecureIdentityLoginModule" flag="required">
                            <module-option name="username" value="myuser"/>
                            <module-option name="password" value="my pass-encrypted"/>
                        </login-module>
                    </authentication>
                </security-domain>

I'm stuck and any suggestion will be highly appreciated. Thanks in advance

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer
    The log messages indicate that the configuration that you've shown screenshots of is not the configuration that Appian is using. Do you need to deploy the changes?

    From the configurations you provided screenshots, you need to remove the "java:" from the jndi-name within the appian-mysql-ds.xml. However given the output.log, I don't think this is your only problem.
Reply
  • 0
    Certified Associate Developer
    The log messages indicate that the configuration that you've shown screenshots of is not the configuration that Appian is using. Do you need to deploy the changes?

    From the configurations you provided screenshots, you need to remove the "java:" from the jndi-name within the appian-mysql-ds.xml. However given the output.log, I don't think this is your only problem.
Children