#Installation and Administration >> Trying to install Appian 7.

#Installation and Administration

>> Trying to install Appian 7.10 using configure script

>> Application Server not able to connect to the database with the below error , verified appian-ds.xml and custom.properties file related to datasource.

03:52:39,433 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/suite]] (ServerService Thread Pool -- 79) JBWEB000287: Exception sending context initialized event to listener instance of class com.appiancorp.common.config.ConfigurationLoader: com.appiancorp.common.config.FatalConfigurationException: com.appiancorp.suiteapi.common.exceptions.AppianException: An unexpected error occurred while trying to initialize and validate the primary data source. (APNX-1-4179-004)

04:05:15,438 ERROR [org.jboss.as.connector.subsystems.datasources.AbstractDataSourceService$AS7DataSourceDeployer] (MSC service thread 1-1) Exception during createSubject()PBOX000016: Access denied: authen...

server.7z

OriginalPostID-163291

OriginalPostID-163291

  Discussion posts and replies are publicly visible

Parents
  • You need to update the modules
    <security-domain name="ds-name-security-primary" cache-type="default">
    and
    <security-domain name="ds-name-security-business" cache-type="default">
    with the correct username and encoded password.

    E.g. if you have in your appian-ds.xml:

    <security>
    <security-domain>XXX</security-domain>
    </security>

    then you should have a module in your standalone.xml:

    <security-domain name="XXX" cache-type="default">
    <authentication>
    <login-module code="org.picketbox.datasource.security.SecureIdentityLoginModule" flag="required">
    <module-option name="username" value="<USERNAME FOR THIS DATASOURCE>" />
    <module-option name="<ENCODED PASSWORD>" value="MyEncodedPassword" />
    </login-module>
    </authentication>
    </security-domain>

    Read the docs for more details: forum.appian.com/.../Configuring_Relational_Databases.html
Reply
  • You need to update the modules
    <security-domain name="ds-name-security-primary" cache-type="default">
    and
    <security-domain name="ds-name-security-business" cache-type="default">
    with the correct username and encoded password.

    E.g. if you have in your appian-ds.xml:

    <security>
    <security-domain>XXX</security-domain>
    </security>

    then you should have a module in your standalone.xml:

    <security-domain name="XXX" cache-type="default">
    <authentication>
    <login-module code="org.picketbox.datasource.security.SecureIdentityLoginModule" flag="required">
    <module-option name="username" value="<USERNAME FOR THIS DATASOURCE>" />
    <module-option name="<ENCODED PASSWORD>" value="MyEncodedPassword" />
    </login-module>
    </authentication>
    </security-domain>

    Read the docs for more details: forum.appian.com/.../Configuring_Relational_Databases.html
Children
No Data