Golden Gate v/s Streams

Hi,
I'm looking for some info on these.
Please let me know where I can find more info on these.
• Product Roadmap (Streams being discontinued vs. golden gate now and in future)
• Product Comparison (architecture, reporting, monitoring etc)
Regards,
Narayan

You can take help from here:
http://www.oracle.com/technetwork/middleware/goldengate/overview/statement-of-direction-gg-132120.pdf
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3349335100346299316

Similar Messages

  • Golden Gate and Streams

    Oracle 11.1.0.7:
    Before I ask my simple question. Is there a place I can get detailed documentation of Golden Gate? I got some documentation but that is very high level. I am looking for some document or tutorial like the ones Oracle has on tahiti.oracle.com.
    We are currently using streams and personally worked on it. I see following issues:
    1. When some errors occur in dba_apply_error it's really slow to re-execute them. Recovery is very slow
    2. Streaming the LOBs over of just 512 bytes makes the CCA very slow
    3. Manageability of scripts, configuration etc. is a headache
    4. Come accross streams bugs all the time
    From what I have read about golden gate is that is super fast and better than streams. I haven't read about it so I don't have complete comparision. Could someone with similar experience provide the insight.
    Also, if someone can please help me get right detailed documents would be really great.

    Hi,
    Think the goldengate documentation provide adequate help to install and configure oracle goldengate process. I can put down a sample configuration for you to get started.
    Installing GoldenGate and configuring a extract replicat process.
    First FTP the installation zip in binary mode from the PC to the installation directory on machine where Oracle GoldenGate suppose to be installed.
    Use gzip to decompress the file.
    gzip –d <file_name>.gz
    Extract the files
    Use tar to extract the files. All GoldenGate files will be placed in the current subdirectory.
    tar –xvf <file_name>.tar
    Create folders
    Create the required sub-directories in the installation directory by using
    Shell> cd <install location>
    Shell> ggsci
    GGSCI> create subdirs
    GGSCI> exit
    Oracle-specific installation steps
    The below steps are only required when GoldenGate will be capturing data from the server. Therefore it is only needed when you are installing GoldenGatef or Oracle as your <source> environment.
    You need to turn on supplemental logging at the database level. This command requires the ALTER DATABASE permissions.
    Shell> sqlplus <login>/<password>
    SQL> alter database add supplemental log data;
    Now Switch to the next redo log file.
    SQL> alter system switch logfile;
    SQL> exit
    Then now configure manager parameter file.
    GGSCI> EDIT PARAMS MGR
    •     Use the editor to assign a port
    --GoldenGate Manager parameter file
    PORT <port>
    example: PORT 7840
    •     To Start the Manager, issue following command
    GGSCI> START MGR
    •     To Verify that the Manager has started, issue the following command
    GGSCI> INFO MGR
    Now Configure Supplemental logging.
    By default, if not supplimentory logging enabled , only the change vectors will be logged in redo logs So inorder to get the columns required for constructing the image by replicat in target we require atleast minimum supplimentory logging enabled in database level and table level logging required for proper functioning of Oracle Goldengate Software.
    Using GGSCI, log in to the database on the <source> and turn on supplemental logging for the the tables configured for replication
    Shell> ggsci
    GGSCI> DBLOGIN USERID <login>
    GGSCI> ADD TRANDATA <owner/schema>.<table-name>
    Do this for all the tables.
    Configure change capture
    1. Add the Extract group
    Execute the following command on the <source> system to add an Extract group
    GGSCI> ADD EXTRACT <extract-name>, TRANLOG, BEGIN NOW
    Verify the results:
    GGSCI> INFO EXTRACT <extract-name>
    Create the Extract parameter file
    Execute the following commands on the <source> system.
    GGSCI> EDIT PARAM <extract-name>
    EXTRACT <extract-name>
    USERID <login>, PASSWORD <password>
    RMTHOST <target>, MGRPORT <port>
    RMTTRAIL ./dirdat/<trail id>
    TABLE <owner/schema>.<table-name>
    TABLE <owner/schema>.<table-name>
    for example
    extract testext
    userid ggs password ggs
    rmthost 172.25.25.177
    rmttrail ./dirdat/tr
    table scott.mytable;
    table scott.yourtable;
    Define the GoldenGate trail
    Execute the following command on the <source> to add the trail that will store the changes on the <target>.
    GGSCI> ADD RMTTRAIL ./dirdat/<trail id>, EXTRACT <extract-name>
    Verify the results:
    GGSCI> INFO RMTTRAIL *
    Start the capture process
    GGSCI> START EXTRACT <extract-name>
    Configure Change Delivery or replicat
    we have to do the following
    •     Set up the checkpoint table on the target system.(this is optional)
    •     Create a named group that includes the Replicat process and the checkpoint tables.
    •     Configure the Replicat group by adding parameters.
    •     Start the Replicat group.
    Now we will check how to set up the checkpoint table (this is a optional settings)
    Create a GLOBALS file on the target system
    Execute the following commands on the <target> system.
    Create and edit the GLOBALS parameter file to add the checkpoint table.
    Shell> cd <install location>
    Shell> ggsci
    GGSCI> EDIT PARAMS ./GLOBALS
    In the text editor, type:
    CHECKPOINTTABLE <owner/schema>.ggschkpt
    •     Record the checkpoint table owner and name, then save and close the file.
    Please Note: You could name the table anything you want
    •     Verify that the GLOBALS file was created in the root GoldenGate directory, and remove any file extension that was added.
    Activate the GLOBALS parameters
    For the GLOBALS configuration to take effect, you must exit the session in which
    the changes were made. Execute the following command to exit GGSCI.
    GGSCI> EXIT
    Add a Replicat checkpoint table     
    On the <target> system, execute the following commands in GGSCI:
    Shell> cd <install location>
    Shell> ggsci
    GGSCI> DBLOGIN USERID <login>, PASSWORD <password>
    GGSCI> ADD CHECKPOINTTABLE
    Configure Change Delivery
    Add the Replicat group
    Execute the following command on the <target> system to add a delivery group
    named <replicat-name>
    GGSCI> ADD REPLICAT <replicat-name>, EXTTRAIL ./dirdat/<trail id>
    Note: Refer to your Extract set up for the correct two-character <trail id>.
    Create Replicat parameter file
    Execute the following commands on the <target> system to bring up the parameter
    file in the editor.
    GGSCI> EDIT PARAM <replicat-name>
    -Type in the following parameters
    REPLICAT <replicat-name>
    USERID <login>, PASSWORD <password>
    HANDLECOLLISIONS
    ASSUMETARGETDEFS
    DISCARDFILE ./dirrpt/RORA<unique id>.DSC, PURGE
    MAP <owner/schema>.<source table-name>, TARGET <owner/schema>.<target table-name>;
    Start the Replicat process
    GGSCI> START REPLICAT <replicat-name>
    Verify the results:
    GGSCI> INFO REPLICAT <replicat-name>
    The above i scrapped is a basic extract-replication process which you can scale up once you get accustomed with this beautiful product.
    Thanks & Regards,
    Antony Joseph Jethu.

  • 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

  • How to use Golden Gate for ETL purpose

    Hi Oracle Gurus, i have a situation where i am thinking to replace our oracle PL/SQL package with Golden Gate to process our ETL.
    I mean we use PL/SQL package, which has several procedures and functions in it and we process our application data using this package to transform that data for our downstream clients.
    I was just wondering how we can achieve this using golden gate? Any suggestions will be appreciated.
    Thanks a lot :)

    Hi Annamalai
    We have a ETL login in our local database, and ETL processed data is pulled by our down stream clients, We are seeing that current ETL is not capable enough to execute such a huge load. So we wanted to port our raw data to secondary database and run ETL login on secondary database and to parallelize it accordingly.
    I was just thinking, can we use ETL logic inside OGG parameters, so we can load transformed data to secondary database. So no need of running ETL in secondry database. May be i sound little foolish, but just a thought.
    Thanks
    Abhi

  • Dataguard Active/Active Vs Golden gate in 11i environment

    is there any difference between setting up 11gR2 RAC + Dataguard in Active/Active mode Vs 11gR2 + DG + Golden Gate in 11i environment? Besides, are there any pros and cons in setting up one over another?
    environment: RH5.x, 11gR2, 2-node RAC, 11.5.10.2

    Data Guard with Physical Standby & Real-Time Query (Active Data Guard) is for Disaster Protection in the first place. Additionally, you can use the Standby for Reporting (Read-Only)
    Golden Gate or Streams is for Replication in the first place. You could do much more than just read-only reports. You don't need to replicate everything. You could do Multimaster-Replication. Additionally, you get some protection against damage of the source database(s).
    The question is: Do you want Disaster Protection or Replication as the most important Business Requirement.
    Kind regards
    Uwe Hesse
    http://uhesse.wordpress.com

  • Active Data Guard VS Golden Gate

    Hi Experts,
    I am looking for High Availability and Disaster Recovery architecture for my data layer i.e. Oracle Database 11g R2
    We have two physical locations and the distance between two sites is around 20 miles.
    Site 1:
    We already implemented RAC setup with two node in site 1.
    Site 2:
    We are going to implement standalone database. (Not RAC)
    My requirements:
    1. Both databases at Site 1 & Site 2 should be replica of each other.
    2. Both databases should be in sync always.
    3. Site 1 is active and Site 2 is stand by.
    4. Client applications on Site 1 & Site 2 should always talk to RAC database on Site1.
    5.. If RAC at site 1 goes down completely, then ONLY client apps should connect to Site2 database without human intervention.
    How can acheive my requirement ? I was doing some research & found two solutions. 1. Active Data Guard 2. Golden Gate.
    Questions:
    1. Do Data Guard and Golden Gate offers same features ?
    2. Which products offers solutions to all my requirements or Do I need to use both ?
    3. If Data Guard and Golden Gate are different from each other then What is the difference between them and what are the overlapping features among them ?
    Thanks

    Hi;
    Both tool are HA tool. Please see below link
    Thanks for the question regarding "Data guard vs Streams vs GoldenGate", version 11.2.0.2
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:3349335100346299316
    Golden Gate versus Data Guard for replication
    Golden Gate versus Data Guard for replication
    If you have still question please update thread
    Regard
    Helios

  • Migration Strategy Using The Golden Gate

    Hi All,
    I am a DBA and new to the Golden Gate area. We are planning to migrate the one of our database (24/7 availability).
    source
    RDBMS Version: 9.2.0.5
    Os: HP-UX
    Size: 2TB
    TARGET
    RDBMS Vesrsion: 9.2.0.5
    OS: Linux (x86)
    What is the best approach to migrate the data using golden gate ? Which method of initial load will be preffered ?
    I appreciate if some one shared their experiences (preffered method/time lines).
    -Thanks

    You would pay to license GoldenGate, but are using a desupported release of Oracle? If you are on support, simply upgrade to 10g and use transportable tablespaces. That's a no-brainer. Or, for whatever reason you cannot upgrade to 10g, use multiple streams of export/import. Or, use Streams. At face value, your combination of Oracle and wanting to use GoldenGate sounds like you aren't paying for either one.Yes, we are aware of 9i database support but we didn't get a chance to upgrade for all good reasons(old vendor app doen't support anything but 9i untill now. But we are going to
    migrate the database to new platform(linux) and to 10g (as vendor certified th 10g but not 11g ).

  • 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.>

  • Install oracle golden gate 11.1.1.0 for oracle9i on RedHat AS3 U6 issue

    Hi expert,
    I need install Oracle golden gate base on below combination:
    GG version: 11.1.1.0 (x64)
    OS version: Redhat AS3 UL6 (x64)
    Oracle version: 9.2.0.8 (x64)
    I set the .bash_profile for oracle as below:
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=$ORACLE_BASE/product/9.2.0
    export GGATE=/software/ogg
    export PATH=$PATH:$ORACLE_HOME/bin:$GGATE
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$GGATE
    However, after installation, when I run ggsci, it show below error message:
    ggsci: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
    I searched the libstdc++.so.6 in the server and found one in /lib64/ssa/libstdc++.so.6, I changed the LD_LIBRARY_PATH as:
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$GGATE:/lib64/ssa/
    then this time it has below error:
    ggsci: /lib64/ssa/libstdc++.so.6: version `GLIBCXX_3.4' not found (required by ggsci)
    ggsci: /lib64/ssa/libstdc++.so.6: version `GLIBCXX_3.4' not found (required by /software/ogg/libxerces-c.so.28)
    my question:
    1. Is GG 11.1.1.0 supported on RHEL AS3 U6? From oracle official website, it seems only the EL 4 UL7+ or EL 5 UL3+ are supported.
    2. If it's supported, how to resolve above error?
    Many thanks for your help.

    Hi,
    I think GG version: 11.1.1.0 (x64) supports only oracle 10g and 11g databases.
    Try GG version: 10.4.0.19 (x64) for oracle 9.2.0.8
    Thanks.

  • Does the oracle golden gate version 11.1.1.1.2 support oracle 12C database ?

    Hi experts,
    Currently in our environment we are having Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit DB which is replicated via oracle golden gate version 11.1.1.1.2. As per the application team requirement we need to migrate this database to 12C.
    Can any one help me on the below queries
    Does the oracle golden gate version 11.1.1.1.2 support oracle 12c database ?
    Are there any syntax changes in oracle goldengate versions which needs to be taken care in extract or replicat parameter files ?
    Thanks,
    Mushraff Shaik

    Hi,
    >>Does the oracle golden gate version 11.1.1.1.2 support oracle 12c database ?
    Why do you think it will not support 12c database ?
    From a Golden Gate perspective you need to create schema and use that.  As you are moving to 12c database, ideally you should think of upgrading Golden Gate 11.1 to 12c so you can use new feature such as Multi Threaded replicate etc..
    HTH,
    Pradeep

  • Golden Gate for mysql5.5 extract is Abended,and not error in the file

    Dear All,
    golden gate for mysql5.5 to oracle 11g,extract is Abended ,but there didn't have error in the log , And sometimes the successful extraction some records;
    extract :
    EXTRACT EXT_M1               
    TRANLOGOPTIONS AltLogDest /mydata/mysqllog/binlog/binlog.index       
    SOURCEDB [email protected]:16052, USERID mama,PASSWORD mama        
    sqlexec "set names gbk;"       
    EXTTRAIL dirdat/m1                  
    Dynamicresolution               
    TABLE mama.merchants_member_card_customer;   
    datapump:
    EXTRACT DPRD_M1  
    SOURCEDB [email protected]:16052, USERID mama,PASSWORD mama  
    RMTHOST 192.168.2.57, MGRPORT 7089, compress --COMPRESSUPDATESETWHERE
    RMTTRAIL /home/oracle/goldengate/dirdat/m1
    NOPASSTHRU  
    TABLE mama.merchants_member_card_customer;
    GGSCI>>info all
    Program     Status      Group       Lag at Chkpt  Time Since Chkpt
    MANAGER     RUNNING                                          
    EXTRACT     RUNNING     DPRD_M1     00:00:00      00:00:01   
    EXTRACT     ABENDED     EXT_M1      00:11:49      00:01:56
    REPORT:
    GGSCI>>view report ext_m1
                      Oracle GoldenGate Capture for MySQL
          Version 11.2.1.0.1 OGGCORE_11.2.1.0.1_PLATFORMS_120423.0230
    Linux, x64, 64bit (optimized), MySQL Enterprise on Apr 23 2012 05:23:34
    Copyright (C) 1995, 2012, Oracle and/or its affiliates. All rights reserved.
                        Starting at 2013-09-29 18:38:08
    Operating System Version:
    Linux
    Version #1 SMP Wed Jun 13 18:24:36 EDT 2012, Release 2.6.32-279.el6.x86_64
    Node: M46
    Machine: x86_64
                             soft limit   hard limit
    Address Space Size   :    unlimited    unlimited
    Heap Size            :    unlimited    unlimited
    File Size            :    unlimited    unlimited
    CPU Time             :    unlimited    unlimited
    Process id: 6322
    Description:
    **            Running with the following parameters                  **
    2013-09-29 18:38:08  INFO    OGG-03035  Operating system character set identified as UTF-8. Locale: zh_CN, LC_ALL:.
    EXTRACT EXT_M1
    TRANLOGOPTIONS AltLogDest /mydata/mysqllog/binlog/binlog.index
    SOURCEDB [email protected]:16052, USERID mama100,PASSWORD ****************
    sqlexec "set names gbk;"
    Executing SQL statement...
    2013-09-29 18:38:08  INFO    OGG-00893  SQL statement executed successfully.
    EXTTRAIL dirdat/m1
    Dynamicresolution
    TABLE mama100.merchants_member_card_customer;
    2013-09-29 18:38:08  INFO    OGG-01815  Virtual Memory Facilities for: COM
        anon alloc: mmap(MAP_ANON)  anon free: munmap
        file alloc: mmap(MAP_SHARED)  file free: munmap
        target directories:
        /home/goldengate/dirtmp.
    CACHEMGR virtual memory values (may have been adjusted)
    CACHESIZE:                               64G
    CACHEPAGEOUTSIZE (normal):                8M
    PROCESS VM AVAIL FROM OS (min):         128G
    CACHESIZEMAX (strict force to disk):     96G
    Database Version:
    MySQL
    Server Version: 5.5.24-patch-1.0-log
    Client Version: 6.0.0
    Host Connection: 192.168.2.46 via TCP/IP
    Protocol Version: 10
    2013-09-29 18:38:08  INFO    OGG-01056  Recovery initialization completed for target file dirdat/m1000000, at RBA 1295, CSN 000086|000000065228677.
    2013-09-29 18:38:08  INFO    OGG-01478  Output file dirdat/m1 is using format RELEASE 11.2.
    2013-09-29 18:38:08  INFO    OGG-01026  Rolling over remote file dirdat/m1000000.
    2013-09-29 18:38:08  INFO    OGG-00182  VAM API running in single-threaded mode.
    2013-09-29 18:38:08  INFO    OGG-01515  Positioning to begin time 2013-9-29 06:26:18.
    **                     Run Time Messages                             **
    2013-09-29 18:38:08  INFO    OGG-01516  Positioned to Log Number: 86
        Record Offset: 65223906, 2013-9-29 06:26:18.
    2013-09-29 18:38:08  INFO    OGG-01517  Position of first record processed Log Number: 86
        Record Offset: 65223906, 2013-9-29 06:26:18.
    TABLE resolved (entry mama100.merchants_member_card_customer):
      TABLE mama100."merchants_member_card_customer";
    Using the following key columns for source table mama100.merchants_member_card_customer: id.
    2013-09-29 18:38:08  INFO    OGG-01054  Recovery completed for target file dirdat/m1000001, at RBA 1316, CSN 000086|000000065228677.
    2013-09-29 18:38:08  INFO    OGG-01057  Recovery completed for all targets.
    ggsevt:
    2013-09-29 18:38:08  INFO    OGG-00963  Oracle GoldenGate Manager for MySQL, mgr.prm:  Command received from GGSCI on host localhost (START EXTRACT EXT_M1 ).
    2013-09-29 18:38:08  INFO    OGG-00975  Oracle GoldenGate Manager for MySQL, mgr.prm:  EXTRACT EXT_M1 starting.
    2013-09-29 18:38:08  INFO    OGG-00992  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  EXTRACT EXT_M1 starting.
    2013-09-29 18:38:08  INFO    OGG-03035  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Operating system character set identified as UTF-8. Locale: zh_CN, LC_ALL:.
    2013-09-29 18:38:08  INFO    OGG-00893  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  SQL statement executed successfully.
    2013-09-29 18:38:08  INFO    OGG-01815  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Virtual Memory Facilities for: COM
        anon alloc: mmap(MAP_ANON)  anon free: munmap
        file alloc: mmap(MAP_SHARED)  file free: munmap
        target directories:
        /home/goldengate/dirtmp.
    2013-09-29 18:38:08  INFO    OGG-00993  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  EXTRACT EXT_M1 started.
    2013-09-29 18:38:08  INFO    OGG-01056  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Recovery initialization completed for target file dirdat/m1000000, at RBA 1295, CSN 000086|000000065228677.
    2013-09-29 18:38:08  INFO    OGG-01478  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Output file dirdat/m1 is using format RELEASE 11.2.
    2013-09-29 18:38:08  INFO    OGG-01026  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Rolling over remote file dirdat/m1000000.
    2013-09-29 18:38:08  INFO    OGG-00182  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  VAM API running in single-threaded mode.
    2013-09-29 18:38:08  INFO    OGG-01515  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Positioning to begin time 2013-9-29 06:26:18.
    2013-09-29 18:38:08  INFO    OGG-01516  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Positioned to Log Number: 86
        Record Offset: 65223906, 2013-9-29 06:26:18.
    2013-09-29 18:38:08  INFO    OGG-01517  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Position of first record processed Log Number: 86
        Record Offset: 65223906, 2013-9-29 06:26:18.
    2013-09-29 18:38:08  INFO    OGG-01054  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Recovery completed for target file dirdat/m1000001, at RBA 1316, CSN 000086|000000065228677.
    2013-09-29 18:38:08  INFO    OGG-01057  Oracle GoldenGate Capture for MySQL, ext_m1.prm:  Recovery completed for all targets.
    2013-09-29 18:38:09  INFO    OGG-01054  Oracle GoldenGate Capture for MySQL, dprd_m1.prm:  Recovery completed for target file /home/oracle/goldengate/dirdat/m1000002, at RBA 1435, CSN 000086|000000055512672.
    2013-09-29 18:38:09  INFO    OGG-01057  Oracle GoldenGate Capture for MySQL, dprd_m1.prm:  Recovery completed for all targets.

    GGSCI>>info ext_m1 showch
    EXTRACT    EXT_M1    Last Started 2013-09-29 18:38   Status ABENDED
    Checkpoint Lag       00:11:49 (updated 00:12:05 ago)
    VAM Read Checkpoint  2013-09-29 18:26:18.665841
    Current Checkpoint Detail:
    Read Checkpoint #1
      VAM External Interface
      Startup Checkpoint (starting position in the data source):
        Timestamp: 2013-09-29 18:26:18.665841
      Recovery Checkpoint (position of oldest unprocessed transaction in the data source):
        Timestamp: 2013-09-29 18:26:18.665841
      Current Checkpoint (position of last record read in the data source):
        Timestamp: 2013-09-29 18:26:18.665841
    Write Checkpoint #1
      GGS Log Trail
      Current Checkpoint (current write position):
        Sequence #: 0
        RBA: 917
        Timestamp: 2013-09-29 18:30:55.655570
        Extract Trail: dirdat/m1
    CSN state information:
      CRC: 20-82-1D-34
      CSN: Not available
    Header:
      Version = 2
      Record Source = A
      Type = 8
      # Input Checkpoints = 1
      # Output Checkpoints = 1
    File Information:
      Block Size = 2048
      Max Blocks = 100
      Record Length = 20480
      Current Offset = 0
    Configuration:
      Data Source = 5
      Transaction Integrity = 1
      Task Type = 0
    Status:
      Start Time = 2013-09-29 18:38:08
      Last Update Time = 2013-09-29 18:38:08
      Stop Status = A
      Last Result = 0

  • Golden Gate configuration with 12c Database

    Hi,
    I have a requirement to configure the golden gate with oracle database 12c with container database.
    Versions:
    Golden Gate - 12.1.2.1.0
    Oracle Database - 12.1.0.2
    Here we need to configure with container database and two pluggable database.
    Kindly suggest me the steps for configuration.
    Regards
    Kumar

    Hello Kumar,
    I  think you need to do the same setup as other GG versións :
    1. Install Golden Gate software on extract/replicat sites
    2. Create GG User with the necesary  privs.
    3. Set Min Logging level  at database level.
    4. Set TRANDATA for the tables that you like capture changes
    After, you need analyze the objects that you need replicate and define the capture process.
    To use GG on a MultiTenant Database, you need  define at extract level the PDBs and the objects that you need extract. Remeber that in a Multi-tenant enviorment, only a set of redo logs exists,then the capture process is Multi-Tenant aware, because allow
    set the PDB and the schema and the objects that you like capture. It is called qualified three-part name, PDB.SCHEMA.TABLE
    Example:
    SOURCECATALOG FINANCE TABLE SAP.*;  ---> Source is the way to inlcude the PDB
    TABLE REPORTS.*;
    SOURCECATALOG HR TABLE SIEBEL.*;
    TABLE REPORTS.*;
    SOURCECATALOG MFG
    TABLE CUSTOMER.ORDERS;
    TABLE REPORTS.*;
    TABLE HQ.LOCATIONS.*;
    In this example, Extract captures the following:
    All tables in the SAP and REPORTS schemas in the FINANCE PDB.
    All tables in the SIEBEL and REPORTS schemas in the HR PDB.
    All tables in the CUSTOMER and REPORTS schemas in the MFG PDB.
    For the last TABLE statement, Extract captures all tables in the LOCATIONS schema in the HQ PDB. This statement is a fully qualified three-part name and overrides the previous SOURCECATALOG specification.
    You have more info at : http://docs.oracle.com/goldengate/1212/gg-winux/GWURF/gg_parameters147.htm
    Also, you have a dedicated chapter of using GG in a Multi-Tenant env at:  https://docs.oracle.com/goldengate/1212/gg-winux/GIORA/config_containerdb.htm#BDCFDFDE
    I hope help.
    Regards
    Arturo

  • 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 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 32bit for Oracle 10g and 11g

    Does oracle released Golden Gate 32bit for Oracle 10g and 11g, i could not able to find out 32bit http://edelivery.oracle.com or OTN.
    Thanks

    never mind, i was able to download from e-delivery.

Maybe you are looking for