SqlPLus  SP2-0544 invalid command: SPOOL

Hi,
one of those frustrating setup problems. I'm trying to create a SPOOL file on NT, with SqlPlus 8.1.5 (or 8.1.7). I had it working, but then I had to reinstall the N8 client. Now, SqlPlus rejects any attempt to use the SPOOL command. I checked the DLLs in memory while SqlPlus was running, but they are all the correct version. Also checked the registry, environment variables, Path, etc.
Is this some common bug ? In fact, I'm getting the same error number if I type the EDIT command. The difference is that SPOOL has worked last week, while I could never make EDIT work (first attempt December 1992). In the past, I had SPOOL working on-again off-again on Solaris.
Any hints ? Redirecting the output at operating-system level is not an option, because I need to Accept a few variables from the user.
Andrew

Hi Tapash
This is fixed, thanks for the response. My script had some invalid white space characters which were not visible in Unix, this was causing some errors.
satya
Message was edited by:
Satya Vanukuri

Similar Messages

  • Strange SP2-0042: unknown command in sqlplus

    Hello everyone,i was attemptting to execute a sql statement from an external file. But i got "SP2-0042: unknown command "ï»? - rest of line ignored.". It's works with ANSI but can not based on UTF8 encoding.My file only contains as following :
    spo db_changesfff.log
    SPO OFF
    Anyone has ideas?thanks in advance!!

    We had this problem as well and we noticed that the script file that contained the UTF-8 had two FF FE magic numbers at the beginning of the file. View your file in HEX mode of your text editor and verify that a single FF FE is at the beginning of the file. We created our UTF-8 file using Notepad. This seems to put two FF FE's in the file header. When we removed one set of FF FE, everything worked just fine.

  • Sql select with concate of columns SP2-0734: unknown command beginning

    I am running a ksh script that does some dumpster diving and pull records out.
    It is basically reading a file does a select and at the end, you will see $i.
    AND ORD_ORDER.ADV_ORDER_TEXT_FIELD_568='$';
    I can run the script manually. (without the while loop)
    But, when I run it thru the script I get a whack of errors.
    SP2-0734: unknown command beginning "FROM ADVXR..." - rest of line ignored.
    SP2-0734: unknown command beginning "ADVXRT_HDB..." - rest of line ignored.
    SP2-0734: unknown command beginning "ADVXRT_HDB..." - rest of line ignored.
    SP2-0734: unknown command beginning "ADVXRT_HDB..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    What I need it to do is pull the selected records out and place in a file.
    Script
    cat $TICKETS_MISMATCH |while read i
    do
    $SQLPLUS -silent "advxrt_hdb/$LOGONID@hdb" <<EOF >$TICKETS_MISMATCH_FULL
    set feedback off
    set verify off
    set echo off
    set heading off
    set pagesize 7010
    SELECT ORD_ORDER.ADV_ORDER_TEXT_FIELD_568
    || ','
    || ORD_ORDER.ORDER_NUM
    || ','
    || ORD_ORDER.ADV_ORDER_SUMMARY_FIELD_012
    || ','
    || LAB_USER.NAME
    || ','
    || LAB_USER.LOGON_ID
    || ','
    || LAB_USER.ADV_EXTENDED_USER_FIELD_001
    || ','
    || TO_CHAR(MOBILECOMP1_SR.ADV_COMPLETION_TIME_FIELD_001, 'HH24:MI:SS')
    || ','
    || TO_CHAR(MOBILECOMP1_SR.ADV_COMPLETION_DATE_FIELD_001, 'DD-MON-YYYY')
    || ','
    || MOBILECOMP1_SR.ADV_COMPLETION_NOTES_FIELD_001
    || ','
    || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_003
    || ','
    || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_013
    || ','
    || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_014
    || ','
    || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_023
    || ','
    || ORD_JOB_CODE.NAME
    || ','
    || ROUND(ASN_ASSIGNMENT.TOTAL_TIME_EN_ROUTE / 60,0)
    || ','
    || ROUND(ASN_ASSIGNMENT.TOTAL_TIME_ON_SITE / 60,0)
    FROM ADVXRT_HDB.LAB_USER,
    ADVXRT_HDB.SR_REPORT,
    ADVXRT_HDB.ASN_ASSIGNMENT,
    ADVXRT_HDB.ORD_ORDER,
    ADVXRT_HDB.MOBILECOMP1_SR,
    ADVXRT_HDB.ORD_JOB_CODE
    WHERE (ASN_ASSIGNMENT.ASSIGNMENT_ID = SR_REPORT.ASSIGNMENT)
    AND (ASN_ASSIGNMENT.FOR_ORDER = ORD_ORDER.ORDER_ID)
    AND (MOBILECOMP1_SR.MOBILE_COMP1_ID = SR_REPORT.RECORD_NUMBER)
    AND (ORD_ORDER.JOB_CODE = ORD_JOB_CODE.JOB_CODE_ID)
    AND (SR_REPORT.USER_ID = LAB_USER.USER_ID(+))
    AND ORD_ORDER.COMPLETED BETWEEN ((TO_DATE('${date_entered} 00:00:00','YYYY-MM-DD HH24:MI:SS')) - ((SELECT DECODE
    (UTC_OFFSET, NULL, 0, UTC_OFFSET) FROM TZ_UTC_TO_LOCAL TZ WHERE (TO_DATE
    ('${date_entered} 00:00:00','YYYY-MM-DD HH24:MI:SS') BETWEEN TZ.STARTS_UTC AND
    TZ.ENDS_UTC)AND TZ.TIME_AUTHORITY = 1000264000000000000000000013))/(24*60*60))
    AND
    ((TO_DATE('${date_entered} 11:59:59','YYYY-MM-DD HH24:MI:SS')) - ((SELECT DECODE
    (UTC_OFFSET, NULL, 0, UTC_OFFSET) FROM TZ_UTC_TO_LOCAL TZ WHERE (TO_DATE
    ('${date_entered} 11:59:59','YYYY-MM-DD HH24:MI:SS') BETWEEN TZ.STARTS_UTC AND
    TZ.ENDS_UTC)AND TZ.TIME_AUTHORITY = 1000264000000000000000000013))/(24*60*60))
    AND ORD_ORDER.ADV_ORDER_TEXT_FIELD_568='${i}';
    exit;
    EOF
    done

    SQL> DEFINE sqlplusrelease
    DEFINE SQLPLUSRELEASE = "1002000200" (CHAR)
    cat $TICKETS_MISMATCH |while read i
    do
    $SQLPLUS -silent "advxrt_hdb/$LOGONID@hdb" <<EOF >>$TICKETS_MISMATCH_FULL
    set feedback off
    set verify off
    set echo off
    set heading off
    set pagesize 7010
    SET SQLBLANKLINES ON
    SELECT  ORD_ORDER.ADV_ORDER_TEXT_FIELD_568
        || ','
        || ORD_ORDER.ORDER_NUM
        || ','
        || ORD_ORDER.ADV_ORDER_SUMMARY_FIELD_012
        || ','
        || LAB_USER.NAME
        || ','
        || LAB_USER.LOGON_ID
        || ','
        || LAB_USER.ADV_EXTENDED_USER_FIELD_001
        || ','
        || TO_CHAR(MOBILECOMP1_SR.ADV_COMPLETION_TIME_FIELD_001, 'HH24:MI:SS')
        || ','
        || TO_CHAR(MOBILECOMP1_SR.ADV_COMPLETION_DATE_FIELD_001, 'DD-MON-YYYY')
        || ','
        || MOBILECOMP1_SR.ADV_COMPLETION_NOTES_FIELD_001
        || ','
        || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_003
        || ','
        || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_013
        || ','
        || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_014
        || ','
        || MOBILECOMP1_SR.ADV_COMPLETION_TEXT_FIELD_023
        || ','
        || ORD_JOB_CODE.NAME
        || ','
        || ROUND(ASN_ASSIGNMENT.TOTAL_TIME_EN_ROUTE / 60,0)
        || ','
        || ROUND(ASN_ASSIGNMENT.TOTAL_TIME_ON_SITE / 60,0)
    FROM ADVXRT_HDB.LAB_USER,
           ADVXRT_HDB.SR_REPORT,
           ADVXRT_HDB.ASN_ASSIGNMENT,
           ADVXRT_HDB.ORD_ORDER,
           ADVXRT_HDB.MOBILECOMP1_SR,
           ADVXRT_HDB.ORD_JOB_CODE
    WHERE     (ASN_ASSIGNMENT.ASSIGNMENT_ID = SR_REPORT.ASSIGNMENT)
           AND (ASN_ASSIGNMENT.FOR_ORDER = ORD_ORDER.ORDER_ID)
           AND (MOBILECOMP1_SR.MOBILE_COMP1_ID = SR_REPORT.RECORD_NUMBER)
           AND (ORD_ORDER.JOB_CODE = ORD_JOB_CODE.JOB_CODE_ID)
           AND (SR_REPORT.USER_ID = LAB_USER.USER_ID(+))
           AND ORD_ORDER.COMPLETED BETWEEN ((TO_DATE('${date_entered} 00:00:00','YYYY-MM-DD HH24:MI:SS')) - ((SELECT DECODE
                (UTC_OFFSET, NULL, 0, UTC_OFFSET) FROM TZ_UTC_TO_LOCAL TZ WHERE (TO_DATE
                ('${date_entered} 00:00:00','YYYY-MM-DD HH24:MI:SS') BETWEEN TZ.STARTS_UTC AND
                TZ.ENDS_UTC)AND TZ.TIME_AUTHORITY = 1000264000000000000000000013))/(24*60*60))
           AND
                ((TO_DATE('${date_entered} 11:59:59','YYYY-MM-DD HH24:MI:SS')) - ((SELECT DECODE
                (UTC_OFFSET, NULL, 0, UTC_OFFSET) FROM TZ_UTC_TO_LOCAL TZ WHERE (TO_DATE
                ('${date_entered} 11:59:59','YYYY-MM-DD HH24:MI:SS') BETWEEN TZ.STARTS_UTC AND
                TZ.ENDS_UTC)AND TZ.TIME_AUTHORITY = 1000264000000000000000000013))/(24*60*60))
            AND ORD_ORDER.ADV_ORDER_TEXT_FIELD_568='${i}';
    exit
    EOF
    done

  • SP2-0306:Invalid option.Usage:CONN[ECT][logon][AS{SYSDBA|SYSOPER}]where log

    Hi
    Anyone can help me with the following error we are getting
    SP2-0306:Invalid option.Usage:CONN[ECT][logon][AS{SYSDBA|SYSOPER}]where<logon>::=<username>[<password>][@<connect_identifier>]|/
    We just upgrated to R12 and the shell script that we run is returning the above error message.
    Below is the script
    # Determine employee ID of send-to
    echo "Determine employee ID of send-to"
    if [ $8 ]
    then
    EID=`echo "${CONNECT} \n
    set heading off \n
    set feedback off \n
    select employee_id from FND_USER where upper(user_name) = '${USRNAME}';" |
    ${ORACLE_HOME}/bin/sqlplus -s`
    echo "CONNECT values " ${CONNECT}
    echo "Connected to DB " $EID
    echo "employee fax "
    # employee fax
    EFAX=${11}`echo "${CONNECT} \n
    set heading off \n
    set feedback off \n
    select fax_number from POS_PO_EMPLOYEE_DETAILS_V where employee_id=${EID};" |
    ${ORACLE_HOME}/bin/sqlplus -s |
    sed s/-//g`%[email protected]
    echo "Employee Fax "$EFAX
    EFAX2=`echo $EFAX|sed s/' '/'%91'/`
    EFAX=$EFAX2
    # employee email
    EEMAIL=`echo "${CONNECT} \n
    set heading off \n
    set feedback off \n
    select email_address from HR_EMPLOYEES_ALL_V where employee_id=${EID};" |
    ${ORACLE_HOME}/bin/sqlplus -s`
    EEMAIL2=`echo $EEMAIL|sed s/' '//g`
    EEMAIL=$EEMAIL2
    echo "Employee Email "$EEMAIL
    fi
    thank you

    I ended up rewriting the shell script and it works fine now
    if [ $8 ]
    then
    EID=`${ORACLE_HOME}/bin/sqlplus -s ${CONNECT} <<EOF
    set heading off;
    set feedback off;
    select employee_id from FND_USER where upper(user_name) = '${USRNAME}';
    exit;
    EOF`
    echo "Connected to DB " $EID
    echo "employee fax "
    # employee fax
    EFAX=${11}`${ORACLE_HOME}/bin/sqlplus -s ${CONNECT} <<EOF
    set heading off;
    set feedback off;
    select replace(fax_number,'-') from POS_PO_EMPLOYEE_DETAILS_V where employee_id=${EID};
    exit;
    EOF`%[email protected]
    echo "Employee Fax "$EFAX
    EFAX2=`echo $EFAX|sed s/' '/'%91'/`
    EFAX=$EFAX2
    # employee email
    EEMAIL=`${ORACLE_HOME}/bin/sqlplus -s ${CONNECT} <<EOF
    set heading off;
    set feedback off;
    select email_address from HR_EMPLOYEES_ALL_V where employee_id=${EID};
    exit;
    EOF`
    EEMAIL2=`echo $EEMAIL|sed s/' '//g`
    EEMAIL=$EEMAIL2
    echo "Employee Email "$EEMAIL
    fi
    thank you for your help!
    Edited by: user618218 on May 20, 2013 2:39 PM

  • SQLPlus SP2-0317 on SET DEFINE in 10.2.0.2 W2K

    Hi,
    I'm getting a frequent SP2-0317 error in SQLPlus running in a command window under W2K against Oracle 10.2.
    Here's an example showing it working intermittently:
    C:\Duncan\install_new>sqlplus /nolog
    SQL*Plus: Release 10.2.0.2.0 - Production on Thu Jun 21 07:38:13 2007
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    SQL> set define on
    SQL> set define &
    SP2-0317: expected symbol name is missing
    SQL> set define ~
    SQL> set define &
    SQL>
    There are no hidden characters, extra spaces. Just set define ignoring the character I want to use. It consistently fails within scripts.
    Has anyone else seen this and know a work around ? I've also tried set define '~' but that has the same issues.
    TIA, Duncan
    Message was edited by:
    Duncan Gardner

    set define x specifies the prefix-character for substitution variables. The default is the ampersand (&).
    It´s not necessary to do both:
    set define on
    set define &
    Use only set define &

  • SQLPLUS - redirection of output/command line

    I would like to send SQL-commands to Oracle 8.0.5 from a BATCH
    command line interface.
    I have by trial and error found the following to work in SQLPlus
    for Oracle 8.0.5
    SQLPLUS <userid>/<password>@<MACHINE> @<input.sql>
    However, this just starts a new window with the SQL-commands
    given in input.sql. I would like the output to be redirected to
    an output file - preferably without having to write long code in
    the input.sql file.
    Any hints or surgestions ?
    Yours
    Torben
    null

    Torben Lund (guest) wrote:
    : I would like to send SQL-commands to Oracle 8.0.5 from a BATCH
    : command line interface.
    : I have by trial and error found the following to work in
    SQLPlus
    : for Oracle 8.0.5
    : SQLPLUS <userid>/<password>@<MACHINE> @<input.sql>
    : However, this just starts a new window with the SQL-commands
    : given in input.sql. I would like the output to be redirected
    to
    : an output file - preferably without having to write long code
    in
    : the input.sql file.
    : Any hints or surgestions ?
    : Yours
    : Torben
    Hi Torben , if I understood your question you can put in your
    INPUT.SQL file de instruction SPOOL C:\TEMP\OUTPUTLIE.TXT
    before you execute the sql statements . At the end of results
    you have put the command SPOOL OFF . If after this you would
    like execute the file like a batch command file use the
    @c:\temp\outputfile.txt
    Ok ?
    Regards
    Lourival
    null

  • "SP2-0734: unknown command..." error while importing a dump file

    hello,
    i want to import a dump file into my database named orcl, and i come accross the same error after executing the import command. my import command is:
    SQL> imp mvdemo/mvdemo file=mvdemo.dmp full=y ignore=y
    i use oracle 10g enterprise edition.
    i created the user mvdemo/mvdemo.
    the error i see in my screen is:
    SP2-0734: unknown command beginning "imp mvde..." - rest of line ignored.
    for a long period of time, i havent used oracle dbms. before, i remember that i used enterprise manager in import/export processes. however, i am not able to find the enterprise manager in 10g options now. do i have to install the enterprise manager seperately in oracle 10g enterprise edition? may this problem be relational with this matter?
    if someone could answer, i would be greatful.
    best regards

    Import is run from the command prompt, not the SQL prompt.

  • Error in installing mobiliser platform 5.1 SP03:Invalid command 'SSLCertificateKeyFile', perhaps misspelled ...

    Hi Experts,
    I am trying to install Mobiliser platform 5.1 SP03  on redhat Linux system of AWS cloud.
    I have installed httpd 2.2 server on mob-web-1 server and it is running fine.
    But when I include Include /opt/sybase/httpd/conf/mobiliser_httpd_ssl.conf  directory  in
    the Apache HTTPD server configuration which  is the destination configuration located in:
    /etc/httpd/conf/httpd.conf (on mob-web-1) , I am getting following error:
    Starting httpd: Syntax error on line 8 of /opt/sybase/httpd/conf/mobiliser_httpd_ssl.conf:
    Invalid command 'SSLCertificateKeyFile', perhaps misspelled or defined by a module not included
    in the server configuration
                                                               [FAILED]
    So please help me to fix this error.
    Thanks and Regards,
    Sagar M Patil.

    Hi Marcus,
    I have followed the steps that you have mentioned.Now httpd server is running.
    But when I execute  /opt/sybase/money/bin/startup.sh script  in mob-aps-1 , I am getting the errors in /opt/sybase/money/logs/mobiliser.log file. Is it because of  not including
    Include /opt/sybase/httpd/conf/mobiliser_httpd_ssl.conf directive in /etc/httpd/conf/httpd.conf file ?
    Please look into moboliser.log file contents.:
    2014-06-30 04:04:15,378 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED SslContextFactory@64f06ab7(/opt/sybase/money/conf/keys/server/keystore,/opt/sybase/money/conf/keys/server/keystore): java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,394 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED [email protected]:8443: java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,402 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED SslContextFactory@64f06ab7(/opt/sybase/money/conf/keys/server/keystore,/opt/sybase/money/conf/keys/server/keystore): java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,409 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED [email protected]:8444: java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,418 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED SslContextFactory@64f06ab7(/opt/sybase/money/conf/keys/server/keystore,/opt/sybase/money/conf/keys/server/keystore): java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,419 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED [email protected]:8445: java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,433 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED SslContextFactory@64f06ab7(/opt/sybase/money/conf/keys/server/keystore,/opt/sybase/money/conf/keys/server/keystore): java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,434 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED [email protected]:8446: java.io.IOException: Keystore was tampered with, or password was incorrect
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:15,441 [Pax Web Runtime worker] WARN  org.eclipse.jetty.util.component.AbstractLifeCycle - FAILED [email protected]284: MultiException[java.io.IOException: Keystore was tampered with, or password was incorrect, java.io.IOException: Keystore was tampered with, or password was incorrect, java.io.IOException: Keystore was tampered with, or password was incorrect, java.io.IOException: Keystore was tampered with, or password was incorrect]
    MultiException[java.io.IOException: Keystore was tampered with, or password was incorrect, java.io.IOException: Keystore was tampered with, or password was incorrect, java.io.IOException: Keystore was tampered with, or password was incorrect, java.io.IOException: Keystore was tampered with, or password was incorrect]
      at org.eclipse.jetty.server.Server.doStart(Server.java:272)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    java.io.IOException: Keystore was tampered with, or password was incorrect
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:771)
      at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)
      at java.security.KeyStore.load(KeyStore.java:1185)
      at org.eclipse.jetty.util.security.CertificateUtils.getKeyStore(CertificateUtils.java:55)
      at org.eclipse.jetty.util.ssl.SslContextFactory.getKeyStore(SslContextFactory.java:1053)
      at org.eclipse.jetty.util.ssl.SslContextFactory.loadTrustStore(SslContextFactory.java:1027)
      at org.eclipse.jetty.util.ssl.SslContextFactory.doStart(SslContextFactory.java:265)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.ssl.SslSelectChannelConnector.doStart(SslSelectChannelConnector.java:612)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.eclipse.jetty.server.Server.doStart(Server.java:290)
      at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
      at org.ops4j.pax.web.service.jetty.internal.JettyServerImpl.start(JettyServerImpl.java:113)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Stopped.start(ServerControllerImpl.java:378)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.start(ServerControllerImpl.java:70)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl$Unconfigured.configure(ServerControllerImpl.java:635)
      at org.ops4j.pax.web.service.jetty.internal.ServerControllerImpl.configure(ServerControllerImpl.java:87)
      at org.ops4j.pax.web.service.internal.Activator.updateController(Activator.java:245)
      at org.ops4j.pax.web.service.internal.Activator$DynamicsServiceTrackerCustomizer$1.run(Activator.java:376)
      at org.ops4j.pax.web.service.internal.Executor$Future.run(Executor.java:45)
      at org.ops4j.pax.web.service.internal.Executor$Worker.run(Executor.java:122)
    Caused by: java.security.UnrecoverableKeyException: Password verification failed
      at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:769)
      ... 20 more
    2014-06-30 04:04:16,815 [main] WARN  org.activiti.osgi.Activator - FileInstall package is not available, disabling fileinstall support
    2014-06-30 04:04:18,879 [main] WARN  org.eclipse.gemini.blueprint.extender.internal.support.NamespacePlugins - Bundle AIMS Mobiliser :: Framework :: Service Configuration (com.sybase365.mobiliser.framework.service.config) cannot see class [org.springframework.beans.factory.xml.NamespaceHandlerResolver]; ignoring it as a namespace resolver
    2014-06-30 04:04:21,057 [main] WARN  org.eclipse.gemini.blueprint.extender.internal.support.NamespacePlugins - Bundle AIMS Mobiliser :: Framework :: Service Configuration (com.sybase365.mobiliser.framework.service.config) cannot see class [org.springframework.beans.factory.xml.NamespaceHandlerResolver]; ignoring it as a namespace resolver
    2014-06-30 04:05:04,662 [aims-init-18] WARN  com.sybase365.mobiliser.framework.vscan.scanner.impl.VScanImpl - Cannot initialize Virus Scan Service. The following service exception occured: Expecting an absolute path of the library: libsavisap.so
    2014-06-30 04:05:39,138 [prefs-2] WARN  net.sf.ehcache.hibernate.strategy.EhcacheAccessStrategyFactoryImpl - read-only cache configured for mutable entity [com.sybase365.mobiliser.money.ams.dao.model.CurrencyExchange]
    2014-06-30 04:05:42,186 [prefs-2] WARN  net.sf.ehcache.hibernate.strategy.EhcacheAccessStrategyFactoryImpl - read-only cache configured for mutable entity [com.sybase365.mobiliser.money.ams.dao.model.ClearingConfig]
    Regards,
    Sagar M Patil

  • Error message: "invalid command line argument" while lodaing itunes

    I'm trying to load Itunes onto a computer that already has a version of itunes on it. I get a message that says "error: -1639 invalid command line argument" Does anyone know what this means? Does this mean I can't load itunes onto a computer that already has itunes on it?
    Also, I was able to load itunes on my laptop, but My ipod Icon is not appearing anywhere, not in itunes, not in explorer, not in my computer. I am, however, able to transfer music automatically when I plug the Ipod into the laptop. I have created several playlists and they have transferred over to the ipod as playlists. Any ideas why I can transfer despite not being recognized anywhere on the computer?
    Last thing is, I have plugged the Ipod into three different computers with itunes on them, and the ipod does not show up in the source list.
    I'm somewhat perplexed by all of this. Any help or insight would be greatly appreciated
    Dell   Windows XP Pro  

    hiya!
    "error: -1639 invalid command line argument"
    hmmm. folks typically only get that error if they are installing from removable media (such as a CD), although i have seen it happen if someone tries to install into the "recovery partition" of certain makes of PC.
    if you download and save an installer to your C drive and run the install from there, do you still get the 1639?
    iTunes 6.0.4.2 Installer
    love, b

  • ERROR: -1639 INVALID COMMAND LINE ARGUMENT

    Trying to install software for Shuffle that Santa brought and get this error messsage...
    "Error: -1639 invalid command line argument. Consult the windows Installer SDK for detailed command line help."
    Install stops at this point.
    SOMEONE HELP... My kid is chomping at the bit !
    Thanks.

    Ok I'll do some more searching but I found something in the community forums.
    APPSearch can not return this data into a property, so instead, for some unspeakable reason, returns a value of Null, follwed by another Null. This means that the property is created, and populated with two null characters. Bad news if the property also happens to be a PUBLIC property. All public properties are passed as part of the command line sent in a stream to the background installer process by the Execute Action. Since this stream now contains a double null value in a property, the stream is prematurely terminated. This creates an invalid command line, and thus the 1639 error.
    This user solved it by using the MSi Cleanup installer util.
    EDIT: A little more info...
    This problem is almost impossible to detect through the MSI log files since our friends at Microsoft chose to limit the length of any line in the log. It is impossible to get a dump of the full command line that generates this error.
    EDIT2:Note that error 1639 only ocurrs when the install package is run from removable media. When the package is run from local storage, the behavior is far more obtuse. The background install process, failing to receive a complete command line, is forced to run as if there had been no UI session, which in turn causes the APPSearch action to run again as if the install was running in silent mode. This causes re-evaluation of all properties a second time, destroying the feature selections made in the UI session, and also forcing the install to run under user credentials instead of elevated, even though AdminUser, ALLUSERS and Privleged properties are set. This is a very serious error that causes total failure of the installation.

  • CLI147 Invalid command Errors in asadmin

    Installed Sun Java� System Application Server Platform Edition 8.1 2005Q1 on fresh installation of Solaris 10 Sparc.
    When trying to run certain commands in asadmin I get the following error:
    CLI147 Invalid command, create-instance
    I get the same error for list-instances, delete-instance. I have not check all of the asadmin commands, but those are the major ones that I am unable to use. Any ideas on what could be causing this? I have actually uninstalled and tried installing again twice.
    Thanks in advance.

    I think you are trying to use a feature that is available only in the Standard Edition/Enterprise Edition (SE/EE) of the application server and hence these errors.
    You will not get these errors on SE/EE.
    Cheers,
    Vasanth

  • Essbase Add-In : "Invalid Command 11607 Received in Request Manager"

    Hi All,
    I am getting the following Error when I am using Member Selection Property in Essbase Add - In
    "Invalid Command 11607 Received in Request Manager"
    Environment :
    Essbase 6.5
    MS Excel 2000
    Please Help...Thanks in Advance
    Regards,
    Sonu

    We have Hyperion Planning version 3.0.0 installed in the system.
    Also while connecting from Excel with the server we get a warning message stating " The version of Essbase(65000) is older than the version of the Essbase API(65200) you are using".
    If we proceed further, we are able to connect to the application and retrieve the dimensions and the members. But the "Member Selection" and the "Find" property doesn't work throwing the error message "Invalid Command 11607 Received in Request Manager".
    Please help...
    Raja

  • A1 BAD Invalid command 'AUTHENTICATE'

    Hello,
    I am trying to run folderlist.java demo from JavaMail 1.4.1 and I am facing this issue. See the debug log:
    A0 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 AUTH=PLAIN QUOTA ID
    A0 OK CAPABILITY completed
    IMAP DEBUG: AUTH: PLAIN
    DEBUG: protocolConnect login, host=imap.centrum.cz, user=username, password=<non-null>
    A1 AUTHENTICATE PLAIN
    A1 BAD Invalid command 'AUTHENTICATE'
    Exception in thread "main" javax.mail.MessagingException: A1 BAD Invalid command 'AUTHENTICATE' (com.sun.mail.iap.BadCommandException: A1 BAD Invalid command 'AUTHENTICATE')
         at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:609)
         at javax.mail.Service.connect(Service.java:248)
    Any idea what is the issue here?
    Thank you, Skoky.

    Your server is broken. It advertises the AUTH=PLAIN capability but isn't
    accepting the corresponding AUTHENTICATE command. Report the
    problem to the server vendor.
    See the JavaMail properties in the javadocs for the property to disable
    auth plain support in JavaMail as a way to work around this server bug.

  • Error(1013011) Invalid Command 10099 Received in Request Manager

    This error message appears both in the server and the app log files. It 'freezes' Essbase ( we can no longer communicate with Essbase and any other cube ). The only thing to do is to 'kill' the ESSSVR process (Unix). We are running the 6.1 patch3a version but I found in the archives such a problem with the 5.02.Hyperion suggested to set the following parameters in the cfg file but it didn't work...NETDELAY 500NETRETRYCOUNT 1000__SM__BUFFERED_IO TRUE__SM__WAITED_IO TRUEPlease somebody help !

    We have Hyperion Planning version 3.0.0 installed in the system.
    Also while connecting from Excel with the server we get a warning message stating " The version of Essbase(65000) is older than the version of the Essbase API(65200) you are using".
    If we proceed further, we are able to connect to the application and retrieve the dimensions and the members. But the "Member Selection" and the "Find" property doesn't work throwing the error message "Invalid Command 11607 Received in Request Manager".
    Please help...
    Raja

  • SP2-0226: Invalid line number

    How can I look up error codes? Also, does anybody know what this means? It doesn't seem to affect the way the procedure runs.

    How can I look up error codes?http://www.oracle.com/pls/db92/db92.error_search?remark=homepage&prefill=ORA-
    As you can see below, there is no line number 10 in the current SQL buffer to goto.
    hence the error.
    SQL> select
      2  *
      3  from
      4  scott.emp
      5  where
      6  rownum < 10 ;
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981       5000                    10
    9 rows selected.
    SQL> l10
    SP2-0226: Invalid line number
    SQL>Message was edited by:
    Kamal Kishore

Maybe you are looking for

  • Can't see anything in ESB Control

    Hi! I can't see any systems in ESB Control (no DefaultSystem, and no BPELSystem, Fulfillment or OrderBooking after succesfully deploying soademo_101310_prod). (There are some JavaScript errors too: URLObject is not defined) (WinXP, SOA Suite 10.1.3.1

  • Overprint issue with white type.

    We have been creating Digital PDF successfully for over 10 years. This is a problem that comes along once in a great blue moon. Please read complete text before forming an opinion or answering the questions. The focus of these questions are on Digita

  • Flash player is and isn't working!!

    Ok here are the specifics Running Windows 7 x64 IE 9 with 10.3.181.26 (unsure whether its 32/64) & Firefow 5 with 10.3.181.26  (unsure whether its 32/64). Ok A while back I got the usual popup to say that there was an update and proceeded to use the

  • Where is my beloved stamp tool from PS CS 3 in PS CS 5?

    I want a simple Soft Round Brush with the Pressure of my Wacom stylus adjusting the Opacity (and not the size of the brush), where when I hold down 'control' (Mac OsX 10.6.6) I get the dialogue box where I can adjust Size and Hardness - that's all I

  • Video Streaming: Error Code: ve_fms_connect_failed

    I'm trying to stream a video online (The Walking Dead from the AMC website, if that's of any use), but every time I attempt to watch it, I receive the following message: "This video stream is currently unavailable. Please try again later. Error Code: