Please suggest me for the below. 1.     &nbs

Please suggest me for the below.

1.          Done all pre-checks (java, env constants, license, etc)
2.          Installed appian (all engines working fine.)
3.          Configured Jboss (Done all settings that connects between appian and jboss)
4.          Done with post-install configurations
5.          When started with jboss and appian, (boss started with our errors)

6.          When tried to access appian from explorer, some error was displayed with “runtime_ear” saying that it was not found.

7.          So started with building with ant script, configuration script given in 7.5 add-ons.

8.          Ant built was failed saying, it was searching jboss bin in configuration script bin. Not able to sort out that home setting in menu.xml

9.          When tried to access appian from explorer, displaying exception “shipb: exception”
...

OriginalPostID-113916

OriginalPostID-113916

  Discussion posts and replies are publicly visible

Parents
  • When an error occurs you have to review the server.log from top to bottom until you find the first error. You can then look at the stack trace and review each of the "Caused by" clauses to find out the root cause.

    In this case the relevant one is:

    Caused by: java.lang.SecurityException: PBOX000016: Access denied: authentication failed

    which indicates that your password in the security domain of your data source is incorrect in standalone.xml. You can test this by using a plain text password just for testing in appian-ds.xml. Instead of using

    <security>
    <security-domain>ds-name-security</security-domain>
    </security>

    test with

    <security>
    <user-name>****</user-name>
    <password>*****</password>
    </security>

    and restart JBoss
Reply
  • When an error occurs you have to review the server.log from top to bottom until you find the first error. You can then look at the stack trace and review each of the "Caused by" clauses to find out the root cause.

    In this case the relevant one is:

    Caused by: java.lang.SecurityException: PBOX000016: Access denied: authentication failed

    which indicates that your password in the security domain of your data source is incorrect in standalone.xml. You can test this by using a plain text password just for testing in appian-ds.xml. Instead of using

    <security>
    <security-domain>ds-name-security</security-domain>
    </security>

    test with

    <security>
    <user-name>****</user-name>
    <password>*****</password>
    </security>

    and restart JBoss
Children
No Data