Notes password change fails

we getting issues in the folowing scenarios for Lotus domino Change Password
- When we change password, the UserID password is not changed.
- We cannot login to client account (access with the password that store in idFile). the idFile password is not change.
- We cannot login to web account (access with internet password). the password is not change.
- Error message will be
An ID File was not supplied when attempting to change an ids password.
Appriciate your help

okay,... I just saw another website which shows I should put in the 'replace <oldpwd>' clause in.
This works in SQL Developer:     alter user sutemp identified by carport999 replace garage999;
So why does the 'password' command fail?     (Developers:  it would also be helpful to have the ORA- error displayed as opposed to 'Failed to change password')

Similar Messages

  • User Password change fails in OWA 2013

    User Password change fails in OWA with this error: Your password couldn't be changed. Make sure the old password you typed is correct and that the new password meets the minimum security requirements.
    We are migrating from Exchange 2007 to Exchange 2013.  Have mailboxes in both environments.  OWA 2007 password changes succeed (user mailbox is still in Exchange 2007).  When the user mailbox is moved to Exchange 2013, password changes fail
    with the above error.
    We have the Exch 2013 servers are on Windows 2012 and we are running Exch 2013 CU3.   We have made changes to the Default Role Assignment Policy to prevent users from changing Contact information and setting user photos, etc.  We are not exactly
    sure when user password changes stopped working, or even if they ever did work, although we recently installed our Prod Exch 2013 servers alongside our 2007 servers without any RBAC delegation implemented and a quick test of a user password change was successful.
    I reversed all the changes to the Default Role Assignment Policy but the password change still fails.

    Hi,
    Please try the following steps in your CAS server:
    1. Click Start > Run and type regedit and click OK.
    2. Navigate to the "HKLM\SYSTEM\CurrentControlSet\Services\MSExchange OWA" key.
    3. Set the ChangeExpiredPasswordEnabled value from 1 to 0.
    4. Close regedit and re-open it.
    5. Set the ChangeExpiredPasswordEnabled value from 0 to 1.
    6. Close regedit.
    7. After you configure this DWORD value, please reset IIS. The recommended method to reset IIS is to use IISReset /noforce from a command prompt.
    Here is the similar thread about password change issue in Exchange 2013 CU3, please refer to:
    http://social.technet.microsoft.com/Forums/en-US/30b74c81-9b98-46f4-9ca0-1c3bb74f4a3f/users-with-expired-passwords-or-change-password-at-next-logon-unable-to-change-password-via-owa-in?forum=exchangesvrclients
    Hope it helps.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Password change fails in SQL Developer with verify function...

    A couple of months ago I enforced a password verify function on our 11.2.0.3 databases and also one legacy 10.2.0.4 database.
    At the time I tested on my account (which had elevated privileges...doh!).   Now some users are hitting expiry, they can't change it via SQL Developer.
    If I create a user with 'create session' privilege and set their profile to one that uses the verify function (see both below), I then log in to SQL Developer (we have tried with versions 3.1 (Windows) and 3.2 (Linux) with same failure results.
    BTW,.. the password verify function enforces the following:
    password must be minimum of 8 characters
    password must not be the same as the user name, or user name (1-100)
    password must contain at least a single digit
    password must contain at least a single character
    1. Works = I log into the local server and run command line SQLPlus, type 'password' and update.   I can successfully change my password.
    2. Fails = I log into the local server and run command line SQLPlus, type 'alter user <me> identified by <newpwd>;' I get:
    TEST: SUTEMP > alter user sutemp identified by carport9999;
    alter user sutemp identified by carport9999
    ERROR at line 1:
    ORA-28221: REPLACE not specified
    This error is because the account does not have the 'alter user' privilege.   I'm okay with this, as I don't want our users having this privilege.
    3. I start SQL Developer 3.2, type 'alter user <me> identified by <newpwd>;' I get the same ORA-28221 error as above.   That is fine, and as expected.
    4. Now in SQL Developer, I type 'password', set a valid password, but I get 'Failed to change password' in the Script Output tab.
    I have a database 'after servererror on database' trigger set, and querying the database table it is logging into, I see a record with a date stamp matching my failure with a server_error=28221 (the same as above).
    So I'm wondering if I'm doing something wrong here, or if this is a bug in SQL Developer.   I don't want standard users having 'alter user' privileges, but I do want to enforce password verification.
    I get the same result on three 11.2.0.3 databases (haven't tried any more but suspect same results for others) and one legacy 10.2.0.4 database, and using SQL Developer 3.1 and 3.2.
    DBA_PROFILE used:
    PROFILE   
    RESOURCE_NAME  
    RESOURCE LIMIT
    CTRU  
    COMPOSITE_LIMIT  
    KERNEL     DEFAULT
    CTRU  
    SESSIONS_PER_USER  
    KERNEL     10
    CTRU  
    CPU_PER_SESSION  
    KERNEL     DEFAULT
    CTRU  
    CPU_PER_CALL  
    KERNEL     DEFAULT
    CTRU  
    LOGICAL_READS_PER_SESSION    KERNEL     DEFAULT
    CTRU  
    LOGICAL_READS_PER_CALL  
    KERNEL     DEFAULT
    CTRU  
    IDLE_TIME  
    KERNEL     DEFAULT
    CTRU  
    CONNECT_TIME  
    KERNEL     DEFAULT
    CTRU  
    PRIVATE_SGA  
    KERNEL     DEFAULT
    CTRU  
    FAILED_LOGIN_ATTEMPTS  
    PASSWORD 10
    CTRU  
    PASSWORD_LIFE_TIME  
    PASSWORD 180
    CTRU  
    PASSWORD_REUSE_TIME  
    PASSWORD DEFAULT
    CTRU  
    PASSWORD_REUSE_MAX  
    PASSWORD 5
    CTRU  
    PASSWORD_VERIFY_FUNCTION     PASSWORD VERIFY_FUNCTION_11G
    CTRU  
    PASSWORD_LOCK_TIME  
    PASSWORD .002
    CTRU  
    PASSWORD_GRACE_TIME  
    PASSWORD 21
    16 rows selected.
    Verify Function used:
    $ cat utlpwdmg.sql
    Rem
    Rem $Header: utlpwdmg.sql 02-aug-2006.08:18:05 asurpur Exp $
    Rem
    Rem utlpwdmg.sql
    Rem
    Rem Copyright (c) 2006, Oracle. All rights reserved.
    Rem
    Rem    NAME
    Rem      utlpwdmg.sql - script for Default Password Resource Limits
    Rem
    Rem    DESCRIPTION
    Rem      This is a script for enabling the password management features
    Rem      by setting the default password resource limits.
    Rem
    Rem    NOTES
    Rem      This file contains a function for minimum checking of password
    Rem      complexity. This is more of a sample function that the customer
    Rem      can use to develop the function for actual complexity checks that the
    Rem      customer wants to make on the new password.
    Rem
    Rem    MODIFIED   (MM/DD/YY)
    Rem    suren       05/09/13 - customise for NIHI use
    Rem    asurpur     05/30/06 - fix - 5246666 beef up password complexity check
    Rem    nireland    08/31/00 - Improve check for username=password. #1390553
    Rem    nireland    06/28/00 - Fix null old password test. #1341892
    Rem    asurpur     04/17/97 - Fix for bug479763
    Rem    asurpur     12/12/96 - Changing the name of password_verify_function
    Rem    asurpur     05/30/96 - New script for default password management
    Rem    asurpur     05/30/96 - Created
    Rem
    -- This script sets the default password resource parameters
    -- This script needs to be run to enable the password features.
    -- However the default resource parameters can be changed based
    -- on the need.
    -- A default password complexity function is also provided.
    -- This function makes the minimum complexity checks like
    -- the minimum length of the password, password not same as the
    -- username, etc. The user may enhance this function according to
    -- the need.
    -- This function must be created in SYS schema.
    -- connect sys/<password> as sysdba before running the script
    CREATE OR REPLACE FUNCTION verify_function_11G
    (username varchar2,
      password varchar2,
      old_password varchar2)
      RETURN boolean IS
       n boolean;
       m integer;
       differ integer;
       isdigit boolean;
       ischar  boolean;
       ispunct boolean;
       db_name varchar2(40);
       digitarray varchar2(20);
       punctarray varchar2(25);
       chararray varchar2(52);
       i_char varchar2(10);
       simple_password varchar2(10);
       reverse_user varchar2(32);
    BEGIN
       digitarray:= '0123456789';
       chararray:= 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
       -- Check for the minimum length of the password
       IF length(password) < 8 THEN
          raise_application_error(-20001, 'Password length less than 8');
       END IF;
       -- Check if the password is same as the username or username(1-100)
       IF NLS_LOWER(password) = NLS_LOWER(username) THEN
         raise_application_error(-20002, 'Password same as or similar to user');
       END IF;
       FOR i IN 1..100 LOOP
          i_char := to_char(i);
          if NLS_LOWER(username)|| i_char = NLS_LOWER(password) THEN
            raise_application_error(-20005, 'Password same as or similar to user name ');
          END IF;
        END LOOP;
       -- Check if the password contains at least one letter, one digit
       -- 1. Check for the digit
       isdigit:=FALSE;
       m := length(password);
       FOR i IN 1..10 LOOP
          FOR j IN 1..m LOOP
             IF substr(password,j,1) = substr(digitarray,i,1) THEN
                isdigit:=TRUE;
                 GOTO findchar;
             END IF;
          END LOOP;
       END LOOP;
       IF isdigit = FALSE THEN
          raise_application_error(-20008, 'Password must contain at least one digit, one character');
       END IF;
       -- 2. Check for the character
       <<findchar>>
       ischar:=FALSE;
       FOR i IN 1..length(chararray) LOOP
          FOR j IN 1..m LOOP
             IF substr(password,j,1) = substr(chararray,i,1) THEN
                ischar:=TRUE;
                 GOTO endsearch;
             END IF;
          END LOOP;
       END LOOP;
       IF ischar = FALSE THEN
          raise_application_error(-20009, 'Password must contain at least one digit, and one character');
       END IF;
       <<endsearch>>
       -- Check if the password differs from the previous password by at least
       -- 3 letters
       IF old_password IS NOT NULL THEN
         differ := length(old_password) - length(password);
         differ := abs(differ);
         IF differ < 3 THEN
           IF length(password) < length(old_password) THEN
             m := length(password);
           ELSE
             m := length(old_password);
           END IF;
           FOR i IN 1..m LOOP
             IF substr(password,i,1) != substr(old_password,i,1) THEN
               differ := differ + 1;
             END IF;
           END LOOP;
           IF differ < 3 THEN
             raise_application_error(-20011, 'Password should differ from the old password by at least 3 characters');
           END IF;
         END IF;
       END IF;
       -- Everything is fine; return TRUE ;
       RETURN(TRUE);
    END;
    alter profile ctru limit password_verify_function verify_function_11g;
    alter profile default limit password_verify_function verify_function_11g;
    alter profile web_and_it limit password_verify_function verify_function_11g;

    okay,... I just saw another website which shows I should put in the 'replace <oldpwd>' clause in.
    This works in SQL Developer:     alter user sutemp identified by carport999 replace garage999;
    So why does the 'password' command fail?     (Developers:  it would also be helpful to have the ORA- error displayed as opposed to 'Failed to change password')

  • Lotus Notes password change not working

    Hi,
    I'm integrating Lotus Notus and currently we are able to create users in the Domino server, so we have many doubts:
    Lotus Notes Id Files are created in the Domino server, but this Id Files needs to be copied in the users own laptops or desktop pc's. What is the best way we can give the user the Id File?
    For password changes: I have test password change from OIM self-service, I mean, I create a user, then I provision the user account to Lotus and finally I login with the user account to OIM user self-service interface and try to change password, connector log says everything is ok and the user Id file is correctly modified but, in Domino's server, Lotus internet/http password is not modified, so it is correct? I expect the http/internet password to be changed too. For test purposes I have to copy the new Id file from the Domino server and paste it in the client pc where Lotus Notes client is installed, I put the new password and I'm able to login, but http/internet password is not changed.
    So I don't know if this is a limitation from the connector or if I miss something in order to be able to perform password changes, I have read many times connector documentation but this is not clear for me. I also have read oracle waveset Domino connector documentations but seems to work in a different way OIM do.
    Please help me
    Regards.

    Hi SaikatDas,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation
    Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    Based on your issue, it is related to the IIS, so I’m afraid that it is not the correct forum for this issue. therefore, I suggest you can post this issue directly to the IIS forum:http://forums.iis.net/
    , maybe you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • J2E instance not up/jcontrol.exe stopped after DB password changes

    Hi,
    i have changed my MAXDB user(SAPJ2EDB) password in config tool in secure store node (parameter: jdbc/pool/J2E/Password). After the password changes, when i re-started the server, my J2E instance is not started running. The jcontrol.exe file is stopped with the following trace log
    trace file log
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC02_us21217509
    -> arg[02] = -DSAPINFO=J2E_02_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3124
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC02\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC02\work\std_bootstrap.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC02\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC02_us21217509
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Support Tools\;C:\Program Files\Schlumberger\Smart Cards and Terminals\Cyberflex Access Kits\v4\;C:\Program Files\Executive Software\Diskeeper\;C:\usr\sap\J2E\SCS03\exe;C:\usr\sap\J2E\JC02\exe;C:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC02\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Support Tools\;C:\Program Files\Schlumberger\Smart Cards and Terminals\Cyberflex Access Kits\v4\;C:\Program Files\Executive Software\Diskeeper\;C:\usr\sap\J2E\SCS03\exe;C:\usr\sap\J2E\JC02\exe;C:\usr\sap\J2E\SYS\exe\run
    [Thr 1708] Wed Jan 17 18:33:59 2007
    [Thr 1708] *** ERROR => invalid return code of process [bootstrap] (exitcode=66) [jstartxx.c   1452]
    [Thr 1708] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc=66)
    [Thr 1708] JControlCloseProgram: started (exitcode = 66)
    [Thr 1708] JControlCloseProgram: good bye... (exitcode=66)
    Bootstrp file log below
    Bootstrap MODE:
    <INSTANCE GLOBALS>
    determined by parameter [ID0256613].
    Exception occured:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:360)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:125)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:147)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:66)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:419)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: com.sap.dbtech.jdbc.exceptions.DatabaseException: [-4008]: Unknown user name/password combination
         at com.sap.dbtech.jdbc.packet.ReplyPacket.createException(ReplyPacket.java:72)
         at com.sap.dbtech.jdbc.ConnectionSapDB.throwSQLError(ConnectionSapDB.java:852)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:511)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:375)
         at com.sap.dbtech.jdbc.ConnectionSapDB.doConnect(ConnectionSapDB.java:313)
         at com.sap.dbtech.jdbc.ConnectionSapDB.<init>(ConnectionSapDB.java:108)
         at com.sap.dbtech.jdbc.DriverSapDB.connect(DriverSapDB.java:189)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:219)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:577)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:263)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:302)
         ... 14 more
    [Bootstrap module]> Problem occured while performing synchronization.
    From the system log, i noticed ,
    log.OpenSQLResourceBundle#SQL error occurred on connection : code={0,number,integer}, state="", message="".#5#-4008#08004#[-4008]: Unknown user name/password combination#jdbc:sapdb://us21217509/J2E?timeout=0&spaceoption=true&unicode=true#<null>#
    because of the changes done by me in config tool, the username / password combination is not considered by the system properly i think. Anyways not sure what went on wrong ?
    Any idea ?
    Raja

    If so , then how do i do it at database level .
    Also today i noticed the simillar problem in SDN.but solution is not provided there
    Changed password of SAPJ2EDB user, cannot start WAS 6.40 anymore
    When i search sap.dom fo the same ( as per the above thread says ) , i could see few relevant documents(http://help.sap.com/saphelp_nw2004s/helpdata/en/cd/14c93ec2f7df6ae10000000a114084/frameset.htm ) , but not able to follow the instructions. because i couldnt able to open the visual admin to create new user or group .
    Any one have any idea ?
    Thanks
    Raja S

  • J2E instance not working / jcontrol.exe stopped after DB password changes

    Hi,
    i have changed my MAXDB user(SAPJ2EDB) password in config tool in secure store node (parameter: jdbc/pool/J2E/Password). After the password changes, when i re-started the server, my J2E instance is not started running. The jcontrol.exe file is stopped with the following trace log
    trace file log
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC02_us21217509
    -> arg[02] = -DSAPINFO=J2E_02_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3124
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC02\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC02\work\std_bootstrap.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC02\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC02_us21217509
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Support Tools\;C:\Program Files\Schlumberger\Smart Cards and Terminals\Cyberflex Access Kits\v4\;C:\Program Files\Executive Software\Diskeeper\;C:\usr\sap\J2E\SCS03\exe;C:\usr\sap\J2E\JC02\exe;C:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC02\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Support Tools\;C:\Program Files\Schlumberger\Smart Cards and Terminals\Cyberflex Access Kits\v4\;C:\Program Files\Executive Software\Diskeeper\;C:\usr\sap\J2E\SCS03\exe;C:\usr\sap\J2E\JC02\exe;C:\usr\sap\J2E\SYS\exe\run
    [Thr 1708] Wed Jan 17 18:33:59 2007
    [Thr 1708] *** ERROR => invalid return code of process [bootstrap] (exitcode=66) [jstartxx.c   1452]
    [Thr 1708] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc=66)
    [Thr 1708] JControlCloseProgram: started (exitcode = 66)
    [Thr 1708] JControlCloseProgram: good bye... (exitcode=66)
    Bootstrp file log below
    Bootstrap MODE:
    <INSTANCE GLOBALS>
    determined by parameter [ID0256613].
    Exception occured:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:360)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:125)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:147)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:66)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:419)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: com.sap.dbtech.jdbc.exceptions.DatabaseException: [-4008]: Unknown user name/password combination
         at com.sap.dbtech.jdbc.packet.ReplyPacket.createException(ReplyPacket.java:72)
         at com.sap.dbtech.jdbc.ConnectionSapDB.throwSQLError(ConnectionSapDB.java:852)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:511)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:375)
         at com.sap.dbtech.jdbc.ConnectionSapDB.doConnect(ConnectionSapDB.java:313)
         at com.sap.dbtech.jdbc.ConnectionSapDB.<init>(ConnectionSapDB.java:108)
         at com.sap.dbtech.jdbc.DriverSapDB.connect(DriverSapDB.java:189)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:219)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:577)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:263)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:302)
         ... 14 more
    [Bootstrap module]> Problem occured while performing synchronization.
    From the system log, i noticed ,
    log.OpenSQLResourceBundle#SQL error occurred on connection : code={0,number,integer}, state="", message="".#5#-4008#08004#[-4008]: Unknown user name/password combination#jdbc:sapdb://us21217509/J2E?timeout=0&spaceoption=true&unicode=true#<null>#
    because of the changes done by me in config tool, the username / password combination is not considered by the system properly i think. Anyways not sure what went on wrong ?
    Any idea ?
    Raja S

    Hi,
    You changed the password in J2EE instance , however maybe the change didn't go thru into the Database.
    You need to change the database password, check this link
    http://dev.mysql.com/doc/maxdb/en/ba/64b3403a493f5fe10000000a155106/frameset.htm
    Regards,
    Siddhesh

  • Communication user is not requested change password

    Hi
    We have set a general rule, that users must change password every 90 days (login/password_expiration_time). We have now had a communication user in the system for more than 5 months, and the password is still not expired.
    How can this be? Shouldn't communication users be forced to change the password?
    In table USR02 I can see a field XUPWDSTATE - "Password Change Mandatory / Optional (See Domain XUPWDSTATE)", but I can't find any documentation on this field. The values are 0,1,254,255. Does anybody know what these values mean and how/when they are set.
    Thank you for your help.
    Regards, Morten

    >
    Morten Ellgaard wrote:
    > Hi
    >
    > We have set a general rule, that users must change password every 90 days (login/password_expiration_time). We have now had a communication user in the system for more than 5 months, and the password is still not expired.
    >
    > How can this be? Shouldn't communication users be forced to change the password?
    >
    > In table USR02 I can see a field XUPWDSTATE - "Password Change Mandatory / Optional (See Domain XUPWDSTATE)", but I can't find any documentation on this field. The values are 0,1,254,255. Does anybody know what these values mean and how/when they are set.
    >
    > Thank you for your help.
    >
    > Regards, Morten
    Well, that's a common misunderstanding:
    accounts of type "COMMUNICATION user" are subject of password expiration - however the password change requirement is not enforced (since the server cannot interact with the user). Actually that's not mainly caused by the user type but by the communication protocol being used: RFC and HTTP allow both, interactive and non-interactive system usage. Only the DIAG protocol (used by SAPGUI) ensures that an interaction with the user is possible - and in this case the system is enforcing a password change (when required).
    Note 622464 provides an overview on the user types and the ability / requirement to change passwords (and other impacts).
    Side-remark: modifying the USR02 field would not have any impact on the password change handling (beside the fact that such direct table manipulations are risky and strongly discouraged).
    As reported by other SDN community members (and stated in note 320991, quite at the end) there are some profile parameters that will cause RFC and HTTP based logon to fail for passwords which are expired / initial. Setting those profile parameters will result in a downwards-incompatible system behavior - for this reason the default setting is "off".
    Indeed, if you intend to use "technical accounts" for (automated) system-to-system communication, then kindly use the user type "SYSTEM". In that case, the password is neither "expired" nor "initial" - no password change is required nor can it be performed by the SYSTEM user itself. Only an user administrator can set a new password (in systems as of NWAS 7.0: even a downwards-compatible one - despite the password policy, see notes referenced by note 622464).

  • Email not working - "device change failed"

    Hi, My email has been working fine until today. when no emails were coming though on my device. I went into start-up and retyped passwords and it then came up with "device change failed"
    I tried to do the battery out trick which did not work, so thought I'd delete the account and start again.
    As soon as i go into email option on start-up it says "device change failed" then when I try and add my email back, it says "sorry unable to continue your session. Please log in again" It then takes me back to the main set up menu.
    Please help!!
    My email is hotmail.com

    Sorry for the late reply. In order for you to add the emails back, you have to have the Internet Maill Account under the Email Setup. If incase you only have the option for Enterprise, check the Article below:
    BlackBerry smartphone has no option for Internet Mail Account in Email Setup Application
    Hope this resolves the issue
    Ron
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • Hi  I'm try to set up a new Epson printer SX 445 to my router/network but each time I run the set up wizard it fails to complete saying Security Key/Password Check fail.  *entered security key/password does not match the one set for for router.  I know th

    Hi
    On my macbook pro
    I'm try to set up a new Epson printer SX 445 to my router/network but each time I run the set up wizard it fails to complete saying Security Key/Password Check fail.
    *entered security key/password does not match the one set for for router.
    I know that the password is correct and have rechecked this by changing it a few times
    and I still get the same result.
    My network internet service provider is not interested and says to call Epson.
    Anybody have any clues how I can resolve this?
    Regards

    I personally suggest the new Drobo FS. Since it has an iTunes server built in and you can use any size sata hard drive in it it is better and a NAS that has to use the same size drives.

  • Outlook 2013 - Password change breaks S/MIME Certs "An error occurred in the underlying security system. Key not valid for us in specified state."

    AD password change comes up, user changes password.
    Tries to send signed or encrypted email with a Comodo S/MIME certificate, and gets the following error:
    ""An error occurred in the underlying security system.  Key not valid for us in specified state."
    I now have two reports of this error - one on Windows 7, and one on Windows 8.0 (remote user).
    The one on Windows 8.0, we tried removing their S/MIME cert from Outlook/Windows and re-adding, this did NOT resolve the issue.
    Plan was originally to have the 8.0 user ship their machine in, and wipe it, since nothing else could fix it and I wasn't finding anyone else with the same issue.  Now that I've got a second user with the same issue, its looking like a bug/issue and
    not a random glitch.
    Thanks in advance for any and all help with this!

    Hi,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • I am not receiving the mails of my password change and the page says the mails are sent. Where are my mails?

    I am not receiving the mails of my password change in my hotmail account and the page says the mails are sent. Where are my mails?
    Anyways i didn't change my password of that account and today iTunes says many times my password were incorrect,when i try to reset with the email check is when the problem happens.
    Thanks.

    That card you received didn't give a date. It was telling you of an upcoming change. The change for your area is due on Tuesday.

  • MobileMe iPhoto galleries not syncing after password change

    After changing the MobileMe Password iPhoto does not recognize the properly configured MobileMe Account anymore.
    All other Applications with MobileMe Upload/Sync/Publishing capability (iMovie, Aperture, MobileMe-Sync) still work flawless. After trying to publish a Photo to a MobileMe Gallery or clicking on an prior uploaded MobileMe , the MobileMe "Are you already a member" (Translated from German) screen pops up, asking me to login into MobileMe. A second windows states "An error occured with the publication of album "ALBUMNAME". Your MobileMe Account Information is not correct. The provided login or password is not valid" (Translated from German)."
    Even in the iPhoto Preferences/Setting under the "Web" Tab the used and max iDisk Capacity is not shown.
    After changing the MobileMe Password iPhoto does not recognize the MobileMe Account anymore.
    I'm having this problem on my late 2007 MacBook Pro 2,4GHz
    On my second Mac at home evrything works just fine, even in iPhoto.
    I've tried several things to solve this problem:
    - Logging Off & On with fake MobileMe username/password in the MobileMe Setting in System Preferences
    - Updating the password in publish.me.com in the keychain
    - replacing the keychain on this Mac (MBP) with the keychain from my Mac at (both have latest Snow Leopard and iPhoto Version)
    - deleted the com.apple.iPhoto.plist
    I took information/suggestions from these forum posts:
    http://discussions.apple.com/message.jspa?messageID=8168945
    http://discussions.apple.com/thread.jspa?messageID=10235638&#10235638
    http://discussions.apple.com/thread.jspa?threadID=1904914&start=0&tstart=0
    http://forums.macrumors.com/showthread.php?t=689762
    Any advice/ideas?
    Thanks
    Oliver

    http://discussions.apple.com/thread.jspa?messageID=10404438&#10404438
    found that thread and looked in the keychain - indeed it was still the old password - changed it and now working again...

  • Ipad keeps requesting outlook password, trying cancel but still in cycle - can not do anything else.  NOTE - recently change email password on PC

    ipad keeps requesting outlook password, trying cancel but still in cycle - can not do anything else.  NOTE - recently change email password on PC

    Try a reboot:
    To reboot your iPad, hold down the sleep/wake button and the home button simultaneously until the screen goes black and the Apple logo appears. If, during this process, a slider appears on the screen to power it off, ignore it and keep holding the buttons down.
    Rebooting your iPad can solve a lot of problems. Once you do that, go into Settings > Mail, Contacts, Calendars and make sure the correct, new password is entered in that account.

  • MARS working ACS-password changes not working

    If I change my password at the active directory level, ACS should correspondingly accept that and work with my MARS appliance. THe problem I'm seeing is failed logons using an account with a recently changed password. ACS reports "password update failed" or something like that for the failed MARS logons. Other ACS integrated cisco devices are working fine.
    Is there a setting within MARS that caches passwords?
    thanks

    Some things to try...
    Reset OS X Password Without an OS X CD...
    http://theappleblog.com/2008/06/22/reset-os-x-password-without-an-os-x-cd/
    Starts up like the first time you buy a new Mac, but after filling in all that info again, you should have access to the computer and the other Users & files will still be there... though I was just thinking, this new User probably shouldn't be the same name as an existing one.
    A relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • FIM Password Synchronization Not Catching All Password Changes

    I have a FIM 2012 R2 environment and I'm about to start synchronizing password changes from AD into our legacy systems.  I have PCNS installed on my DCs and the AD MA in FIM configured as a password sync source.
    Everything works - just not all of the time.
    I've enabled PCNS verbose logging on the DCs.  I'm getting "The password notification has been delivered to all targets - (Event ID 2100)"
    success messages for all password changes but the FIM sync engine ony appears to be acting on ~25% of the incoming changes.
    I had thought it was my password extension code that may have been having issues but I stripped it down to simply dropping an event into an event log and it's still dropping 75% of the changes.
    Has anyone else seen this behaviour before? 
    Is there any way to correlate PCNS events with some form of log in FIM?  I can't seem to find anything in the event log that's tied to password changes.
    Cheers,
        Ian

    Looks like I managed to solve this one myself (it's alot easier once you manage to get logging to work correctly (doh!)).
    The problem lies in the way we're currently provisioning AD accounts (out of band through a scripted process).  This means that accounts show up in AD before FIM knows that they exist - FIM isn't having a problem finding the user in the password target
    connector space, it's having a problem finding them in the password source connector space.
    The 25% that are succeeding are the individuals who have already been recognized by FIM in both the source and target connector spaces.

Maybe you are looking for

  • Table  is not in nametab

    Does anyone knows what means "Table ZT_QM is not in nametab" when importing a transport request with this table Thank you in advance

  • N86 8MP problem with setup WLAN notifications

    Hi, how can I setup my N86 8MP WLAN notifications on display ( for example: WLAN networks found  like on picture ).... I can´t find that options...please I realy need it... thanks....thanks Solved! Go to Solution. Attachments: nokia-n86-WLAN notifica

  • Movie not working properly-very slow

    Hi, I just opened up a file with a movie in it. If I click to play it, the app stops responding for quite awhile, during which maybe one or two frames will play. I'm not sure if this has anything to do with my recent installation of iWork 06, but I t

  • Petition: Creative to change it so we can put a specific time for backlight on micro to go on/

    CREATIVE TO CHANGE IT SO WE CAN PUT A SPECIFIC TIME FOR BACKLIGHT ON MICRO TO GO ON/OFF. Wouldn't it be nice during the daytime to save battery and have the backlight off, and then during the night have the backlight on, WITHOUT going to settings eve

  • Module pp

    hi experts, i want to know the flow of pp as well as mm & sd. pl, give me the answer in briefly that enough. thanks.