Golden Gate 11: cross platform replication

hello,
wonder if there are any cross platform (major) issues for establishing a two way  replication between Sparc Solarix 5.10 to x86 Linux based hosts ?
RDBMS versions are same or 11.2 vs 12.1
We are planing to use 12C gg on a new installs.
thank you

Hi,
    It would be better to ask this question in the GoldenGate community forum -
GoldenGate
or if you have access to My Oracle Support in the MOS forum -
GoldenGate, Streams and Distributed Database (MO
Regards,
Mike

Similar Messages

  • Golden Gate SQL Server Replication

    Hello Friends..
    I need your help in getting some information about Golden Gate SQL Server replication. Could you guys please help me in finding an answers on how a highly transactional sql server does with clustering and replication ? How long does it take to get replica online to users ? Is there any good reading material about Golden gate sql replication? Please help

    Documentation is always a nice place to start reading:
    http://www.oracle.com/technetwork/middleware/goldengate/documentation/index.html
    Regarding replication, please take into account that DDL replication is only supported between oracle databases.
    As for your main question, it is all based on the configuration you use. If you have much going on on the source you might add replicats to process the workload in parallel
    Greetings,
    NK

  • Golden Gate Sequence Value replication?

    Hi all,
    I have searched the web, and read the Golden Gate documentation but I've found mixed answers.
    I'm just trying to ascertain for certain whether it's possible to automatically replicate sequence values in a bi-directional configuration. Both databases will be identical and both will be 11gR2 with the latest version of GG.
    If it is not possible to automatically increment sequences in a bi-directional configuration, what are the best practices for maintaing them?
    One option is the alternate sequences on each database, one with even values (for example) and one with odd values, but this requires deployment of new sequences on both databases, something we were hoping would be taken care of by the replication. (yes the sequence creation can be taken care of but the value is not incremented on the target database).
    another way that we thought of off the top of our heads is to have an on insert trigger (we only use sequences to generate surrogate keys) which will select nextval from the target database via a db link, but this seems somewhat cumbersome.
    What is best practice?

    Use sequence parameter... here is from Golden gate document:
    SEQUENCE
    Valid for Extract
    Use the SEQUENCE parameter to extract sequence values from the transaction log forpropagation to a GoldenGate trail and delivery to another database. Currently, GoldenGate supports sequences for the Oracle database.
    NOTE DDL support for sequences (CREATE, ALTER, DROP, RENAME) is compatible with, but not required for, replicating sequence values. To replicate just sequence values, you do not need to install the GoldenGate DDL support environment. You can just use the SEQUENCE parameter.
    GoldenGate ensures that the values of a target sequence are:
    ● higher than the source values if the increment interval is positive
    ● lower than the source values if the increment interval is negative
    Depending on the increment direction, Replicat applies one of the following formulas as a test when it performs an insert:
    source_highwater_value + (source_cache_size * source_increment_size * source_RAC_nodes) <= target_highwater_value
    Or...
    source_highwater_value + (source_cache_size * source_increment_size * source_RAC_nodes) >= target_highwater_value
    If the formula evaluates to FALSE, the target sequence is updated to be higher than the source value (if sequences are incremented) or lower than the source value (if sequences are decremented). The target must always be ahead of, or equal to, the expression in the parentheses in the formula. For example, if the source highwater value is 40, and CACHE is 20, and the source INCREMENTBY value is 1, and there are two source RAC nodes, the target highwater value should be at least 80:
    40 + (20*1*2) <80
    If the target highwater value is less than 80, GoldenGate updates the sequence to increase the highwater value, so that the target remains ahead of the source. To get the current highwater value, perform this query:
    SELECT last_number FROM all_sequences WHERE sequence_owner=upper('SEQUENCEOWNER') AND sequence_name=upper('SEQUENCENAME');

  • Sequence Error During Golden Gate Replication! Need Hints

    Dear All,
    I am replicating 2 databases one way, from production to standby using golden gate.
    Both databases are 11gR2 and on Linux.
    Replication runs smooth for couple of days and then ends up with this error:
    ERROR OGG-01296 Error mapping from ETISLBILLING.PAR_TBLPARNODEIDENTI to ETISLBILLING.PAR_TBLPARNODEIDENTI.
    Parent Ket Not Found ETISLBILLING.FK_PARTNERNODE_IDENT
    Trigger : ETISLBILLING.TRG_PAR_TBLPARTNERNODE Sequence : SEQ_PAR_TblPartnerIdenti
    ORA-20000: Sequence value cannot be changed.
    Main error is that value of sequence that is executed during the after insert trigger, does not change and trigger raise error hence the replication process is stopped.
    I am just worried that the same triggers and sequences are executed successfully on production database and standby database has is exactly the same as production.
    Is there some special treatment for sequences?
    Kindly share your experience and give tips to handle this situation
    Regards, Imran

    Hi,
    Hope this helps
    Jan S.
    FROM MOS: OGG Replicat Encounters OGG-01396 OGG-00869 ORA-01400 on Primary Key Column [ID 1308824.1]
    Cause
    ==================
    from the replicat report, first this error occurs:
    WARNING OGG-01396 A complete after image is not available
    in <schema.table> at rba 123456 in file ./dirdat/yyy, while inserting
    a row into <schema.table> due to missing target row for a key update operation.
    NOCOMPRESSUPDATES or FETCHOPTIONS FETCHPKUPDATECOLS may be specified in the
    EXTRACT parameter file to include a complete image for key update operations.
    The offending record is a primary key update, ... probably the key
    <to be found at the mentioned rba 123456 in file ./dirdat/yyy> is not available on target
    if the PK is not available at target side, then this error is expected, because HANDLECOLLISIONS turns the PK update into an insert as result of no target record to update.
    The problem is that the source PK update record doesn't contain all the after image columns. That is also expected because the update record is intended to only update the affected columns.
    As a workaround use FETCHOPTIONS FETCHPKUPDATECOLS on the capture/extract side to get all the after images of the record so that when a HANDLECOLLISIONS logic kicks in, it will be
    able to successfully convert the original PK update into insert with all the after image present.
    Solution
    ==================
    First check the affected trail file yyy at RBA 123456 with logdump to verify, if the PK update does not have the complete key information as described.
    If that is the case and the target table does not have the corresponding PK entry, this issue is hit. Otherwise it is something different.
    As a workaround use
    ==================
    FETCHOPTIONS FETCHPKUPDATECOLS on the capture/extract side to get all the after images of
    the record so that when a HANDLECOLLISIONS logic kicks in, it will be
    able to successfully convert the original PK update into insert with all the after image present.

  • Sequence Error During Golden Gate Replication!

    Dear All,
    I am replicating 2 databases one way, from production to standby using golden gate.
    Both databases are 11gR2 and on Linux.
    Replication runs smooth for couple of days and then ends up with this error:
    ERROR OGG-01296 Error mapping from ETISLBILLING.PAR_TBLPARNODEIDENTI to ETISLBILLING.PAR_TBLPARNODEIDENTI.
    Parent Ket Not Found ETISLBILLING.FK_PARTNERNODE_IDENT
    Trigger : ETISLBILLING.TRG_PAR_TBLPARTNERNODE Sequence : SEQ_PAR_TblPartnerIdenti
    ORA-20000: Sequence value cannot be changed.
    Main error is that value of sequence that is executed during the after insert trigger, does not change and trigger raise error hence the replication process is stopped.
    I am just worried that the same triggers and sequences are executed successfully on production database and standby database has is exactly the same as production.
    Is there some special treatment for sequences?
    Kindly help on this.
    Regards, Imran

    Pl do not post duplicates - Sequence Error During Golden Gate Replication! Need Hints

  • Golden Gate Replication

    Hi
    Can someone please tell how does the product (Golden Gate) handles the structural differences between different DBMS when distributing data?
    Any insight ?

    For statement of direction please see:
    http://www.oracle.com/technetwork/database/features/availability/312833-129009.pdf
    http://www.oracle.com/us/corporate/press/022092 (links at the bottom of page)
    As Dominik stated, GoldenGate will eventually replace both ODI CDC and Streams.
    Regards,
    -joe

  • Golden Gate replication query

    Hi,
    Is it possible to transform one row from source database into multiple rows in target database using Golden Gate?
    Thanks,
    Deepak

    Another way is using SQLEXEC:
    Suppose we have:
    at source db -
    create table test.wide (id number primary key, COL1 VARCHAR2(25), COL2 VARCHAR2(25), COL3 VARCHAR2(25));at target db -
    create table test.thin (id number primary key, col_name VARCHAR2(10), col_value VARCHAR2(25));then in replicat params -
    --Replicat group --
    REPLICAT REP2
    --source and target definitions
    --ASSUMETARGETDEFS
    SOURCEDEFS /u01/app/oracle/product/11.1.1.1.2ogg411g/dirdef/sourcedef
    --target database login --
    USERID ogg, PASSWORD ogg
    --file for dicarded transaction --
    DISCARDFILE /u01/app/oracle/product/11.1.1.1.2ogg411g/discard/rep1_discard.txt, APPEND, MEGABYTES 10
    --ddl support
    DDL
    --Specify table mapping ---
    MAP test.t1, TARGET test.t11g, COLMAP (USEDEFAULTS, VCH=@STRNUM(NM));
    MAP test.CITIES, TARGET test.CITIES;
    MAP test.COUNTRIES, TARGET test.COUNTRIES;
    MAP test.LOBEXP, TARGET test.LOBEXP;
    MAP test.wide, TARGET test.thin, COLMAP (USEDEFAULTS, COL_NAME="COL1", COL_VALUE=COL1), &
    SQLEXEC (ID COL2PROC, QUERY "insert into test.thin values (:id_params+1,'COL2',:value_param)", PARAMS (id_params = id, value_param = COL2)), &
    SQLEXEC (ID COL3PROC, QUERY "insert into test.thin values (:id_params+2,'COL3',:value_param)", PARAMS (id_params = id, value_param = COL3)), &
    SQLEXEC (ID COL_DELE, ON DELETE, QUERY "delete from test.thin where id in (:id_params+1,:id_params+2)", PARAMS (id_params = id)), &
    SQLEXEC (ID COL2UPDA, ON UPDATE, QUERY "update test.thin set col_value=:value_params where 1=:is_updated and id=:id_params+1", PARAMS (is_updated = @IF(@COLTEST(COL2,MISSING,
    INVALID),0,1), value_params = COL2, id_params = id)), &
    SQLEXEC (ID COL3UPDA, ON UPDATE, QUERY "update test.thin set col_value=:value_params where 1=:is_updated and id=:id_params+2", PARAMS (is_updated = @IF(@COLTEST(COL3,MISSING,
    INVALID),0,1), value_params = COL3, id_params = id));
    --MAP test.account, TARGET test.thin, COLMAP(USEDEFAULTS, COL_NAME='COL1', COL_VALUE=COL1);
    DDLERROR 24344 DISCARD;An extractor params would be -
    --extract group--
    EXTRACT ext1
    --connection to database--
    USERID ogg, PASSWORD xxx
    EXTTRAIL /u01/app/oracle/product/11.1.1.12ogg/dirdat/ss
    SEQUENCE test.*
    --DDL support
    DDL INCLUDE MAPPED OBJNAME test.*
    --DML
    TABLE test.*;Works fine - just tested.
    Edited by: Artem Khisamiev on 15.10.2012 4:09
    Add DELETE and UPDATE DML improvements to replicat params.

  • Oracle 9.2.0.8 Dataguard on Cross platform

    Dear Team,
    We need your help.
    we have primary database and two physical standby databases on RHEL4 (oracle 9.2.0.8)
    we need to add one more standby but the os is HP-UNIX(oracle 9.2.0.8) this resides on customer environment they use it for reporting
    could you please advice us any technologies which helps to accomplish this.
    Thanks,
    Aj

    Hi
    Oracle Streams would be a good candidate technology for keeping a reporting database up to date on a different platform, though you'd better have a well designed schema and not use fancy datatypes! Advanced Replication would probably also work. There are a number of third party tools, for example the Golden gate product range as well as the whole Oracle warehousing build tools that are designed for this type of task. What you won't find is a cheap solution.
    regards
    Niall Litchfield
    http://www.orawin.info/

  • Difference between Oracle Transparent Gateway and Golden Gate

    Hi Guys
    Could you please clear the confusion, What is the difference between Transparent gateway and Golden gate? are they same? In which situation which one to use?
    Thanks in advance

    user8896122 wrote:
    >
    Satish Kandi said :
    Transparent gateways are a cross-RDBMS "querying" mechanism
    >
    So you mean if an application (designed to work with oracle only ) can actually access SQL server or DB2 without any modificaton. If i am having transparent gateway on top of DB2 or SQL server ??You caught me. I should have used different words.
    No. TG is a mechanism to query other RDBMS from Oracle. GG is a mechanism to have replication between any RDBMS.

  • Dataguard vs Golden gate

    Dear All,
    I want to know the difference between Dataguard , Active dataguard and Golden gate.
    Scenario: I want to replicate only between oracle 11g database.
    Bala:)

    Hi Bala,
    This is pretty high level but I hope this helps:
    * Data Guard
    - Ships redo logs from a source Oracle DB to target Oracle DBs (uni-directional)
    - Targets databases are not accessible for user activity
    - Both source and targets must be on the same OS platform and Oracle version
    - There is no license for this feature though of course all software installations must be licensed
    - Primary use case is for DR or standby
    * Active Data Guard - Similar as Data Guard except:
    - Ships redo logs from a source Oracle DB to target Oracle DBs (uni-directional)
    - Targets databases are accessible for querying by end users
    - Both source and targets must be on the same OS platform and Oracle version
    - Is a licensed feature ($11,500 per core list price)
    - Primary use cases are query offloading combined with DR or standby
    - Is for 11g+ databases
    * Goldengate
    - Reads redo logs and utilizes its own transaction logs for distribution to target systems
    - Heterogeneous (i.e. source and targets can be different databases such as Oracle and MySQL, platforms, and versions) and bi-directional replication
    - Replication can also be done from non-database systems such as JMS queues
    - Can also do data light transformations
    - Is a licensed feature ($17,500 per core list price), though the license also includes Active Data Guard
    - Primary use cases include process offloading, data distribution, useable standby, DR, near zero downtime migrations/patching/upgrading, replication, CDC, light weight data transformations

  • Unable to start the golden gate director service

    I installed the golden gate director on my PC. after the installation, each time I tried to start the service I had the following error in the log:
    ####<Mar 14, 2015 11:47:04 PM EDT> <Info> <Security> <Doreus-PC> <> <main> <> <> <> <1426391224856> <BEA-090905> <Disabling the CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true.>
    ####<Mar 14, 2015 11:47:05 PM EDT> <Info> <Security> <Doreus-PC> <> <main> <> <> <> <1426391225277> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG128 to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true.>
    ####<Mar 14, 2015 11:47:07 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <> <Thread-4> <> <> <> <1426391227149> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 24.51-b03 from Oracle Corporation.>
    ####<Mar 14, 2015 11:47:08 PM EDT> <Info> <Management> <Doreus-PC> <> <Thread-3> <> <> <> <1426391228725> <BEA-141107> <Version: WebLogic Server 12.1.3.0.0  Wed May 21 18:53:34 PDT 2014 1604337 >
    ####<Mar 14, 2015 11:47:24 PM EDT> <Notice> <WebLogicServer> <Doreus-PC> <> <Thread-3> <> <> <> <1426391244045> <BEA-000365> <Server state changed to STARTING.>
    ####<Mar 14, 2015 11:47:24 PM EDT> <Info> <WorkManager> <Doreus-PC> <> <Thread-3> <> <> <> <1426391244076> <BEA-002900> <Initializing self-tuning thread pool.>
    ####<Mar 14, 2015 11:47:24 PM EDT> <Info> <WorkManager> <Doreus-PC> <> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1426391244201> <BEA-002942> <CMM memory level becomes 0. Setting standby thread pool size to 256.>
    ####<Mar 14, 2015 11:47:24 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <> <Thread-3> <> <> <> <1426391244295> <BEA-000214> <WebLogic Server "localhost" version:
    WebLogic Server 12.1.3.0.0  Wed May 21 18:53:34 PDT 2014 1604337  Copyright (c) 1995,2014, Oracle and/or its affiliates. All rights reserved.>
    ####<Mar 14, 2015 11:47:28 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391248990> <BEA-002622> <The protocol "t3" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "http" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "https" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249006> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249021> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249021> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249021> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249037> <BEA-002622> <The protocol "admin" is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-6> <> <> <> <1426391249037> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <RJVM> <Doreus-PC> <> <Thread-4> <> <> <> <1426391249068> <BEA-000570> <Network Configuration for Channel "localhost"
    Listen Address         :7001
    Public Address         N/A
    Http Enabled         true
    Tunneling Enabled     false
    Outbound Enabled     false
    Admin Traffic Enabled     true ResolveDNSName Enabled     false>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Debug> <RJVM> <Doreus-PC> <> <Thread-4> <> <> <> <1426391249068> <BEA-000571> <Network Configuration Detail for Channel "localhost"
    Channel Weight         50
    Accept Backlog         300
    Login Timeout         5000ms
    Max Message Size     10000000
    Message Timeout     60s
    Idle Timeout         65s
    Tunneling Timeout     40s
    Tunneling Ping         45s>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-4> <> <> <> <1426391249162> <BEA-002609> <Channel Service initialized.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Notice> <Log Management> <Doreus-PC> <> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1426391249677> <BEA-170019> <The server log file C:\Program Files\GG_Directorgg-director\domain\servers\localhost\logs\localhost.log is opened. All server side log events will be written to this file.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Log Management> <Doreus-PC> <> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1426391249708> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<Mar 14, 2015 11:47:29 PM EDT> <Info> <Log Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391249770> <BEA-170025> <Initialized Domain Logging. Domain log events will be written to C:\Program Files\GG_Directorgg-director\domain\servers\localhost\logs/domain.log.>
    ####<Mar 14, 2015 11:47:30 PM EDT> <Info> <IIOP> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391250113> <BEA-002014> <IIOP subsystem enabled.>
    ####<Mar 14, 2015 11:47:30 PM EDT> <Info> <Diagnostics> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391250145> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<Mar 14, 2015 11:47:31 PM EDT> <Info> <Store> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391251252> <BEA-280008> <Opening the persistent file store "WLS_DIAGNOSTICS" for recovery: directory=C:\Program Files\GG_Directorgg-director\domain\servers\localhost\data\store\diagnostics requestedWritePolicy="Disabled" fileLockingEnabled=true driver="wlfileio3".>
    ####<Mar 14, 2015 11:47:31 PM EDT> <Info> <Store> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391251268> <BEA-280009> <The persistent file store "WLS_DIAGNOSTICS" (8822e5ed-c5e8-462b-8828-54a740159ca9) has been opened: blockSize=512 actualWritePolicy="Disabled(single-handle-non-direct)" explicitIOEnforced=false records=0.>
    ####<Mar 14, 2015 11:47:31 PM EDT> <Info> <Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391251673> <BEA-141278> <Java entropy configuration is: System property "java.security.egd= null"; JRE's java.security file property "securerandom.source= file:/dev/urandom"; Blocking Config= false; JDK version= 1.7.0_51; Operating System= Windows 7.>
    ####<Mar 14, 2015 11:47:31 PM EDT> <Info> <Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391251673> <BEA-141280> <Detected NON-BLOCKING java entropy configuration. This setting will provide the best performance on machines with few sources of entropy, but is less secure than a blocking entropy configuration.>
    ####<Mar 14, 2015 11:47:31 PM EDT> <Info> <Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391251673> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = ;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\lib\tools.jar;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\net.sf.antcontrib_1.1.0.0_1-0b3\lib\ant-contrib.jar;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\modules\features\oracle.wls.common.nodemanager_2.0.0.0.jar;;;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\xqrl.jar;;C:\PROGRA~1\GG_DIR~1\domain\\config;log4j.properties;;./;
    java.class.version = 51.0
    java.endorsed.dirs = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\endorsed;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed
    java.ext.dirs = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\ext;C:\windows\Sun\Java\lib\ext
    java.home = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre
    java.io.tmpdir = C:\Users\Doreus\AppData\Local\Temp\
    java.library.path = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\windows\Sun\Java\bin;C:\windows\system32;C:\windows;;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\bin;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\org.apache.ant_1.9.2\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\modules\ORGAPA~1.2\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\app\Doreus\product\112~1.0\dbhome_1\BIN;C:\app\Doreus\product\112~1.0\grid\BIN;C:\PROGRA~2\COMMON~1\NETSAR~1;C:\PROGRA~1\COMMON~1\MICROS~1\WINDOW~1;C:\PROGRA~2\COMMON~1\MICROS~1\WINDOW~1;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WINDOW~1\v1.0\;C:\PROGRA~2\WIC4A1~1\Shared;C:\PROGRA~2\ATITEC~1\ATI.ACE\CORE-S~1;C:\devlop\APACHE~1.5\bin;C:\PROGRA~2\QUICKT~1\QTSystem\;C:\PROGRA~1\Java\JDK17~1.0_7\bin;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32\oci920_8;.
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.7.0_51-b13
    java.security.policy = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Oracle Corporation
    java.specification.version = 1.7
    java.vendor = Oracle Corporation
    java.vendor.url = http://java.oracle.com/
    java.vendor.url.bug = http://bugreport.sun.com/bugreport/
    java.version = 1.7.0_51
    java.vm.info = mixed mode
    java.vm.name = Java HotSpot(TM) Server VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Oracle Corporation
    java.vm.specification.version = 1.7
    java.vm.vendor = Oracle Corporation
    java.vm.version = 24.51-b03
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    log4j.configuration = log4j.properties
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    os.arch = x86
    os.name = Windows 7
    os.version = 6.1
    path.separator = ;
    platform.home = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver
    sun.arch.data.model = 32
    sun.boot.class.path = C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed\javax-xml-bind.jar;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed\javax-xml-ws.jar;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed\jsr250-api.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\resources.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\rt.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\sunrsasign.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\jsse.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\jce.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\charsets.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\jfr.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\classes
    sun.boot.library.path = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin
    sun.cpu.endian = little
    sun.desktop = windows
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.command = weblogic.Server
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = Cp1252
    sun.management.compiler = HotSpot Tiered Compilers
    sun.os.patch.level = Service Pack 1
    user.country = US
    user.dir = C:\Program Files\GG_Directorgg-director\domain
    user.home = C:\Users\Doreus
    user.language = en
    user.name = Doreus
    user.timezone = America/New_York
    vde.home = C:\Program Files\GG_Directorgg-director\domain\servers\localhost\data\ldap
    weblogic.Name = localhost
    weblogic.home = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server
    weblogic.management.discover = true
    wls.home = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server
    .>
    ####<Mar 14, 2015 11:47:32 PM EDT> <Info> <Socket> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391252322> <BEA-000436> <Allocating 3 reader threads.>
    ####<Mar 14, 2015 11:47:32 PM EDT> <Info> <Socket> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391252400> <BEA-000446> <Native I/O enabled.>
    ####<Mar 14, 2015 11:47:32 PM EDT> <Info> <XML> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391252432> <BEA-130036> <Initializing XMLRegistry>
    ####<Mar 14, 2015 11:47:34 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391254072> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Mar 14, 2015 11:47:34 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391254852> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_JcbGU+osORALn21oxofI6LlSjKM=>
    ####<Mar 14, 2015 11:47:37 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391257800> <BEA-000000> <BootStrapServiceImpl.loadLDIFTemplate - Did not find C:\Program Files\GG_Directorgg-director\domain\servers\localhost\data\ldap\XACMLRoleMapperggRealmInit.initialized, will load full LDIFT.>
    ####<Mar 14, 2015 11:47:37 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391257831> <BEA-090074> <Initializing RoleMapper provider using LDIF template file C:\Program Files\GG_Directorgg-director\domain\security\XACMLRoleMapperInit.ldift.>
    ####<Mar 14, 2015 11:47:38 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391258596> <BEA-090075> <The RoleMapper provider has had its LDIF information loaded from: C:\Program Files\GG_Directorgg-director\domain\security\XACMLRoleMapperInit.ldift>
    ####<Mar 14, 2015 11:47:39 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391259532> <BEA-000000> <BootStrapServiceImpl.loadLDIFTemplate - Did not find C:\Program Files\GG_Directorgg-director\domain\servers\localhost\data\ldap\XACMLAuthorizerggRealmInit.initialized, will load full LDIFT.>
    ####<Mar 14, 2015 11:47:39 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391259532> <BEA-090074> <Initializing Authorizer provider using LDIF template file C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\XACMLAuthorizerInit.ldift.>
    ####<Mar 14, 2015 11:47:39 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391259890> <BEA-090075> <The Authorizer provider has had its LDIF information loaded from: C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\XACMLAuthorizerInit.ldift>
    ####<Mar 14, 2015 11:47:40 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391260702> <BEA-000000> <BootStrapServiceImpl.loadLDIFTemplate - Did not find C:\Program Files\GG_Directorgg-director\domain\servers\localhost\data\ldap\DefaultCredentialMapperggRealmInit.initialized, will load full LDIFT.>
    ####<Mar 14, 2015 11:47:40 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391260702> <BEA-090827> <LDIF template file C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\DefaultCredentialMapperInit.ldift was empty. The WebLogic provider CredentialMapper has been bootstrapped but has not been initialized with any LDIF data.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391261029> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server localhost for security realm ggRealm.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Notice> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391261029> <BEA-090082> <Security initializing using security realm ggRealm.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Critical> <Security> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391261326> <BEA-090402> <Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Critical> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426391261388> <BEA-000386> <Server subsystem failed. Reason: A MultiException has 8 exceptions.  They are:
    1. weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    2. java.lang.IllegalStateException: Unable to perform operation: post construct on weblogic.security.SecurityService
    3. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.jndi.internal.RemoteNamingService errors were found
    4. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.jndi.internal.RemoteNamingService
    5. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.rmi.cluster.RemoteBinderFactoryService errors were found
    6. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.rmi.cluster.RemoteBinderFactoryService
    7. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.cluster.ClusterServiceActivator errors were found
    8. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.cluster.ClusterServiceActivator
    A MultiException has 8 exceptions.  They are:
    1. weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    2. java.lang.IllegalStateException: Unable to perform operation: post construct on weblogic.security.SecurityService
    3. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.jndi.internal.RemoteNamingService errors were found
    4. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.jndi.internal.RemoteNamingService
    5. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.rmi.cluster.RemoteBinderFactoryService errors were found
    6. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.rmi.cluster.RemoteBinderFactoryService
    7. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.cluster.ClusterServiceActivator errors were found
    8. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.cluster.ClusterServiceActivator
        at org.jvnet.hk2.internal.Collector.throwIfErrors(Collector.java:88)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:269)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    Caused By: weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:1017)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.postInitialize(CommonSecurityServiceManagerDelegateImpl.java:1131)
        at weblogic.security.service.SecurityServiceManager.postInitialize(SecurityServiceManager.java:943)
        at weblogic.security.SecurityService.start(SecurityService.java:159)
        at weblogic.server.AbstractServerService.postConstruct(AbstractServerService.java:78)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.glassfish.hk2.utilities.reflection.ReflectionHelper.invoke(ReflectionHelper.java:1017)
        at org.jvnet.hk2.internal.ClazzCreator.postConstructMe(ClazzCreator.java:388)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:430)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User weblogic denied
        at weblogic.security.providers.authentication.shared.DBMSAtnLoginModuleImpl.login(DBMSAtnLoginModuleImpl.java:284)
        at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at javax.security.auth.login.LoginContext.invoke(LoginContext.java:762)
        at javax.security.auth.login.LoginContext.access$000(LoginContext.java:203)
        at javax.security.auth.login.LoginContext$4.run(LoginContext.java:690)
        at javax.security.auth.login.LoginContext$4.run(LoginContext.java:688)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:687)
        at javax.security.auth.login.LoginContext.login(LoginContext.java:595)
        at com.bea.common.security.internal.service.JAASLoginServiceImpl.login(JAASLoginServiceImpl.java:113)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:64)
        at com.sun.proxy.$Proxy32.login(Unknown Source)
        at weblogic.security.service.internal.WLSJAASLoginServiceImpl$ServiceImpl.login(WLSJAASLoginServiceImpl.java:89)
        at com.bea.common.security.internal.service.JAASAuthenticationServiceImpl.authenticate(JAASAuthenticationServiceImpl.java:82)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:64)
        at com.sun.proxy.$Proxy52.authenticate(Unknown Source)
        at weblogic.security.service.WLSJAASAuthenticationServiceWrapper.authenticate(WLSJAASAuthenticationServiceWrapper.java:40)
        at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:342)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:987)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.postInitialize(CommonSecurityServiceManagerDelegateImpl.java:1131)
        at weblogic.security.service.SecurityServiceManager.postInitialize(SecurityServiceManager.java:943)
        at weblogic.security.SecurityService.start(SecurityService.java:159)
        at weblogic.server.AbstractServerService.postConstruct(AbstractServerService.java:78)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.glassfish.hk2.utilities.reflection.ReflectionHelper.invoke(ReflectionHelper.java:1017)
        at org.jvnet.hk2.internal.ClazzCreator.postConstructMe(ClazzCreator.java:388)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:430)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    >
    ####<Mar 14, 2015 11:47:41 PM EDT> <Notice> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426391261513> <BEA-000365> <Server state changed to FAILED.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Error> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426391261513> <BEA-000383> <A critical service failed. The server will shut itself down.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Notice> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426391261528> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426391261528> <BEA-000236> <Stopping execute threads.>
    ####<Mar 14, 2015 11:47:41 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426391261528> <BEA-000238> <Shutdown has completed.>
    I followed the process indicate in the link ORACLE-BASE - Reset the AdminServer Password in WebLogic 11g and 12c unfortunately I still have the same error.
    can somebody help me please.
    Thank you

    Hi,
    I follow all the steps Recover WebLogic admin password - weblogicexpert to reet the password the user weblogic and edit the boot.properties I still cannot start the weblogic service.
    here are the commands:
    1- java weblogic.security.utils.AdminAccount weblogic password123 .
    in my boot.properties I have
    username=weblogic
    password=welcome1
    I still have:
    ####<Mar 17, 2015 2:06:45 PM EDT> <Info> <Security> <Doreus-PC> <> <main> <> <> <> <1426615605777> <BEA-090905> <Disabling the CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true.>
    ####<Mar 17, 2015 2:06:46 PM EDT> <Info> <Security> <Doreus-PC> <> <main> <> <> <> <1426615606198> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG128 to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true.>
    ####<Mar 17, 2015 2:06:48 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <> <Thread-4> <> <> <> <1426615608148> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 24.51-b03 from Oracle Corporation.>
    ####<Mar 17, 2015 2:06:50 PM EDT> <Info> <Management> <Doreus-PC> <> <Thread-4> <> <> <> <1426615610473> <BEA-141107> <Version: WebLogic Server 12.1.3.0.0  Wed May 21 18:53:34 PDT 2014 1604337 >
    ####<Mar 17, 2015 2:07:06 PM EDT> <Notice> <WebLogicServer> <Doreus-PC> <> <Thread-5> <> <> <> <1426615626447> <BEA-000365> <Server state changed to STARTING.>
    ####<Mar 17, 2015 2:07:06 PM EDT> <Info> <WorkManager> <Doreus-PC> <> <Thread-5> <> <> <> <1426615626494> <BEA-002900> <Initializing self-tuning thread pool.>
    ####<Mar 17, 2015 2:07:06 PM EDT> <Info> <WorkManager> <Doreus-PC> <> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1426615626666> <BEA-002942> <CMM memory level becomes 0. Setting standby thread pool size to 256.>
    ####<Mar 17, 2015 2:07:06 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <> <Thread-5> <> <> <> <1426615626744> <BEA-000214> <WebLogic Server "localhost" version:
    WebLogic Server 12.1.3.0.0  Wed May 21 18:53:34 PDT 2014 1604337  Copyright (c) 1995,2014, Oracle and/or its affiliates. All rights reserved.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "t3" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "http" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "https" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631300> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631315> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631315> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631331> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631331> <BEA-002622> <The protocol "admin" is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-5> <> <> <> <1426615631331> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <RJVM> <Doreus-PC> <> <Thread-7> <> <> <> <1426615631362> <BEA-000570> <Network Configuration for Channel "localhost"
    Listen Address         :7004
    Public Address         N/A
    Http Enabled         true
    Tunneling Enabled     false
    Outbound Enabled     false
    Admin Traffic Enabled     true ResolveDNSName Enabled     false>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Debug> <RJVM> <Doreus-PC> <> <Thread-7> <> <> <> <1426615631362> <BEA-000571> <Network Configuration Detail for Channel "localhost"
    Channel Weight         50
    Accept Backlog         300
    Login Timeout         5000ms
    Max Message Size     10000000
    Message Timeout     60s
    Idle Timeout         65s
    Tunneling Timeout     40s
    Tunneling Ping         45s>
    ####<Mar 17, 2015 2:07:11 PM EDT> <Info> <Server> <Doreus-PC> <> <Thread-7> <> <> <> <1426615631471> <BEA-002609> <Channel Service initialized.>
    ####<Mar 17, 2015 2:07:12 PM EDT> <Notice> <Log Management> <Doreus-PC> <> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1426615632002> <BEA-170019> <The server log file C:\Oracle\Middleware\Oracle_Home\user_projects\GG_Directorgg-director\domain\servers\localhost\logs\localhost.log is opened. All server side log events will be written to this file.>
    ####<Mar 17, 2015 2:07:12 PM EDT> <Info> <Log Management> <Doreus-PC> <> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1426615632049> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<Mar 17, 2015 2:07:12 PM EDT> <Info> <Log Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615632220> <BEA-170025> <Initialized Domain Logging. Domain log events will be written to C:\Oracle\Middleware\Oracle_Home\user_projects\GG_Directorgg-director\domain\servers\localhost\logs/domain.log.>
    ####<Mar 17, 2015 2:07:12 PM EDT> <Info> <Diagnostics> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615632548> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<Mar 17, 2015 2:07:12 PM EDT> <Info> <IIOP> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615632704> <BEA-002014> <IIOP subsystem enabled.>
    ####<Mar 17, 2015 2:07:13 PM EDT> <Info> <Store> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615633702> <BEA-280008> <Opening the persistent file store "WLS_DIAGNOSTICS" for recovery: directory=C:\Oracle\Middleware\Oracle_Home\user_projects\GG_Directorgg-director\domain\servers\localhost\data\store\diagnostics requestedWritePolicy="Disabled" fileLockingEnabled=true driver="wlfileio3".>
    ####<Mar 17, 2015 2:07:13 PM EDT> <Info> <Store> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615633733> <BEA-280009> <The persistent file store "WLS_DIAGNOSTICS" (569e8065-ecbe-4388-8e3d-65fbc8d3bc75) has been opened: blockSize=512 actualWritePolicy="Disabled(single-handle-non-direct)" explicitIOEnforced=false records=0.>
    ####<Mar 17, 2015 2:07:14 PM EDT> <Info> <Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615634123> <BEA-141278> <Java entropy configuration is: System property "java.security.egd= null"; JRE's java.security file property "securerandom.source= file:/dev/urandom"; Blocking Config= false; JDK version= 1.7.0_51; Operating System= Windows 7.>
    ####<Mar 17, 2015 2:07:14 PM EDT> <Info> <Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615634123> <BEA-141280> <Detected NON-BLOCKING java entropy configuration. This setting will provide the best performance on machines with few sources of entropy, but is less secure than a blocking entropy configuration.>
    ####<Mar 17, 2015 2:07:14 PM EDT> <Info> <Management> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615634139> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = ;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\lib\tools.jar;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\net.sf.antcontrib_1.1.0.0_1-0b3\lib\ant-contrib.jar;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\modules\features\oracle.wls.common.nodemanager_2.0.0.0.jar;;;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\xqrl.jar;;C:\Oracle\MIDDLE~1\ORACLE~1\USER_P~1\GG_DIR~1\domain\\config;log4j.properties;;./;
    java.class.version = 51.0
    java.endorsed.dirs = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\endorsed;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed
    java.ext.dirs = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\ext;C:\windows\Sun\Java\lib\ext
    java.home = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre
    java.io.tmpdir = C:\Users\Doreus\AppData\Local\Temp\
    java.library.path = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\windows\Sun\Java\bin;C:\windows\system32;C:\windows;;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\bin;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\org.apache.ant_1.9.2\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\modules\ORGAPA~1.2\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\modules\ORGAPA~1.2\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\bin;C:\PROGRA~3\Oracle\Java\javapath;C:\app\Doreus\product\112~1.0\dbhome_1\BIN;C:\app\Doreus\product\112~1.0\grid\BIN;C:\PROGRA~2\COMMON~1\NETSAR~1;C:\PROGRA~1\COMMON~1\MICROS~1\WINDOW~1;C:\PROGRA~2\COMMON~1\MICROS~1\WINDOW~1;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WINDOW~1\v1.0\;C:\PROGRA~2\WIC4A1~1\Shared;C:\PROGRA~2\ATITEC~1\ATI.ACE\CORE-S~1;C:\devlop\APACHE~1.5\bin;C:\PROGRA~2\QUICKT~1\QTSystem\;C:\PROGRA~1\Java\JDK17~1.0_7\bin;C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\native\win\32\oci920_8;.
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.7.0_51-b13
    java.security.policy = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server\lib\weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Oracle Corporation
    java.specification.version = 1.7
    java.vendor = Oracle Corporation
    java.vendor.url = http://java.oracle.com/
    java.vendor.url.bug = http://bugreport.sun.com/bugreport/
    java.version = 1.7.0_51
    java.vm.info = mixed mode
    java.vm.name = Java HotSpot(TM) Server VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Oracle Corporation
    java.vm.specification.version = 1.7
    java.vm.vendor = Oracle Corporation
    java.vm.version = 24.51-b03
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    log4j.configuration = log4j.properties
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    os.arch = x86
    os.name = Windows 7
    os.version = 6.1
    path.separator = ;
    platform.home = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver
    sun.arch.data.model = 32
    sun.boot.class.path = C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed\javax-xml-bind.jar;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed\javax-xml-ws.jar;C:\Oracle\MIDDLE~1\ORACLE~1\oracle_common\modules\endorsed\jsr250-api.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\resources.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\rt.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\sunrsasign.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\jsse.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\jce.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\charsets.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\lib\jfr.jar;C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\classes
    sun.boot.library.path = C:\Oracle\MIDDLE~1\ORACLE~1\ORACLE~1\jdk\jre\bin
    sun.cpu.endian = little
    sun.desktop = windows
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.command = weblogic.Server
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = Cp1252
    sun.management.compiler = HotSpot Tiered Compilers
    sun.os.patch.level = Service Pack 1
    user.country = US
    user.dir = C:\Oracle\Middleware\Oracle_Home\user_projects\GG_Directorgg-director\domain
    user.home = C:\Users\Doreus
    user.language = en
    user.name = Doreus
    user.timezone = America/New_York
    vde.home = C:\Oracle\Middleware\Oracle_Home\user_projects\GG_Directorgg-director\domain\servers\localhost\data\ldap
    weblogic.Name = localhost
    weblogic.home = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server
    weblogic.management.discover = true
    wls.home = C:\Oracle\MIDDLE~1\ORACLE~1\wlserver\server
    .>
    ####<Mar 17, 2015 2:07:14 PM EDT> <Info> <XML> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615634689> <BEA-130036> <Initializing XMLRegistry>
    ####<Mar 17, 2015 2:07:14 PM EDT> <Info> <Socket> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615634752> <BEA-000436> <Allocating 3 reader threads.>
    ####<Mar 17, 2015 2:07:14 PM EDT> <Info> <Socket> <Doreus-PC> <localhost> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615634799> <BEA-000446> <Native I/O enabled.>
    ####<Mar 17, 2015 2:07:16 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615636702> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Mar 17, 2015 2:07:17 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615637529> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_1iNOTK213rH9DG7MIClGFUdTrEA=>
    ####<Mar 17, 2015 2:07:21 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615641070> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<Mar 17, 2015 2:07:22 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615642521> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<Mar 17, 2015 2:07:22 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615642786> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Info> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615643098> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server localhost for security realm ggRealm.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Notice> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615643098> <BEA-090082> <Security initializing using security realm ggRealm.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Critical> <Security> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615643363> <BEA-090402> <Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Critical> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426615643410> <BEA-000386> <Server subsystem failed. Reason: A MultiException has 6 exceptions.  They are:
    1. weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    2. java.lang.IllegalStateException: Unable to perform operation: post construct on weblogic.security.SecurityService
    3. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.jndi.internal.RemoteNamingService errors were found
    4. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.jndi.internal.RemoteNamingService
    5. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.cluster.migration.MigrationService errors were found
    6. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.cluster.migration.MigrationService
    A MultiException has 6 exceptions.  They are:
    1. weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    2. java.lang.IllegalStateException: Unable to perform operation: post construct on weblogic.security.SecurityService
    3. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.jndi.internal.RemoteNamingService errors were found
    4. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.jndi.internal.RemoteNamingService
    5. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of weblogic.cluster.migration.MigrationService errors were found
    6. java.lang.IllegalStateException: Unable to perform operation: resolve on weblogic.cluster.migration.MigrationService
        at org.jvnet.hk2.internal.Collector.throwIfErrors(Collector.java:88)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:269)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$UpOneLevel.run(CurrentTaskFuture.java:753)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    Caused By: weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid. The user name or password or both from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:1017)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.postInitialize(CommonSecurityServiceManagerDelegateImpl.java:1131)
        at weblogic.security.service.SecurityServiceManager.postInitialize(SecurityServiceManager.java:943)
        at weblogic.security.SecurityService.start(SecurityService.java:159)
        at weblogic.server.AbstractServerService.postConstruct(AbstractServerService.java:78)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.glassfish.hk2.utilities.reflection.ReflectionHelper.invoke(ReflectionHelper.java:1017)
        at org.jvnet.hk2.internal.ClazzCreator.postConstructMe(ClazzCreator.java:388)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:430)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$UpOneLevel.run(CurrentTaskFuture.java:753)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User weblogic denied
        at weblogic.security.providers.authentication.shared.DBMSAtnLoginModuleImpl.login(DBMSAtnLoginModuleImpl.java:284)
        at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at javax.security.auth.login.LoginContext.invoke(LoginContext.java:762)
        at javax.security.auth.login.LoginContext.access$000(LoginContext.java:203)
        at javax.security.auth.login.LoginContext$4.run(LoginContext.java:690)
        at javax.security.auth.login.LoginContext$4.run(LoginContext.java:688)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:687)
        at javax.security.auth.login.LoginContext.login(LoginContext.java:595)
        at com.bea.common.security.internal.service.JAASLoginServiceImpl.login(JAASLoginServiceImpl.java:113)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:64)
        at com.sun.proxy.$Proxy32.login(Unknown Source)
        at weblogic.security.service.internal.WLSJAASLoginServiceImpl$ServiceImpl.login(WLSJAASLoginServiceImpl.java:89)
        at com.bea.common.security.internal.service.JAASAuthenticationServiceImpl.authenticate(JAASAuthenticationServiceImpl.java:82)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at com.bea.common.security.internal.utils.Delegator$ProxyInvocationHandler.invoke(Delegator.java:64)
        at com.sun.proxy.$Proxy52.authenticate(Unknown Source)
        at weblogic.security.service.WLSJAASAuthenticationServiceWrapper.authenticate(WLSJAASAuthenticationServiceWrapper.java:40)
        at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:342)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:987)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.postInitialize(CommonSecurityServiceManagerDelegateImpl.java:1131)
        at weblogic.security.service.SecurityServiceManager.postInitialize(SecurityServiceManager.java:943)
        at weblogic.security.SecurityService.start(SecurityService.java:159)
        at weblogic.server.AbstractServerService.postConstruct(AbstractServerService.java:78)
        at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.glassfish.hk2.utilities.reflection.ReflectionHelper.invoke(ReflectionHelper.java:1017)
        at org.jvnet.hk2.internal.ClazzCreator.postConstructMe(ClazzCreator.java:388)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:430)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
        at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
        at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
        at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
        at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
        at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
        at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
        at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
        at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
        at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
        at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$UpOneLevel.run(CurrentTaskFuture.java:753)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    >
    ####<Mar 17, 2015 2:07:23 PM EDT> <Notice> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426615643519> <BEA-000365> <Server state changed to FAILED.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Error> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426615643550> <BEA-000383> <A critical service failed. The server will shut itself down.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Notice> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426615643550> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <localhost> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1426615643550> <BEA-000236> <Stopping execute threads.>
    ####<Mar 17, 2015 2:07:23 PM EDT> <Info> <WebLogicServer> <Doreus-PC> <localhost> <main> <<WLS Kernel>> <> <> <1426615643566> <BEA-000238> <Shutdown has completed.>

  • Golden gate and Oracle 9i

    Hi, I’m wondering if there are any differences between Golden Gate replication for Oracle 10g and Oracle 9i. The reason why I’m asking is that it doesn’t seem to be any release for oracle 9i for windows, so I was thinking of using the oracle10 GG release with Oracle10g to practice replication between Oracle9 and 11gR2.
    /Regards

    Only corresponding databases having corresponding GoldenGate releases can be replicated.
    Oracle GoldenGate version 10 for Oracle 9i database
    Oracle GoldenGate version 10 for Oracle 10g database
    You cannot use "Oracle GoldenGate version 10 for Oracle 10g database" for Oracle 9i database. By doing so, you will get a library error.
    Thanks.

  • Golden Gate

    Hi,
    I have installed 11g R2 Golden gate one way replication for non rac database.
    once i started the extract in source database its shows running, but while checking status of extract, its showing stopped.and replicat getting same issue.
    Thanks in advance
    Regards
    Kumar Vellaisamy.

    995493 wrote:
    Hi,
    I have installed 11g R2 Golden gate one way replication for non rac database.
    once i started the extract in source database its shows running, but while checking status of extract, its showing stopped.and replicat getting same issue.
    Thanks in advance
    Regards
    Kumar Vellaisamy.You probably have to post the question here Oracle Discussion Forums » System Management and Integration » GoldenGate
    GoldenGate

  • Golden gate missing checkpoint table

    Hello gurus,
    I am trying to implement live replication with Golden Gate but I can't create the checkpoint table.
    GGSCI () 26> ADD CHECKPOINTTABLE
    ERROR: Missing checkpoint table specification.
    GGSCI (q) 27> ADD REPLICAT rep1, EXTTRAIL /t01/software/gg2/dirdat/rt
    ERROR: No checkpoint table specified for ADD REPLICAT.
    GGSCI () 28> ADD CHECKPOINTTABLE
    ERROR: Missing checkpoint table specification.
    GGSCI (qcdvap1031.gnet.qc.bell.ca) 29> edit ./GLOBALS
    ERROR: Invalid command.
    GGSCI () 30> edit params ./GLOBALS
    GGSCHEMA GGS_OWNER
    CHECKPOINTTABLE GGS_OWNER.CHKPTAB
    GGSCI (q) 31> ADD CHECKPOINTTABLE GGS_OWNER.CHKPTAB
    Successfully created checkpoint table GGS_OWNER.CHKPTAB.
    GGSCI () 32> ADD REPLICAT rep1, EXTTRAIL /t01/software/gg2/dirdat/rt
    ERROR: No checkpoint table specified for ADD REPLICAT.
    Not sure what I am missing here, can anyone please help?
    Thank you very much,

    Hi,
    Use the CHECKPOINTTABLE parameter in a GLOBALS parameter file to specify the name of a
    default checkpoint table that can be used by all Replicat groups in one or more Oracle
    GoldenGate instances. All Replicat groups created with the ADD REPLICAT command will
    default to this table unless it is overridden by using the CHECKPOINTTABLE option of that
    command.
    To create the checkpoint table, use the ADD CHECKPOINTTABLE command in GGSCI.
    Regards,

  • Golden gate supports directory??

    Hello ,
    I am new to golden gate.
    i have made 1 oracle directory in oracle 11 g. when i am replicating data using golden gate, then i am getting the error-->directory doesnot exists
    -->Fatal Error executing ddl replication
    Do golden gate supports directory or not.. ?
    Thanks and regards
    Attinder Pal Singh

    Directory in what context? The are directories within the GG installation, and Oracle has directories - which are database objects that point to a directory on the file system and has nothing whatsoever to do with GG. You may happen to have the OS directory be used for GG and the same directory used by Oracle, but that means nothing in terms of them working together.
    You have an error stack, so post what it is instead of leaving people to guess which directory is missing or does not exist. Was your DDL setup successful? What is the output of the check script?

Maybe you are looking for