Error ORA-01017

Hi
we have installed database oracle 11g on OS windows 2008.We have also installed Oracle 10g application server services for forms and reports on OS 2003.
All connectivity works fine.In client PC with OS vista when I compile the form I get this error ora-01017 and the logon screen pop ups.
On giving the username/password@connectstring it gets connected to the database and the form opens.We have checked for password case senstive also.
Also in formsweb.conf in userid we have specified the above string.
Please let us know how to bypass this logon screen and this error.
Thanks

ORA-01017 is simply when your username or password to access the database is wrong. In order to access your USER and PASSWORD tables, you first need to have been granted access in the database. That part is the issue. Which username/password are you then using?
Daniel

Similar Messages

  • ERROR: ORA-01017: invalid username/password; logon denied

    Hi all
    I need your kind help.
    I have installed Oracle Audit Vault Server  Release 10.2.3.2 in Linux system and collection agent in Windows system. Adding and starting DBAUD collector went fine however  adding REDO collector return back errors when executing avorcldb add_collector command as follow
    [oracle@avsrv ~]$
    [oracle@avsrv ~]$  avorcldb add_collector -srcname orcl -agentname avagent01 -colltype REDO -av Lugaopc:1521:orcl
    collector REDO_Collector for source orcl already exists
    initializing REDO Collector
    ERROR: could not get AV source user connection using jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))
    ERROR: ORA-01017: invalid username/password; logon denied
    [oracle@avsrv ~]$
    Here is the contents of avorcldb.log file
    09-09-13 16:58:44 [INFO ] Processing command add_collector
    09-09-13 16:58:44 [INFO ] Processing arg -srcname = orcl
    09-09-13 16:58:44 [INFO ] Processing arg -agentname = avagent01
    09-09-13 16:58:44 [INFO ] Processing arg -colltype = REDO
    09-09-13 16:58:44 [INFO ] Processing arg -av = Lugaopc:1521:orcl
    09-09-13 16:58:44 [INFO ] Connect info : Lugaopc:1521:orcl
    09-09-13 16:58:45 [INFO ] Got AV admin connection using jdbc:oracle:oci:@AVDB
    09-09-13 16:58:45 [INFO ] Executing SQL as [ADM@AV] select s.host||':'||a1.num_value||':'||a2.char_value from avsys.av$attrvalue a1, avsys.av$attrvalue a2, avsys.av$source s, avsys.av$attrdef ad1, avsys.av$attrdef ad2 where source_name = :1 and a1.inst_id = s.source_id and a2.inst_id = s.source_id and a1.attr_id = ad1.attr_id and ad1.attr_name = 'PORT' and a2.attr_id = ad2.attr_id and ad2.attr_name = 'DB_SERVICE'
    09-09-13 16:58:45 [INFO ] Using bind value orcl
    09-09-13 16:58:45 [INFO ] Return value = Lugaopc:1521:orcl
    09-09-13 16:58:45 [INFO ] Connect info : Lugaopc:1521:orcl
    09-09-13 16:58:45 [INFO ] Executing SQL as [ADM@AV] select to_char(source_id) from avsys.av$source where source_name = :1
    09-09-13 16:58:45 [INFO ] Using bind value orcl
    09-09-13 16:58:45 [INFO ] Return value = 1
    09-09-13 16:58:46 [INFO ] Got source user connection using jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))
    09-09-13 16:58:46 [INFO ] Executing SQL as [ADM@AV] select decode(c.status, 1, 'active', 0, 'dropped', null) from avsys.av$collector c, avsys.av$source s where source_name = :1 and collector_name = :2 and c.source_id = s.source_id
    09-09-13 16:58:46 [INFO ] Using bind value orcl
    09-09-13 16:58:46 [INFO ] Using bind value REDO_Collector
    09-09-13 16:58:46 [INFO ] Return value = active
    09-09-13 16:58:46 [MESG ] collector REDO_Collector for source orcl already exists
    09-09-13 16:58:46 [INFO ] Executing SQL as [ADM@AV] select decode(c.status, 1, 'active', 0, 'dropped', null) from avsys.av$collector c, avsys.av$source s where source_name = :1 and collector_name = :2 and c.source_id = s.source_id
    09-09-13 16:58:46 [INFO ] Using bind value orcl
    09-09-13 16:58:46 [INFO ] Using bind value REDO_Collector
    09-09-13 16:58:46 [INFO ] Return value = active
    09-09-13 16:58:46 [MESG ] initializing REDO Collector
    09-09-13 16:58:46 [INFO ] Executing SQL as [ADM@AV] select username from avsys.av$source where source_name = :1
    09-09-13 16:58:46 [INFO ] Using bind value orcl
    09-09-13 16:58:46 [INFO ] Return value = AVSRCUSR1
    09-09-13 16:58:46 [INFO ] Executing SQL as [ADM@AV] {? = call avsys.dbms_audit_vault.reset_source_user(?)}
    09-09-13 16:58:46 [INFO ] Adding mask for user password
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] select table_name from user_tables where upper(table_name) = upper(:1)
    09-09-13 16:58:46 [INFO ] Using bind value STREAMS_HEARTBEAT
    09-09-13 16:58:46 [INFO ] Return value = STREAMS_HEARTBEAT
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] drop table streams_heartbeat
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] create table streams_heartbeat( src_dbname varchar2(4000), job_number number, heartbeat_time timestamp)
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] declare dbs_name varchar2(4000); begin select global_name into dbs_name from global_name; insert into streams_heartbeat values (dbs_name, 0, SYSTIMESTAMP); end;
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] create or replace procedure update_heartbeat IS begin update streams_heartbeat set heartbeat_time=(select systimestamp from dual); commit; end;
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] select table_name from user_tables where upper(table_name) = upper(:1)
    09-09-13 16:58:46 [INFO ] Using bind value CAPTURE_RULES
    09-09-13 16:58:46 [INFO ] Return value = CAPTURE_RULES
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] drop table capture_rules
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] create table capture_rules( rule_name  varchar2(50), rule_scope varchar2(6),  rule_type  varchar2(3),  obj_name   varchar2(100))
    09-09-13 16:58:46 [INFO ] Executing SQL as [ADM@AV] select global_name from global_name
    09-09-13 16:58:46 [INFO ] Return value = AVDB.AVSRV
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] select db_link from user_db_links where db_link = :1
    09-09-13 16:58:46 [INFO ] Using bind value AVDB.AVSRV
    09-09-13 16:58:46 [INFO ] Return value = AVDB.AVSRV
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] drop database link "AVDB.AVSRV"
    09-09-13 16:58:46 [INFO ] Executing SQL as [USR@SRC] select version from v$instance
    09-09-13 16:58:46 [INFO ] Return value = 11.2.0.1.0
    09-09-13 16:58:46 [INFO ] Creating DB link using AVDB.AVSRV,AVSRCUSR1,{avsrcusr_pwd},Lugaopc,1521,orcl
    09-09-13 16:58:46 [INFO ] Connecting as srcuser_ora01 to @(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))
    09-09-13 16:58:46 [INFO ] Output from SQLPlus
    09-09-13 16:58:46 [INFO ]
    09-09-13 16:58:46 [INFO ] Package created.
    09-09-13 16:58:46 [INFO ]
    09-09-13 16:58:46 [INFO ] No errors.
    09-09-13 16:58:47 [INFO ]
    09-09-13 16:58:47 [INFO ] Package body created.
    09-09-13 16:58:47 [INFO ]
    09-09-13 16:58:47 [INFO ] No errors.
    09-09-13 16:58:47 [INFO ]
    09-09-13 16:58:47 [INFO ] Package created.
    09-09-13 16:58:47 [INFO ]
    09-09-13 16:58:47 [INFO ] No errors.
    09-09-13 16:58:47 [INFO ]
    09-09-13 16:58:47 [INFO ] Package body created.
    09-09-13 16:58:47 [INFO ]
    09-09-13 16:58:47 [INFO ] No errors.
    09-09-13 16:58:47 [INFO ] Executing SQL as [USR@SRC] select distinct name from user_errors where name = :1
    09-09-13 16:58:47 [INFO ] Using bind value DBMS_SRC_STREAMS_COLLECTOR
    09-09-13 16:58:47 [INFO ] Return value = null
    09-09-13 16:58:47 [ERROR] could not get AV source user connection using jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))
    09-09-13 16:58:47 [ERROR] ORA-01017: invalid username/password; logon denied
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
        at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:765)
        at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:414)
        at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:546)
        at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:162)
        at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)
        at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
        at java.sql.DriverManager.getConnection(DriverManager.java:525)
        at java.sql.DriverManager.getConnection(DriverManager.java:140)
        at oracle.av.avca.jdbc.JdbcConnection.<init>(JdbcConnection.java:87)
        at oracle.av.orcldb.DAO.initConnection(DAO.java:79)
        at oracle.av.orcldb.DAO.<init>(DAO.java:64)
        at oracle.av.orcldb.commands.AddCollector.setupCollector(AddCollector.java:746)
        at oracle.av.orcldb.commands.AddCollector.execute(AddCollector.java:230)
        at oracle.av.orcldb.Command.process(Command.java:89)
        at oracle.av.orcldb.Main.process(Main.java:118)
        at oracle.av.orcldb.Main.main(Main.java:132)
    I have searched the forum to my level best without clear solution
    Regards
    Sadock

    Hi gurus
    I don't believe if this is missing solution from oracle community. I have decided to installed the collction agent and source database in linux system, so now both auditt vault server and collction agent are running in Linux system (but separately)
    I am wondering, avorcldb add_collector -srcname ORCL -agentname avagent01 -colltype DBAUD and  avorcldb add_collector -srcname ORCL -agentname avagent01 -colltype OSAUD -orclhome /u01/app/oracle/product/11.2.0/dbhome_1 are working fine and  I am able to start these collectors
    The  avorcldb verify -src Lugaosrv:1521:ORCL.LUGAOSRV -colltype ALL command also return good results
    [oracle@avsrv ~]$ avorcldb verify -src Lugaosrv:1521:ORCL.LUGAOSRV -colltype ALL
    Enter Source user name: srcuser_ora01
    Enter Source password:          
    source ORCL.LUGAOSRV verified for OS File Audit Collector collector
    source ORCL.LUGAOSRV verified for Aud$/FGA_LOG$ Audit Collector collector
    source ORCL.LUGAOSRV verified for REDO Log Audit Collector collector
    [oracle@avsrv ~]$
    The problem still I am facing is when attempting to add REDO collector. In fact the collector is added successful and i can see it even on EM console.
    [oracle@avsrv ~]$ avorcldb add_collector -srcname ORCL -agentname avagent01 -colltype REDO -av Lugaosrv:1521:ORCL.LUGAOSRV
    source ORCL verified for REDO Log Audit Collector collector
    Adding collector...
    Collector added successfully.
    remember the following information for use in avctl
    Collector name (collname): REDO_Collector
    initializing REDO Collector
    ERROR: could not get AV source user connection using jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaosrv)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL.LUGAOSRV)))
    ERROR: ORA-01017: invalid username/password; logon denied
    [oracle@avsrv ~]$
    Any help will be appreciated
    Sadock

  • Error ORA-01017 happened when dbms_scheduler run a job.

    Hi All,
    I got a problem when I use dbms_scheduler to run a job. I got Error code 1017 when the job is run by scheduler. Please find my steps below:
    Oracle version is : Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    1. Created a job successfully by using the code below:
    begin
    dbms_scheduler.create_job(
    job_name => 'monthly_refresh_elec_splits',
    job_type => 'PLSQL_BLOCK',
    job_action => 'BEGIN TRADINGANALYSIS.PKG_IM_REPORTING_ERM.REFRESH_ELEC_SPLITS_TEST; commit; END;',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'freq=monthly;bymonthday=25;byhour=10;byminute=35;bysecond=0;',
    end_date => NULL,
    enabled => TRUE,
    comments => 'monthly_refresh_elec_splits.',
    auto_drop => FALSE
    end;
    2. Got the job run details from talbe user_scheduler_job_run_details after the job is finished:
    select * from user_scheduler_job_run_details where job_name = 'MONTHLY_REFRESH_ELEC_SPLITS' order by log_id desc;
    LOG_ID     LOG_DATE     OWNER     JOB_NAME     JOB_SUBNAME     STATUS     ERROR#     REQ_START_DATE     ACTUAL_START_DATE     RUN_DURATION     INSTANCE_ID     SESSION_ID     SLAVE_PID     CPU_USED     DESTINATION     ADDITIONAL_INFO
    2054804     25/06/2012 10:35:01.086000 AM +10:00     TRADINGANALYSIS     MONTHLY_REFRESH_ELEC_SPLITS          FAILED     1017     25/06/2012 10:35:00.300000 AM +10:00     25/06/2012 10:35:00.400000 AM +10:00     +00 00:00:01.000000     1     1025,37017     129396     +00 00:00:00.030000          ORA-01017: invalid username/password; logon denied
    ORA-02063: preceding line from NETS
    ORA-06512: at "TRADINGANALYSIS.PKG_IM_REPORTING_ERM", line 574
    ORA-06512: at line 1
    3. If I run the job directly the job will be finished successfully.
    begin
    dbms_scheduler.run_job('monthly_refresh_elec_splits',TRUE);
    end;
    LOG_ID     LOG_DATE     OWNER     JOB_NAME     JOB_SUBNAME     STATUS     ERROR#     REQ_START_DATE     ACTUAL_START_DATE     RUN_DURATION     INSTANCE_ID     SESSION_ID     SLAVE_PID     CPU_USED     DESTINATION     ADDITIONAL_INFO
    2054835     25/06/2012 11:05:38.515000 AM +10:00     TRADINGANALYSIS     MONTHLY_REFRESH_ELEC_SPLITS          SUCCEEDED     0     25/06/2012 11:04:35.787000 AM +10:00     25/06/2012 11:04:35.787000 AM +10:00     +00 00:01:03.000000     1     1047,700          +00 00:00:00.030000
    Additional Info:
    PL/SQL Code in procedure
    PROCEDURE Refresh_Elec_Splits_Test IS
    BEGIN
    --Refresh im_fact_nets_genvol from v_im_facts_nets_genvol in NETS
    DELETE FROM IM_FACT_NETS_GENVOL;
    --the local NETS_GENVOL table has an additional column providing volume splits by generator and month.
    --INSERT INTO IM_FACT_NETS_GENVOL values ('test',sysdate,'test',1,2,3,4,5,6,7);
    INSERT INTO IM_FACT_NETS_GENVOL
    select ngv.*,
    ratio_to_report (net_mwh) OVER (PARTITION BY settlementmonth, state)
    gen_percent
    from [email protected] ngv;
    commit;
    END;
    Does anyone can advice where should I check and how can I solve the problem?
    Thanks in advance
    Edited by: user13244529 on 24/06/2012 18:33
    Edited by: user13244529 on 24/06/2012 18:43

    I apologize if you already solved this.. but see Metalink ID 790221.1
    +*<Moderator Edit - deleted contents of MOS Doc - pl do NOT post such content - it is a violation of your Support agreement>*+                                                                                                                                                                                                                                                                                                                                                                                                               

  • Database link error - ORA-01017

    Hello all. I have a problem with a database link. I create the link like this -
    create database link agenda
    connect to user1 identified by user1pw
    using 'agenda'
    ... I have read where you need to make the link name the same as the Net8 name. I create the link, no problem.
    Then when I try to use it -
    select * from myTable@agenda
    ... I get a ORA-01017: invalid username/password error.
    This is impossible! I use the agenda service in Toad no problem, and log in with the same user/password.
    Anyone have any idea what's going on here? I have tried re-doing links for every database I have, all with Net8 services that are working, and with correct,usernames/passwords, and they all give me the same answer! Help
    -bob
    null

    Try with agenda.us.oracle.com

  • Deployment error: ORA-01017: invalid username/password; logon denied

    Hi,
    I created a new target schema against an existing runtime owner user id and runtime access user id.
    But deploying the mapping now gives error as follows:
    <<ORA-01017: invalid username/password; logon denied>>
    Can you please guide where the problem is?
    Thanks & Regards,
    Lenin

    Hi,
    Just to add some more informations about this topic. I created one extra target schema for the same runtime user id/runtime access user. And then tried to deploy the mapping and got the above error. And again, I removed the older target schema by using "OWB Runtime Assistant". And then tried to deploy mapping again and got the same error again.
    Can you please help me out in this case?
    Thanks & Regards,
    Lenin

  • ORA-01017 error while using a database link

    Hi all,
    I have a TNS entry as below
    HOME=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=10.66.205.110)(PORT=1521))
    (CONNECT_DATA=(SID=HOME))
    I have created a database link as
    create public database link link92.com using 'HOME'.
    This was created successfully and an entry was made in all_db_links table.
    However if i try connecting to a table in the remote database...for example
    select * from emp@link92;
    I am receiving an error ORA-01017(Invalid username passwd).
    Would appreciate if somebody could help me out.
    Thank you

    It is not that the Database Link is "PUBLIC" that makes it use the current username/password.
    It is that the Database Link has been created without specifying a " CONNECT TO username IDENTIFIED BY password " that makes the DBLink behave as a "current user database link" using the current username/password to connect to the remote database.
    You can have a PUBLIC database link that uses a "CONNECT TO username IDENTIFIED BY password" such that all connections use the same remote username and password.
    You can also have "private" (ie not PUBLIC) database link that does not specify a "CONNECT TO username IDENTIFIED BY password" which becomes a "current user [owner] database link".

  • Ora-01017 error on portal import

    source and destination portals:
    win2k adv svr w/sp3
    Portal 9.02 (patches 2724516,2627719,2597989 applied)
    separate OID servers
    Exported a database provider from source portal. Transferred .cmd and .dmp files via email. Ran following imp cmd line on source portal:
    D:\oracle\9ias\portal\epic>set oracle_home=d:\oracle\9ias
    D:\oracle\9ias\portal\epic>provider_exp.cmd -mode import -s portal -p <portal_schema_owner_pwd> -c
    iasdb -pu portal -pp <ias_admin pwd> -d provider.dmp -company NONE
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Import seems to go further if params are hardcoded in, but shouldn't have to do that, right?
    any thoughts?

    Try it as:
    provider_exp.cmd -mode import -s portal -p <portal_schema_owner_pwd> -c iasdb
    Then it will prompt you for the File
    Then prompt you for the portal username
    Then prompt you for the portal's PORTAL password (not schema password)
    Then company name
    All should go from there.

  • ORA- 01017 Error ( Invalid Username Password) Logon Denied

    Gurus,
    I am running into the above error ( ORA- 01017) ( Invalid Username Password) Logon Denied on the Oracle Application Server 10g.
    Note:
    On windows 2003 server
    The DB is 11g and I am using the Oracle applicaton Server 10g - Forms Services
    Also have Installed Oracle Dev_suite ( Oracle forms)
    Instances used - PROD and TEST
    Have developed a simple form and using Forms services ( the below url) is used
    http://<<Hostname>>/forms/frmservlet?form=meds_trans_menu.fmx&userid=&otherparams=useSDI=yes&lookAndFeel=oracle&colorScheme=blue
    the Login screen comes ,
    entering the username and details , says the password expired as the user is trying to enter for the first time,
    shows the change password screen
    old password
    new password
    re-enter new password
    When I try to enter the new password and hit ok button, it shows error message again and again.
    ORA- 01017 Error ( Invalid Username Password) Logon Denied
    Not sure why i get this error , even after entering the correct credentials.
    Please advice.
    Thanks
    Sheik

    Gurus - Any ideas , suggestions how this can be resolved?
    Is this issues because of version mismatch ( 11g DB and Oracle Forms 10g)??
    Please advice when time permits.
    Thanks
    Sheik

  • ORA-01017: invalid username/password; logon denied error...Help Please!!!

    when I log into either a Unix server or a windows server, I use the same account GILLR, and as such I created an account in the DB as OPS$GILLR and issued the follwing command:
    CREATE USER OPS$GILLR IDENTIFIED EXTERNALLY DEFAULT
    GRANT CREATE SESSION TO "GILLR"
    then when I run:
    GILLR@csc08> sqlplus /
    SQL*Plus: Release 9.2.0.4.0 - Production on Wed Aug 3 08:19:52 2005
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name:
    Now I followed steps that were provided to me from the ASKTOM site and I even found some solutions to this error, but nothing worked. Does anyone know why I can not use OS_AUTH on any of the servers here?

    WOW!!!!! Adding in the DOMAIN into the OPS$DOMAIN\USER worked....Thanks for your help. Now I have one other question. You stated "ypur client computer and Oracle server computer should be in the same domain" What is I have users in Domain X and some users in Domain Y. When they hit some website, they have the option to select the Domain and enter their credentials. If the user has the ability to select the domain then does it really matter if the client machine is on the same domain as the DB server. I mean, the user maybe from Domain X but the DB server might be on Domain Z. The client machine and web server might be both Windows server, but when the webb app makes a call to the DB using proxxy connection, the proxxy account will take the user OPS$DOMAIN'X'\USER and make a call to the DB. How can I handle this problem?

  • ORA-01017 error, when running Complete configuration of Maintenance Wizard

    Hi Gurus,
    Maintenance wizard version: 2.19 (latest)
    DB: 10.2.0.1
    Linux:
    Upgrade assistance for R12
    Im trying to complete the first step:
    1-Complete configuration of Maintenance Wizard (Required)
    It gives me errors:
    Checking that Remote EOF_HOME is only a directory name, not a path...
    ERROR:
    ORA-01017: invalid username/password; logon denied
    SP2-0640: Not connected
    SP2-0670: Internal number conversion failed
    Usage: { EXIT | QUIT } [ SUCCESS | FAILURE | WARNING | n |
    &lt;variable&gt; | :&lt;bindvariable&gt; ] [ COMMIT | ROLLBACK ]
    ** ERROR!!! **
    ** Project node configuration has FAILED with the problem(s) below:!!! **
    ** Invalid value for REMOTE_EOF_HOME.
    ** Solution: Remove all slashes in the value for REMOTE_EOF_HOME.
    ** The value must be a simple directory name, not a path.
    ** Please have the Project Administrator return to the Modify Project
    ** screen, change the value for REMOTE_EOF_HOME and re-run Step
    ** 1 of the Configuration category.
    ** DO NOT PROCEED WITH ANY OTHER STEPS UNTIL YOU RESOLVE THE PROBLEMS SHOWN **
    ** ABOVE. ALL OTHER STEP EXECUTION DEPENDS ON A SUCCESSFUL PROJECT NODE **
    ** CONFIGURATION. **
    ** ONCE YOU HAVE RESOLVED THE PROBLEMS SHOWN ABOVE, YOU MUST RE-RUN THIS **
    ** STEP AGAIN. **
    I've checked all the forums before posting. Please advise
    Thanks & Regards,
    Rv
    Edited by: Kiran Jakka on May 11, 2012 8:05 AM

    Yes this is what I do, but still receive "Insufficient privileges to write to that location". So I am forced to use normal file system to be able to continue.
    After that I run into the current problem saying OMS configuration failed (see details....) and I try:
    ./opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=uxlpgrid01:6200
    3 of 5 processes started.
    ias-instance id=EnterpriseManager0.uxlpgrid01
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    OC4J/home/default_island
    Error
    --> Process (pid=0)
    no port available from the port range
    failed to start a managed process after the maximum retry limit
    no port available from the port range
    no port available from the port range
    Log:
    none
    ias-component/process-type/process-set:
    OC4J/OC4J_EMPROV/default_island
    Error
    --> Process (pid=0)
    no port available from the port range
    failed to start a managed process after the maximum retry limit
    no port available from the port range
    no port available from the port range
    Log:
    none
    Then:
    ./opmnctl status
    Processes in Instance: EnterpriseManager0.uxlpgrid01
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    HTTP_Server | HTTP_Server | 23861 | Alive
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 27021 | Alive
    OC4J | home | N/A | Down
    OC4J | OC4J_EM | 10403 | Alive
    OC4J | OC4J_EMPROV | N/A | Down
    WebCache | WebCache | 23872 | Alive
    WebCache | WebCacheAdmin | 23863 | Alive
    Overwhelming :-(
    Thanks for helping
    Askia.

  • Getting ORA-01017: invalid username/password error only with specific tools

    Hi,
    I am a Junior DBA still getting familiar with Oracle. I am having trouble accessing one of my databases through both TOAD and SQLDetective tools. When I try to log in to my database using these tools, I get the error:
    ORA - 01017: invalid username/password; login denied
    Even though the password and username is correct.
    I can successfully login through other tools like SQLTools and through SQL Plus. I have searched this issue and I have seen people with the same problems but I couldnt find a solution. The weird thing is, I can use TOAD and SQLDetective to login to other databases without any issues. It seems to be this one specific database.
    My database is an 11g database on a linux box. I have 9i and 10g clients installed on my machine. The all my apps use the tnsnames from the 9i home on my machine.
    Any help on this would be greatly appreciated. Thanks.
    Rgs,
    Rob
    Edited by: rgilligan on 16-Apr-2010 02:11

    Hello, if it is 11g, look at the parameter sec_case_sensitive_logon. This parameter defaults to true, which makes the password case sensitive. Some tools/apps do a UPPER or LOWER on the password and so this may the reason for the error
    Henner

  • OCI ORA-01017: invalid username/password;logon denied

    I am attempting to connect to the database through OCI, and am receiving this error:
    OCI ORA-01017: invalid username/password;logon denied
    I know the username and password I am using is correct. Is there some setting in the init.ora file that needs to be configured to logon through OCI?
    Please Advise
    Thanks,
    Mike

    The Entreprise manager agent trace file (emagent.trc)
    contains following error. Any idea what and where to
    fix this?
    2007-12-31 02:21:57 Thread-316441 WARN vpxoci: OCI
    Error -- ErrorCode(1017): ORA-01017: invalid
    username/password; logon denied
    SQL = "
    CISessionBegin"...
    LOGIN =
    ods/<PW>@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL
    =TCP)(HOST=longines)(PORT=1521)))(CONNECT_DATA=(SERVIC
    E_NAME=iasdb.com)))
    2007-12-31 02:21:57 Thread-316441 ERROR vpxoci:
    ORA-01017: invalid username/password; logon denied
    2007-12-31 02:21:57 Thread-316441 WARN vpxoci: Login
    0x1587ba8 failed, error=ORA-01017: invalid
    username/password; logon denied
    2007-12-31 02:21:57 Thread-316441 ERROR engine:
    [oracle_ldap,iasdb.longines.com_LDAP,OIDserverSecRefSu
    LoginSuccCC] : nmeegd_GetMetricData failed :
    ORA-01017: invalid username/password; logon denied
    ThanksGo to the agent setup pages, update the Metric Collection settings for that target.

  • Oracle ESSO, Logon Manager Console couldn't connect to repository ORA-01017

    I installed Logon Manager Console on my Windows XP SP3 and try to connect to repository (Oracle DB 11g) with instanse name:
    Provider=OraOLEDB.Oracle;Data Source=MYDB;User Id=user;Password=password;
    Repository type: Oracle Database
    And get following error: ORA-01017: invalid username/password; logon denied
    But i can connect to database with sql developer. Same DB, user and password
    Please help, what i'm doing wrong?
    Edited by: LITBe on Sep 2, 2010 4:25 AM

    Update:
    If I attempt to connect with instanse name:
    Provider=OraOLEDB.Oracle;Data Source=myOESSO;User ID=system;Password=oracle;Integrated Security=no;
    Repository type: Oracle Database
    I get another error: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
    If
    instanse name: Provider=OraOLEDB.Oracle;Data Source=myOESSO;User ID=system;Password=oracle;
    Repository type: Generic Database
    I get another error: ORA-00942: table or view does not exist
    ORA-00942: table or view does not exist
    Maybe this help someone to understand what happening because i don't understand...

  • ORA-01017: invalid username/password; logon denied While R12 upgrade

    We are in the middle of applying the patch u6678700 - to upgrade applications 115102 to R12 . We face the following errors :
    There are now 48839 jobs remaining (current phase=A197):
    60 running, 9011 ready to run and 39768 waiting.
    Assigned: file 2399504a.sql on worker 61 for product ar username AR.
    Time is: Sun Jul 14 2013 23:28:40
    Assigned: file arbpauptmf.sql on worker 62 for product ar username AR.
    Time is: Sun Jul 14 2013 23:28:40
    Connecting to AR......Unable to connect.
    AutoPatch error:
    The following ORACLE error:
    ORA-01017: invalid username/password; logon denied
    occurred while executing the SQL statement:
    CONNECT AR/*****
    AutoPatch error:
    Error while evaluating "Check Object"
    Telling workers to quit...
    Password has been changed for the AR user using FNDCPASS , but when we restart the patch , we still get the same error . Please suggest
    Thanks
    Ashish

    Password has been changed for the AR user using FNDCPASS , but when we restart the patch , we still get the same error . Please suggest
    Can you connect via sqlplus using the new password? -- sqlplus ar/<ar new password>
    If yes, then run the script that failed manually via sqlplus and make sure it runs successfully then skip the failed worker via adctrl.
    Thanks,
    Hussein

  • ORA-01017: invalid username/password; logon denied from wallet

    Hi,
    i am getting logon denied error whille using wallet
    OS : windows 7
    Client Version :10.2.0.3
    C:\>sqlplus /@ding
    SQL*Plus: Release 10.2.0.3.0 - Production on Tue Mar 13 20:21:55 2012
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Enter user-name:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
    C:\>
    C:\>sqlplus system/manager@ding
    SQL*Plus: Release 10.2.0.3.0 - Production on Tue Mar 13 20:22:17 2012
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    WELCOME TO VM6 SYSTEM@DING
    SYSTEM@ding> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    C:\>sqlplus -version
    SQL*Plus: Release 10.2.0.3.0 - Production

    You need to connect using sysdba privilege
    Example
    sqlplus /@ding as sysdba

Maybe you are looking for