WARNING: No AdfRenderingContext available

Hello
i have the following message in my logs:
"WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
20.10.2006 11:58:06 oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
WARNING: No AdfRenderingContext available
What is the problem,and how i can solve it ?
it shows on oc4j and tomcat.
Regards
Mohd.Weshah

Hi,
Have you got the solution to this problem? I am also getting this error. Kindly let me know how did you resolve this.
Thanks

Similar Messages

  • Warning- extend your available memory to allow other programs to close

    Warning- extend your available memory to allow other programs to close

    Go to Settings>General>About>Available How much available space do you have?
    Or it could be saying you don't have sufficient RAM because you have too many apps open.
    For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
     Cheers, Tom

  • Tmboot: WARN: No BBL available on site *****.

    Hi,
    I've recently updated the servers on a tuxedo machine and when I attempt to boot. Here is what I see in the logs that might be of interest:
    30-Jan-11 21:10:37> Booting the entire Tuxedo system .
    30-Jan-11 21:10:37> Perform the action on Tuxedo
    30-Jan-11 21:10:42> INFO: BEA Tuxedo, Version 8.1, 32-bit, Patch Level 289
    30-Jan-11 21:10:42> INFO: Serial #: 650522264138-1271806107651, Expiration NONE, Maxusers 200
    30-Jan-11 21:10:42> INFO: Licensed to: ****
    30-Jan-11 21:10:42>
    30-Jan-11 21:10:42> Booting admin processes ...
    30-Jan-11 21:10:42>
    30-Jan-11 21:10:42> exec BBL -A :
    30-Jan-11 21:10:42> Failed.
    30-Jan-11 21:10:42>
    30-Jan-11 21:10:42> tmboot: WARN: No BBL available on site ****.
    30-Jan-11 21:10:42> Will not attempt to boot server processes on that site.
    30-Jan-11 21:10:42>
    30-Jan-11 21:10:42> 0 processes started.
    203408.****!tmadmin.25751.1.-2: 01-30-2011: Tuxedo Version 8.1, 32-bit
    203408.****!tmadmin.25751.1.-2: LIBTUX_CAT:717: ERROR: Cannot attach to or create shared memory
    203408.****!tmadmin.25751.1.-2: LIBTUX_CAT:340: ERROR: Wrong configuration file
    203408.****!tmadmin.25751.1.-2: LIBTUX_CAT:717: ERROR: Cannot attach to or create shared memory
    tmadmintmadmin - Copyright (c) 1996-1999 BEA Systems, Inc.
    Portions * Copyright 1986-1997 RSA Data Security, Inc.
    All Rights Reserved.
    Distributed under license by BEA Systems, Inc.
    Tuxedo is a registered trademark.
    No bulletin board exists. Entering boot mode.
    Please advise as to what I should to do get it going again?
    Regards,
    Vladimir

    What update are you talking about ? What OS ? What Peopletools ?
    Nicolas.

  • WARNING: Trying to attach AdfRenderingContext to a thread that already...

    Since configuring my app to use myfaces impl I get the following warning when i deploy my app:
    16:45:10,453 INFO [STDOUT] before - RENDER_RESPONSE(6)
    16:45:10,453 INFO [STDOUT] Apr 12, 2006 4:45:10 PM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    16:45:11,515 INFO [STDOUT] after - RENDER_RESPONSE(6)
    16:45:11,515 INFO [STDOUT] Done with Request!
    16:45:11,515 INFO [STDOUT] Apr 12, 2006 4:45:11 PM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    Components are rendering ok though? Is there a known cause for this warning?

    I extended the adf ViewHandlerImpl, and I'm getting the same warning message. Would be nice to know why...

  • Action method of backing bean called multiple times instead of once.

    Hi,
    My backing bean has an action method called "saveEquipmentList" that's called when a "Save" button is clicked. The problem is, this method gets executed twice every time the button is clicked so data gets peristed twice, db triggers get executed twice, etc., it's really pretty annoying. I've put the bean method's code and the JSF command button below, notice that there's a check for FacesContext.getRenderResponse() that I put in for debugging, the code doesn't get executed at all if I leave the FacesContext.getRenderResponse() in, sure, you're saying "So what's you point", no point, just thought I'd explain why the check is in there.
    Thanks,
    Alex
    public synchronized String saveEquipmentList() throws Exception {
    // Order is very important.
    if (FacesContext.getCurrentInstance().getRenderResponse()) {
    System.out.println("GOT RENDER RESPONSE... XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
    try {
    loadEquipmentCodesMap(); // Loads map from equip_code_ids in the DB.
    updateEquipCodesMap(); // Updates total for objcode/type to sum of equipment items for that objcode/type.
    saveEquipmentCodes(); // Saves to equipment_codes table.
    loadEquipmentCodesMap();
    updateDataList();
    savedataList();
    updateTotals();
    loadEquipmentList();
    catch (Exception e) {
    setErrMessage("Error saving equipment: " + e.getMessage());
    return "success";
    }else{
    //facesContext.getCurrentInstance().renderResponse();
    return "success";
                                <h:panelGroup id="pg54">
                                  <h:commandButton id="save" disabled="#{(user.role == '2' and backing_equipmentScreen.viewOnly) or
                                                                                          (user.role == '1' and !backing_equipmentScreen.viewOnly)}"
                                                   value="Save"
                                                   action="#{backing_equipmentScreen.saveEquipmentList}"
                                                   styleClass="input"/>
                                </h:panelGroup>

    Here's the phase listener output before clicking the "Save" button (which calls the saveEquipmentList() action method), I pasted it all, from app started to breakpoint, couldn't get it all in due to the 30K char constraint:
    [EJB 3.0]: Assigning default-data-source=jdbc/FedAppDS, specified in projects EJB 3.0 properties
    [Starting OC4J using the following ports: HTTP=8992, RMI=23898, JMS=9233.]
    C:\Dev\JDeveloper10.1.3.3\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config>
    C:\Dev\JDeveloper10.1.3.3\jdk\bin\javaw.exe -server -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=53366 -classpath C:\Dev\JDeveloper10.1.3.3\j2ee\home\oc4j.jar;C:\Dev\JDeveloper10.1.3.3\jdev\lib\jdev-oc4j-embedded.jar -Xms256m -Xmx1024m -Xverify:none -XX:MaxPermSize=256m -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\Dev\JDeveloper10.1.3.3\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Listening for transport dt_socket at address: 53366
    Debugger connected to local process.
    Sep 16, 2009 11:00:34 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Sep 16, 2009 11:00:34 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Sep 16, 2009 11:00:44 AM com.evermind.server.ejb.logging.EJBDeploymentMessages warningGetBeansFromEJBModule
    WARNING: [current-workspace-app:Fed-EOY-EXP_UserInterface_0] EJB module contains no beans.
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 19859 ms.
    Target URL -- http://10.1.38.77:8992/Fed-EOY-EXP/faces/login.jspx
    09/09/16 11:00:48 Oracle Containers for J2EE 10g (10.1.3.3.0) initialized
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    Sep 16, 2009 11:01:00 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
    Sep 16, 2009 11:01:01 AM com.sun.faces.config.rules.NavigationRuleRule end
    WARNING: [NavigationRuleRule]{faces-config/navigation-rule} Merge(*)
    09/09/16 11:01:02 BeforePhase: RESTORE_VIEW 1
    Sep 16, 2009 11:01:02 AM oracle.adfinternal.view.faces.application.ViewHandlerImpl _checkTimestamp
    INFO: ADF Faces is running with time-stamp checking enabled. This should not be used in a production environment. See the oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    09/09/16 11:01:02 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:02 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:05 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:05 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:05 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:05 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:05 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:05 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:05 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:05 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:05 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:06 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:06 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:06 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:06 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:10 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:10 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:10 BeforePhase: APPLY_REQUEST_VALUES 2
    09/09/16 11:01:10 AfterPhase: APPLY_REQUEST_VALUES 2
    09/09/16 11:01:10 BeforePhase: PROCESS_VALIDATIONS 3
    09/09/16 11:01:11 AfterPhase: PROCESS_VALIDATIONS 3
    09/09/16 11:01:11 BeforePhase: UPDATE_MODEL_VALUES 4
    09/09/16 11:01:11 AfterPhase: UPDATE_MODEL_VALUES 4
    09/09/16 11:01:11 BeforePhase: INVOKE_APPLICATION 5
    09/09/16 11:01:11 LoginBean.login(): Here I is...1
    09/09/16 11:01:11 LoginBean.login(): Here I is...2
    09/09/16 11:01:11 LoginBean.login(): Here I is...2.1
    09/09/16 11:01:11 LoginBean.login(): Here I is...2.2
    09/09/16 11:01:11 LoginBean.login(): Here I is...3
    09/09/16 11:01:11 LoginBean.login(): Here I is...4
    09/09/16 11:01:11 LoginBean.login(): The user's full name is Red Sonia.......................................
    09/09/16 11:01:11 LoginBean.login(): The user's role is Admn.......................................
    09/09/16 11:01:11 LoginBean.login(): Here I is...5
    09/09/16 11:01:11 AfterPhase: INVOKE_APPLICATION 5
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:11 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    09/09/16 11:01:11 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:11 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:11 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:11 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_STAFF_ID) FROM FED_STAFF WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4027 AND SALARY > 0
    09/09/16 11:01:12 The select sql is: SELECT COUNT(CONTRACT_ID) FROM CONTRACT WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4027
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4027
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_STAFF_ID) FROM FED_STAFF WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4173 AND SALARY > 0
    09/09/16 11:01:12 The select sql is: SELECT COUNT(CONTRACT_ID) FROM CONTRACT WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4173
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4173
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_STAFF_ID) FROM FED_STAFF WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5027 AND SALARY > 0
    09/09/16 11:01:12 The select sql is: SELECT COUNT(CONTRACT_ID) FROM CONTRACT WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5027
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5027
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_STAFF_ID) FROM FED_STAFF WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5173 AND SALARY > 0
    09/09/16 11:01:12 The select sql is: SELECT COUNT(CONTRACT_ID) FROM CONTRACT WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5173
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5173
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_STAFF_ID) FROM FED_STAFF WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 6027 AND SALARY > 0
    09/09/16 11:01:12 The select sql is: SELECT COUNT(CONTRACT_ID) FROM CONTRACT WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 6027
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 6027
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_STAFF_ID) FROM FED_STAFF WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 6173 AND SALARY > 0
    09/09/16 11:01:12 The select sql is: SELECT COUNT(CONTRACT_ID) FROM CONTRACT WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 6173
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 6173
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 3120
    09/09/16 11:01:12 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 3130
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 3131
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4041
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4048
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 4367
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5126
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 5323
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 8600
    09/09/16 11:01:13 The select sql is: SELECT COUNT(FED_BUDGET_ID) FROM FED_BUDGET WHERE ADMIN_UNIT_CODE = '21050' AND GRANT_SOURCE_CODE = 9013
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:13 BeforePhase: RENDER_RESPONSE 6
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.AdfRenderingContext attach
    WARNING: Trying to attach AdfRenderingContext to a thread that already had one.
    Sep 16, 2009 11:01:13 AM oracle.adfinternal.view.faces.renderkit.core.CoreRenderKit encodeFinally
    WARNING: No AdfRenderingContext available
    09/09/16 11:01:13 AfterPhase: RENDER_RESPONSE 6
    09/09/16 11:01:16 BeforePhase: RESTORE_VIEW 1
    09/09/16 11:01:16 AfterPhase: RESTORE_VIEW 1
    09/09/16 11:01:16 BeforePhase: APPLY_REQUEST_VALUES 2
    .

  • Suppress Powershell Warning in agent job "WARNING: Could not obtain SQL Server Service information"

    Hi
    I get this warning running through powershell_ise but through sql agent it just errors out.
    The code does everything it is supposed to and I tried everything to completely resolve the warning to no avail.
    How do I supress it so sql agent wont error out running powershell code?
    Thanks!
    WARNING: Could not obtain SQL Server Service information. An attempt to connect to WMI on 'server_name' failed with the following error: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    Warning only present when it connects to remote servers, it doesn't produce it for local server. And it does get all info from the remote servers.
    Paula

    Hi paulata,
    According to your description, when you run powershell scripts about  the remote machine
     in SQL Server Agent job, the warning error will occur. “The common error message is Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)).” This suggests that your credentials aren't sufficient for accessing the
    remote system. If you have an account that has sufficient permissions for the query, there's a simple workaround for this problem in the form of PowerShell's Get-Credential command and the script's Credential parameter. I recommend you check if your account
    has permission on remote machine and it can execute the powershell scripts.
    In addition, if you want to run query statement on the remote machine , I recommend you create Linked Server, then do some related operations. There is a similar issue about access denied, you can review the following article.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/157f536d-6716-4547-bdb4-9e3c8451cb95/sql-agent-service-account-permissions-sql-server-2008?forum=sqlgetstarted
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • "adl" not available , Leopard

    Ok, here's a really basic installation question I suppose,
    but I get a:
    WARNING: "adl" not available
    message after running the config script, and the tip: To
    correct this warning, install the Flex SDK 3.2+ and add
    /path/to/FlexSDK/bin to your path.
    My probably stupid problem is what "my path" is (Flex SDK is
    installed and running) that is: How do I do the:
    add /path/to/FlexSDK/bin to your path.
    Best Regards
    Eskil

    Mine looks like this:
    export ADL="/Applications/Adobe Gumbo MAX
    Preview/sdks/3.2.0.3958/bin/adl"
    HTH,
    Patrick

  • Tux 8.0 No BBL available on site

    when I try to start Tux, these are the errors:
    Booting all admin and server processes in /opt/impact/sys/demo/cfg/tuxconfig
    INFO: BEA Tuxedo, Version 8.0, 32-bit, Patch Level 254
    INFO: Serial #: 650522264137-888722211569, Expiration NONE, Maxusers 5
    INFO: Licensed to: Texas Dept of PRS
    Booting admin processes ...
    exec BBL -A :
    Failed.
    tmboot: WARN: No BBL available on site demo.
    Will not attempt to boot server processes on that site.
    Booting server processes ...
    0 processes started.
    Starting Architecture Components.
    the ulog entries are:
    073639.canis!BBL.17483.1.0: 07-29-2005: Tuxedo Version 8.0, 32-bit, Patch Level
    254
    073639.canis!BBL.17483.1.0: LIBTUX_CAT:296: ERROR: tlogopen: gptblopen: VTOC
    not initialized
    073639.canis!BBL.17483.1.0: LIBTUX_CAT:319: ERROR: Log start cannot open tlog
    073639.canis!BBL.17483.1.0: LIBTUX_CAT:248: ERROR: System init function failed,
    Uunixerr =
    073639.canis!BBL.17483.1.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    073639.canis!tmboot.17479.1.-2: 07-29-2005: Tuxedo Version 8.0, 32-bit
    073639.canis!tmboot.17479.1.-2: CMDTUX_CAT:825: ERROR: Process BBL at demo faile
    d with /T tperrno (TPESYSTEM - internal system error)
    073639.canis!tmboot.17479.1.-2: WARN: No BBL available on site demo.
    Will not attempt to boot server processes on that site.
    thanks,
    Phil

    You need to create the Tuxedo TLOG device to resolve this problem.
    Execute "tmunloadcf" and look for the value of TLOGDEVICE on the machine
    where
    the error is occurring.
    Assuming that this value is
    TLOGDEVICE="/home/tuxapp/TLOG"
    you would execute the following:
    tmadmin -c <<!
    default -z /home/tuxapp/TLOG
    crdl -b 500
    quit
    You should then be able to boot the application. (If you have specified a
    non-default large value for TLOGSIZE, then 500 blocks may not be enough, but
    most customers stick with the default value for TLOGSIZE.)
    <Phil Johnston> wrote in message news:[email protected]..
    when I try to start Tux, these are the errors:
    Booting all admin and server processes in/opt/impact/sys/demo/cfg/tuxconfig
    INFO: BEA Tuxedo, Version 8.0, 32-bit, Patch Level 254
    INFO: Serial #: 650522264137-888722211569, Expiration NONE, Maxusers 5
    INFO: Licensed to: Texas Dept of PRS
    Booting admin processes ...
    exec BBL -A :
    Failed.
    tmboot: WARN: No BBL available on site demo.
    Will not attempt to boot server processes on that site.
    Booting server processes ...
    0 processes started.
    Starting Architecture Components.
    the ulog entries are:
    073639.canis!BBL.17483.1.0: 07-29-2005: Tuxedo Version 8.0, 32-bit, PatchLevel
    254
    073639.canis!BBL.17483.1.0: LIBTUX_CAT:296: ERROR: tlogopen:
    gptblopen: VTOC
    not initialized
    073639.canis!BBL.17483.1.0: LIBTUX_CAT:319: ERROR: Log start cannot opentlog
    073639.canis!BBL.17483.1.0: LIBTUX_CAT:248: ERROR: System init functionfailed,
    Uunixerr =
    073639.canis!BBL.17483.1.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    073639.canis!tmboot.17479.1.-2: 07-29-2005: Tuxedo Version 8.0, 32-bit
    073639.canis!tmboot.17479.1.-2: CMDTUX_CAT:825: ERROR: Process BBL at demofaile
    d with /T tperrno (TPESYSTEM - internal system error)
    073639.canis!tmboot.17479.1.-2: WARN: No BBL available on site demo.
    Will not attempt to boot server processes on that site.
    thanks,
    Phil

  • Inspiration Browser no internet warning in win 7 64 bit PSE 10

    Installed Photoshop Elements 10 bundle on a win 7 64 bit system, registered software.
    Everything seems to work except Inspiration Browser. when loading through Elements a  window pop up stating " Warning no network available please check your connection"
    I have an internet connecton and it's not being block by firewall. 

    Uninstalling through Windows 7 Programs manager in the control panell then reinstalling worked great and I now have access to all the help videos etc.
    Thanks and Kindest Regards!
    Michael
    (Granpuff)

  • SQL 2012 Enterprise (Evaluation) - To Enterprise Core (Licensed) Edition Upgrade Warning on Always-On

    Hi all,
    I am need to do an Edition Upgrade on a SQL Server 2012 Enterprise (evaluation) to a licensed version of the Enterprise version. We do already have set-up Always on Availability Groups, however when I want to perform the Edition Upgrade I receive the following
    warning:
    The AlwaysOn Availability Groups feature is enabled on this instance of SQL Server and it is not supported in the edition being changed to. Before proceeding, disable AlwaysOn Availability Groups on the server instance. For more information, see SQL Server
    Books Online.
    I am using the correct media, as well if I need to accept the license terms I can see it's the Enterprise Core edition, so I am wondering why I receive this message. And of course I did not proceed, because I do not want to loose my availability groups.

    Hi Hans,
    Personally, according to the
    features supported by the editions of SQL Server 2012, it is support on AlwaysOn Availability Groups feature on the Enterprise version. In theory, the AlwaysOn Availability Groups feature is supported on the Enterprise version after upgrading. 
    About this warning, if it is in test environment, we can do a test and check if the warning will effect AlwaysOn Availability Groups feature. Or
    I recommend to submit it to the Microsoft Connect at this link
    https://connect.microsoft.com/SQLServer/Feedback. So that a dedicated Support Professional can assist
    you in a more efficient manner.
    Thanks for your understanding.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • NO BBL available on that site

    Hi,
    I tried to write a service in Tuxedo which connects to oracle8.1.7. My Tuxedo
    is on Windows2000.
    when i try to boot the server it is giving the following error
    Booting admin processes ...
    exec BBL -A :
    Failed.
    tmboot: WARN: No BBL available on site simple.
    Will not attempt to boot server processes on that site.
    Booting server processes ...
    0 processes started.
    My UBBSIMPLE file was attached:
    My RM entry is :
    Oracle_XA;xaosw;%ORACLE_HOME%\precomp\lib\msvc\oraSQL8.lib %ORACLE_HOME%\rdmbs\XA\oraxa8.lib
    can u please help me.
    Thanks in advance.
    --sreeny
    [ubbsimple]

    Hi,
    i just build one TMSNAME called TMS_ORA. while booting my tuxedo server it is
    failed to execute..
    PLEASE HELP ME...
    my tuxedo version is 8.0 and oracle 8.1.7 on windows2000 box
    MY OPENINFO string in ubbsimple is as follows:
    OPENINFO="Oracle_XA:Oracle_XA+Acc=P/system/manager+SesTm=15+LogDir=."
    MY RM ENTRY is:
    Oracle_XA;xaosw; e:\oracle\ora81\precomp\lib\msvc\oraSQL8.lib e:\oracle\ora81\rdbms\XA\oraxa8.lib
    1. The following message is comming on console:
    Booting admin processes ...
    exec BBL -A :
    process id=2452 ... Started.
    Booting server processes ...
    exec e:/bea/tuxedo8.0/samples/atmi/simpapp/TMS_ORA -A :
    Failed.
    2. THE FOLLOWING MESSGAE IS COMMING IN ULOG file:
    132305.JARJAR!BBL.2440.2316.0: 06-02-2001: Tuxedo Version 8.0 32-bit Windows.
    132305.JARJAR!BBL.2440.2316.0: LIBTUX_CAT:262: INFO: Standard main starting
    132308.JARJAR!TMS_ORA.2380.2376.0: 06-02-2001: Tuxedo Version 8.0 32-bit Windows.
    132308.JARJAR!TMS_ORA.2380.2376.0: LIBTUX_CAT:262: INFO: Standard main starting
    132308.JARJAR!TMS_ORA.2380.2376.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open
    returned XAER_RMERR
    132308.JARJAR!TMS_ORA.2380.2376.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132308.JARJAR!TMS_ORA.2380.2376.0: LIBTUX_CAT:300: ERROR: tlogopen: gptblopen:
    UNIX sys call error - 2
    132308.JARJAR!tmboot.2460.2192.-2: 06-02-2001: Tuxedo Version 8.0 32-bit Windows.
    132308.JARJAR!tmboot.2460.2192.-2: CMDTUX_CAT:825: ERROR: Process e:/bea/tuxedo8.0/samples/atmi/simpapp/TMS_ORA
    at simple failed with /T tperrno (TPERMERR - resource manager error)
    132310.JARJAR!TMS_ORA.2480.2376.0: 06-02-2001: Tuxedo Version 8.0 32-bit Windows.
    132310.JARJAR!TMS_ORA.2480.2376.0: LIBTUX_CAT:262: INFO: Standard main starting
    132310.JARJAR!TMS_ORA.2480.2376.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open
    returned XAER_RMERR
    132310.JARJAR!TMS_ORA.2480.2376.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132310.JARJAR!TMS_ORA.2480.2376.0: LIBTUX_CAT:300: ERROR: tlogopen: gptblopen:
    UNIX sys call error - 2
    132310.JARJAR!tmboot.2460.2192.-2: CMDTUX_CAT:825: ERROR: Process e:/bea/tuxedo8.0/samples/atmi/simpapp/TMS_ORA
    at simple failed with /T tperrno (TPERMERR - resource manager error)
    132313.JARJAR!TMS_ORA.2364.2388.0: 06-02-2001: Tuxedo Version 8.0 32-bit Windows.
    132313.JARJAR!TMS_ORA.2364.2388.0: LIBTUX_CAT:262: INFO: Standard main starting
    132313.JARJAR!TMS_ORA.2364.2388.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open
    returned XAER_RMERR
    132313.JARJAR!TMS_ORA.2364.2388.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132313.JARJAR!TMS_ORA.2364.2388.0: LIBTUX_CAT:300: ERROR: tlogopen: gptblopen:
    UNIX sys call error - 2
    132313.JARJAR!tmboot.2460.2192.-2: CMDTUX_CAT:825: ERROR: Process e:/bea/tuxedo8.0/samples/atmi/simpapp/TMS_ORA
    at simple failed with /T tperrno (TPERMERR - resource manager error)
    132313.JARJAR!GETDB.2428.2376.0: 06-02-2001: Tuxedo Version 8.0 32-bit Windows.
    132313.JARJAR!GETDB.2428.2376.0: LIBTUX_CAT:262: INFO: Standard main starting
    132313.JARJAR!GETDB.2428.2376.0: GP_CAT:214: ERROR: Null version of xa_open()
    found non-null info string
    132313.JARJAR!GETDB.2428.2376.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open
    returned XAER_INVAL
    132313.JARJAR!GETDB.2428.2376.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132313.JARJAR!tmboot.2460.2192.-2: CMDTUX_CAT:825: ERROR: Process GETDB at simple
    failed with /T tperrno (TPERMERR - resource manager error)
    3. THE FOLLOWING MESSAGE is comming in XA_NULL.trc
    ORACLE XA: Version 8.1.7.0.0. RM name = 'Oracle_XA'.
    132308.2380:2376.0:
    Error while trying to retrieve text for error ORA-12538
    132308.2380:2376.0:
    xaolgn_help: XAER_RMERR; OCIServerAttach failed. ORA-12538.
    ORACLE XA: Version 8.1.7.0.0. RM name = 'Oracle_XA'.
    132310.2480:2376.0:
    Error while trying to retrieve text for error ORA-12538
    132310.2480:2376.0:
    xaolgn_help: XAER_RMERR; OCIServerAttach failed. ORA-12538.
    ORACLE XA: Version 8.1.7.0.0. RM name = 'Oracle_XA'.
    132313.2364:2388.0:
    Error while trying to retrieve text for error ORA-12538
    132313.2364:2388.0:
    xaolgn_help: XAER_RMERR; OCIServerAttach failed. ORA-12538.

  • Not able to Bind DPS 6.3.1

    Hey,
    I configured Sun Directory Server 6.3.1 on Solaris Sparc. I'm not able to bind the ldapclient.
    **DPS Error log says:**
    17/Sep/2009:07:36:08 +0000] - BACKEND - WARN - No data source available for ADD,BIND,COMPARE,DELETE,MODIFY, in data source pool cn=my pool,cn=datasource pools,cn=config .You may want to check whether the configuration of this pool contains at least one data source enabled and with non-zero weights.
    [17/Sep/2009:07:36:08 +0000] - BACKEND - WARN - Can't retrieve LDAP schema (LDAP error code: 32) No data view were found to process the search request.
    [17/Sep/2009:07:36:08 +0000] - STARTUP - INFO - Sun-Java(tm)-System-Directory-Proxy-Server/6.3 B2008.0311.0334 started on host server-ldap in directory /opt/ldap/master/att-dps1
    [17/Sep/2009:07:36:08 +0000] - STARTUP - INFO - Listening for secure client connections on 0.0.0.0:5392
    [17/Sep/2009:07:36:08 +0000] - STARTUP - INFO - Listening for client connections on 0.0.0.0:5391
    [17/Sep/2009:07:36:37 +0000] - BACKEND - WARN - LDAP server server-ldap:3998/ is up and running.
    [17/Sep/2009:07:36:37 +0000] - BACKEND - WARN - Attempt to bind as dc=my-domain,dc=com to backend server server-ldap:5389/ failed. Silent BIND failed : err=48, error message "",
    [17/Sep/2009:07:36:37 +0000] - BACKEND - ERROR - Failed to create a connection to mdtnj001ldap:5389/
    [17/Sep/2009:07:36:37 +0000] - BACKEND - WARN - LDAP server mdtnj001ldap:5389/ is up and running.
    [17/Sep/2009:11:39:53 +0000] - BACKEND - WARN - No servers available to process BIND in data source pool cn=defaultdatasourcepool,cn=datasource pools,cn=config
    DPS Acces logs says:*_
    [17/Sep/2009:08:56:45 +0000] - SERVER_OP - INFO - conn=67 op=1 BIND RESPONSE err=0 msg="" s_conn=dscc_ldap_mdtnj001ldap:3998:32
    [17/Sep/2009:08:56:45 +0000] - PROFILE - INFO - conn=67 assigned to connection handler cn=directory services administrators,cn=connection handlers,cn=config
    [17/Sep/2009:08:56:45 +0000] - OPERATION - INFO - conn=67 op=1 BIND RESPONSE err=0 msg="" etime=0
    [17/Sep/2009:08:56:45 +0000] - OPERATION - INFO - conn=67 op=2 UNBIND
    [17/Sep/2009:08:56:45 +0000] - DISCONNECT - INFO - conn=67 reason="unbind"
    [17/Sep/2009:08:56:45 +0000] - CONNECT - INFO - conn=68 client=135.25.219.143:28428 server=mdtnj001ldap:5391 protocol=LDAP
    [17/Sep/2009:08:56:45 +0000] - PROFILE - INFO - conn=68 assigned to connection handler cn=default connection handler, cn=connection handlers, cn=config
    [17/Sep/2009:08:56:45 +0000] - OPERATION - INFO - conn=68 op=0 EXTENDED oid="1.3.6.1.4.1.1466.20037"
    [17/Sep/2009:08:56:45 +0000] - OPERATION - INFO - conn=68 op=0 EXTENDED RESPONSE err=0 msg="" etime=0
    [17/Sep/2009:08:56:45 +0000] - OPERATION - INFO - conn=68 op=1 BIND dn="cn=admin,cn=administrators,cn=dscc" method="SIMPLE" version=3
    [17/Sep/2009:08:56:45 +0000] - SERVER_OP - INFO - conn=68 op=1 BIND dn="cn=admin,cn=Administrators,cn=dscc" method="SIMPLE"" version=3 s_msgid=4 s_conn=dscc_ldap_mdtnj001ldap:3998:33
    *DS Error logs says:*
    [15/Sep/2009:09:35:59 +0000] - Sun-Java(tm)-System-Directory/6.3 B2008.0311.0058 (64-bit) starting up
    [15/Sep/2009:09:36:00 +0000] - Listening on all interfaces port 5389 for LDAP requests
    [15/Sep/2009:09:36:00 +0000] - Listening on all interfaces port 5390 for LDAPS requests
    [15/Sep/2009:09:36:00 +0000] - slapd started.
    [15/Sep/2009:09:36:00 +0000] - INFO: 161 entries in the directory database.
    [15/Sep/2009:09:36:00 +0000] - INFO: add:0, modify:0, modrdn:0, search:1, delete:0, compare:0, bind:0 since startup.
    [16/Sep/2009:09:36:00 +0000] - INFO: 161 entries in the directory database.
    [16/Sep/2009:09:36:00 +0000] - INFO: add:0, modify:2, modrdn:0, search:7348, delete:0, compare:0, bind:4 since startup.
    **DS Access logs says:**
    [17/Sep/2009:09:06:52 +0000] conn=630 op=44 msgId=45 - SRCH base="" scope=0 filter="(objectClass=1.1)" attrs=ALL
    [17/Sep/2009:09:06:52 +0000] conn=630 op=44 msgId=45 - RESULT err=0 tag=101 nentries=0 etime=0
    [17/Sep/2009:09:07:22 +0000] conn=637 op=180 msgId=1 - SRCH base="" scope=0 filter="(|(objectClass=*)(objectClass=ldapSubEntry))" attrs="1.1"
    [17/Sep/2009:09:07:22 +0000] conn=637 op=180 msgId=1 - RESULT err=0 tag=101 nentries=1 etime=0
    **On Ldap Client which is also Sun Sparc Box:**
    bash-3.00# ldapclient list
    NS_LDAP_FILE_VERSION= 2.0
    NS_LDAP_BINDDN= cn=proxyagent,ou=profile,dc=my-doamin,dc=com
    NS_LDAP_BINDPASSWD= {NS1}25c94587c053424f
    NS_LDAP_SERVERS= Y.Y.Y.Y:5389
    NS_LDAP_SEARCH_BASEDN= dc=my-domain,dc=com
    NS_LDAP_AUTH= simple
    NS_LDAP_SEARCH_REF= FALSE
    NS_LDAP_CACHETTL= 0
    NS_LDAP_CREDENTIAL_LEVEL= proxy
    bash-3.00# ldaplist -v
    +++ database=NULL
    +++ filter=objectclass=*
    +++ template for merging SSD filter=%s
    ldaplist: Object not found (Session error no available conn.
    I'm able to run successfully ldapsearch -p 5389 -h Y.Y.Y.Y -D "cn=Directory Manager" -b 'ou=People,dc=my-domain,dc=com' objectclass=* from client box [ When I'm using port 5389 where DS service is running on]
    BUT
    Getting Error when searching using port 5391 [Where DPS is running on ]
    bash-3.00# ldapsearch -p 5391 -h Y.Y.Y.Y -D "cn=Directory Manager" -b 'ou=People,dc=my-doamin,dc=com' objectclass=*
    Enter bind password:
    ldap_simple_bind: Operations error
    ldap_simple_bind: additional info: Unable to retrieve a backend BIND connection
    bash-3.00#
    bash-3.00# tail -f /var/ldap/cachemgr.log
    Tue Sep 15 09:06:38.0240 Starting ldap_cachemgr, logfile /var/ldap/cachemgr.log
    Tue Sep 15 09:06:38.0460 sig_ok_to_exit(): parent exiting...
    Tue Sep 15 09:31:25.3718 Starting ldap_cachemgr, logfile /var/ldap/cachemgr.log
    Tue Sep 15 09:31:25.3977 sig_ok_to_exit(): parent exiting...
    bash-3.00# tail -f /var/adm/messages
    Sep 17 03:44:41 mdtnj001wbs last message repeated 11 times
    Sep 17 03:44:41 mdtnj001wbs last message repeated 11 times
    Sep 17 03:48:31 mdtnj001wbs ldaplist[6828]: [ID 293258 user.error] libsldap: Status: 32 Mesg: openConnection: simple bind failed - No such object
    Sep 17 03:48:31 mdtnj001wbs ldaplist[6828]: [ID 293258 user.error] libsldap: Status: 32 Mesg: openConnection: simple bind failed - No such object
    Could you please help me out. Whats wrong configuration I made .. OR Did I forget to add....
    Thanks
    Sanjay

    Adding Few more Info for the same:
    I create My View/My Pool
    bash-3.00# /opt/ldap/master/dps6/bin/dpconf get-ldap-data-view-prop -h server-ldap -p 5391 -v My\ View
    alternate-search-base-dn : ""
    alternate-search-base-dn : dc=com
    attr-name-mappings : none
    base-dn : dc=my-doamin,dc=com
    contains-shared-entries : false
    custom-distribution-algorithm : none
    description : -
    distribution-algorithm : none
    dn-join-rule : none
    dn-mapping-attrs : none
    dn-mapping-source-base-dn : none
    excluded-subtrees : -
    filter-join-rule : none
    is-enabled : true
    is-read-only : false
    is-routable : true
    ldap-data-source-pool : My Pool
    lexicographic-attrs : all
    lexicographic-lower-bound : none
    lexicographic-upper-bound : none
    non-viewable-attr : none
    non-writable-attr : none
    numeric-attrs : all
    numeric-default-data-view : false
    numeric-lower-bound : none
    numeric-upper-bound : none
    pattern-matching-base-object-search-filter : all
    pattern-matching-dn-regular-expression : all
    pattern-matching-one-level-search-filter : all
    pattern-matching-subtree-search-filter : all
    process-bind : -
    replication-role : master
    viewable-attr : all except non-viewable-attr
    writable-attr : all except non-writable-attr
    The "get-ldap-data-view-prop" operation succeeded on "server-ldap:5391".
    bash-3.00# /opt/ldap/master/dps6/bin/dpconf list-attached-ldap-data-sources -h server-ldap -p 5391 -v My\ Pool
    SRC_NAME add-weight bind-weight compare-weight delete-weight modify-dn-weight modify-weight search-weight
    My DS disabled disabled disabled disabled disabled disabled 100
    The "list-attached-ldap-data-sources" operation succeeded on "server-ldap:5391".
    bash-3.00# /opt/ldap/master/dps6/bin/dpconf list-ldap-data-sources -v -h server-ldap -p 5391
    SRC_NAME is-enabled ldap-address ldap-port ldaps-port description
    My DS true server-ldap 5389 ldaps
    dscc_ldap_server-ldap:3998 true server-ldap 3998 ldaps dscc administration server
    The "list-ldap-data-sources" operation succeeded on "mdtnj001ldap:5391".
    If you need more info .. please let me know....
    Thanks
    Sanjay

  • [SOLVED] Login to Gnome Session fails when not online

    Sry, this is weird and i don't know how to fix it. Whenever i am not online during login stage in gdm i cannot
    start the Gnome Shell. I get the "Oops" Screen and need  to logout. All is fine when i am Online however.
    Even weirder: When i try to login for several times, usually 3-4, without being online and without restarting, gnome eventually disables all
    shell extensions and is starting... BUT after a restart the same problem appears even when all user extensions are still disabled ?!
    here is the output from journalctl ... has anyone, any clue ?
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: X Protocol Version 11, Revision 0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Build Operating System: Linux 3.18.1-1-ARCH x86_64
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Current Operating System: Linux iroha 3.18.3-1-ck #1 SMP PREEMPT Fri Jan 16 15:35:30 EST 2015 x86_64
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck root=UUID=2ce02639-13ab-47e6-bd7f-fca99207253f rw i8042.nomux=1 quiet
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Build Date: 29 December 2014 01:09:58PM
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Current version of pixman: 0.32.6
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Before reporting problems, check http://wiki.x.org
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: to make sure that you have the latest version.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Markers: (--) probed, (**) from config file, (==) default setting,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (++) from command line, (!!) notice, (II) informational,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (++) Log file: "/dev/null", Time: Thu Jan 22 14:04:22 2015
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) Using config directory: "/etc/X11/xorg.conf.d"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) No Layout section. Using the first Screen section.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) No screen section available. Using defaults.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) |-->Screen "Default Screen Section" (0)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) | |-->Monitor "<default monitor>"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) No device specified for screen "Default Screen Section".
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Using the first device section listed.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) | |-->Device "card0"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) No monitor specified for screen "Default Screen Section".
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Using a default monitor configuration.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) Automatically adding devices
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) Automatically enabling devices
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) Automatically adding GPU devices
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Entry deleted from font path.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Entry deleted from font path.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) FontPath set to:
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: /usr/share/fonts/misc/,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: /usr/share/fonts/TTF/,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: /usr/share/fonts/OTF/,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: /usr/share/fonts/Type1/
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) ModulePath set to "/usr/lib/xorg/modules"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) The server relies on udev to provide the list of input devices.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: If no devices become available, reconfigure udev or disable AutoAddDevices.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loader magic: 0x818d80
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module ABI versions:
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: X.Org ANSI C Emulation: 0.4
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: X.Org Video Driver: 18.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: X.Org XInput driver : 21.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: X.Org Server Extension : 8.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (EE) systemd-logind: failed to get session: PID 462 does not belong to any known session
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) xfree86: Adding drm device (/dev/dri/card0)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) PCI:*(0:0:2:0) 8086:0166:17aa:5006 rev 9, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00004000/64
    Jan 22 14:04:22 iroha acpid[440]: client connected from 462[0:0]
    Jan 22 14:04:22 iroha acpid[440]: 1 client rule loaded
    Jan 22 14:04:22 iroha accounts-daemon[463]: started daemon version 0.6.39
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Open ACPI successful (/var/run/acpid.socket)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) LoadModule: "glx"
    Jan 22 14:04:22 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.Accounts'
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module glx: vendor="X.Org Foundation"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: compiled for 1.16.3, module version = 1.0.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: ABI class: X.Org Server Extension, version 8.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) AIGLX enabled
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/AH-AP
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) LoadModule: "intel"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module intel: vendor="X.Org Foundation"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: compiled for 1.16.3, module version = 2.99.917
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Module class: X.Org Video Driver
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: ABI class: X.Org Video Driver, version 18.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (++) using VT number 1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20140905
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    Jan 22 14:04:22 iroha acpid[440]: client connected from 462[0:0]
    Jan 22 14:04:22 iroha acpid[440]: 1 client rule loaded
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Creating default Display subsection in Screen section
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: "Default Screen Section" for depth/fbbpp 24/32
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): Depth 24, (--) framebuffer bpp 32
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): RGB weight 888
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): Default visual is TrueColor
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) intel(0): Option "AccelMethod" "sna"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) intel(0): Option "Backlight" "intel_backlight"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Output LVDS1 has no monitor section
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Enabled output LVDS1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Output VGA1 has no monitor section
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Enabled output VGA1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Output HDMI1 has no monitor section
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Enabled output HDMI1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Output DP1 has no monitor section
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Enabled output DP1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Output VIRTUAL1 has no monitor section
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Enabled output VIRTUAL1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) intel(0): Output LVDS1 using initial mode 1366x768 on pipe 0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): TearFree disabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): DPI set to (96, 96)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loading sub module "dri2"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) LoadModule: "dri2"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module "dri2" already built-in
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loading sub module "present"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) LoadModule: "present"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module "present" already built-in
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) Depth 24 pixmap format is 32 bpp
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/WLAN-24EE87
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): Backing store enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): Silken mouse enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): HW Cursor enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): DPMS enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (==) intel(0): display hotplug detection enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): [DRI2] Setup complete
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): [DRI2] DRI driver: i965
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): [DRI2] VDPAU driver: i965
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): direct rendering: DRI2 enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): hardware support for Present enabled
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) RandR disabled
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/awesome-net
    Jan 22 14:04:22 iroha kernel: Switched to clocksource tsc
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/eduroam
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_ARB_create_context
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_ARB_create_context_profile
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_INTEL_swap_event
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_ARB_fbconfig_float
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: enabled GLX_ARB_create_context_robustness
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) AIGLX: Loaded and initialized i965
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) GLX: Initialized DRI2 GL provider for screen 0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    Jan 22 14:04:22 iroha haveged[441]: haveged: ver: 1.9.1; arch: x86; vend: GenuineIntel; build: (gcc 4.9.2 ITV); collect: 128K
    Jan 22 14:04:22 iroha haveged[441]: haveged: cpu: (L4 VC); data: 32K (L4 V); inst: 32K (L4 V); idx: 21/40; sz: 31910/59039
    Jan 22 14:04:22 iroha haveged[441]: haveged: tot tests(BA8): A:1/1 B:1/1 continuous tests(B): last entropy estimate 8.0016
    Jan 22 14:04:22 iroha haveged[441]: haveged: fills: 0, generated: 0
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/m1fun3
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) intel(0): Setting screen physical size to 361 x 203
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/WLAN-Zi
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/GFZ-1x
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/VPN connection 1
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/wlan-zi
    Jan 22 14:04:22 iroha mtp-probe[665]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5"
    Jan 22 14:04:22 iroha mtp-probe[665]: bus: 1, device: 4 was not an MTP device
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Power Button: Applying InputClass "system-keyboard"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) LoadModule: "evdev"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module evdev: vendor="X.Org Foundation"
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> new connection /etc/NetworkManager/system-connections/In da Hood!!
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: compiled for 1.16.2, module version = 2.9.1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Module class: X.Org XInput Driver
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: ABI class: X.Org XInput driver, version 21.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Using input driver 'evdev' for 'Power Button'
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Power Button: always reports core events
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) evdev: Power Button: Device: "/dev/input/event2"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: Power Button: Vendor 0 Product 0x1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: Power Button: Found keys
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) evdev: Power Button: Configuring as keyboard
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event2"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_rules" "evdev"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_model" "pc104"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_layout" "de"
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> monitoring kernel firmware directory '/usr/lib/firmware'.
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/ieee80211/phy0/rfkill1) (driver iwlwifi)
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> WiFi hardware radio set enabled
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> WWAN hardware radio set enabled
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-bluetooth.so
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-wifi.so
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-wwan.so
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> Loaded device plugin: /usr/lib/NetworkManager/libnm-device-plugin-adsl.so
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> WiFi enabled by radio killswitch; enabled by state file
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> WWAN enabled by radio killswitch; enabled by state file
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> WiMAX enabled by radio killswitch; enabled by state file
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> Networking is enabled by state file
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (lo): link connected
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (lo): carrier is ON
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (lo): new Generic device (driver: 'unknown' ifindex: 1)
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (lo): exported as /org/freedesktop/NetworkManager/Devices/0
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (enp8s0): carrier is OFF
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (enp8s0): new Ethernet device (driver: 'r8169' ifindex: 2)
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (enp8s0): exported as /org/freedesktop/NetworkManager/Devices/1
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (enp8s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: The XKEYBOARD keymap compiler (xkbcomp) reports:
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: > Ignoring extra symbols
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Errors from xkbcomp are not fatal to the X server
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Video Bus: Applying InputClass "system-keyboard"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Using input driver 'evdev' for 'Video Bus'
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Video Bus: always reports core events
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) evdev: Video Bus: Device: "/dev/input/event7"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: Video Bus: Vendor 0 Product 0x6
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: Video Bus: Found keys
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) evdev: Video Bus: Configuring as keyboard
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9/event7"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_rules" "evdev"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_model" "pc104"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_layout" "de"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) No input driver specified, ignoring this device.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) This device may have been added with another device file.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event4)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) No input driver specified, ignoring this device.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) This device may have been added with another device file.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event5)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) No input driver specified, ignoring this device.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) This device may have been added with another device file.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event6)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) No input driver specified, ignoring this device.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) This device may have been added with another device file.
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) AT Translated Set 2 keyboard: always reports core events
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: AT Translated Set 2 keyboard: Found keys
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 8)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_rules" "evdev"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_model" "pc104"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_layout" "de"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) LoadModule: "synaptics"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Module synaptics: vendor="X.Org Foundation"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: compiled for 1.16.0, module version = 1.8.1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: Module class: X.Org XInput Driver
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: ABI class: X.Org XInput driver, version 21.0
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: always reports core events
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "Device" "/dev/input/event8"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5706 (res 52)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4888 (res 98)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "FingerLow" "40"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "FingerHigh" "40"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "TapButton1" "1"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "TapButton2" "2"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "TapButton3" "3"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "HorizResolution" "65"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "VertResolution" "100"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: always reports core events
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event8"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 9)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.036
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event3)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) ThinkPad Extra Buttons: Applying InputClass "system-keyboard"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) ThinkPad Extra Buttons: always reports core events
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event3"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (--) evdev: ThinkPad Extra Buttons: Found keys
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input4/event3"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 10)
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_rules" "evdev"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_model" "pc104"
    Jan 22 14:04:22 iroha gdm-Xorg-:0[462]: (**) Option "xkb_layout" "de"
    Jan 22 14:04:22 iroha gdm[443]: Failed to give slave programs access to the display. Trying to proceed.
    Jan 22 14:04:22 iroha kernel: r8169 0000:08:00.0 enp8s0: link down
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (enp8s0): preparing device
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): using nl80211 for WiFi device control
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): driver supports Access Point (AP) mode
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): new 802.11 WiFi device (driver: 'iwlwifi' ifindex: 3)
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): exported as /org/freedesktop/NetworkManager/Devices/2
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Jan 22 14:04:22 iroha kernel: iwlwifi 0000:02:00.0: L1 Enabled - LTR Disabled
    Jan 22 14:04:22 iroha kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x0-0x0
    Jan 22 14:04:22 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:22 iroha systemd-logind[438]: New session c1 of user gdm.
    Jan 22 14:04:22 iroha systemd[924]: pam_unix(systemd-user:session): session opened for user gdm by (uid=0)
    Jan 22 14:04:22 iroha systemd[924]: Starting Sockets.
    Jan 22 14:04:22 iroha systemd[924]: Reached target Sockets.
    Jan 22 14:04:22 iroha systemd[924]: Starting Timers.
    Jan 22 14:04:22 iroha systemd[924]: Reached target Timers.
    Jan 22 14:04:22 iroha systemd[924]: Starting Paths.
    Jan 22 14:04:22 iroha systemd[924]: Reached target Paths.
    Jan 22 14:04:22 iroha systemd[924]: Starting Basic System.
    Jan 22 14:04:22 iroha systemd[924]: Reached target Basic System.
    Jan 22 14:04:22 iroha systemd[924]: Starting Default.
    Jan 22 14:04:22 iroha systemd[924]: Reached target Default.
    Jan 22 14:04:22 iroha systemd[924]: Startup finished in 6ms.
    Jan 22 14:04:22 iroha org.a11y.Bus[991]: Activating service name='org.a11y.atspi.Registry'
    Jan 22 14:04:22 iroha org.a11y.Bus[991]: Successfully activated service 'org.a11y.atspi.Registry'
    Jan 22 14:04:22 iroha org.a11y.atspi.Registry[1074]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    Jan 22 14:04:22 iroha gnome-session[943]: gnome-session[943]: WARNING: Could not parse desktop file orca-autostart.desktop or it references a not found TryExec binary
    Jan 22 14:04:22 iroha gnome-session[943]: WARNING: Could not parse desktop file orca-autostart.desktop or it references a not found TryExec binary
    Jan 22 14:04:22 iroha kernel: iwlwifi 0000:02:00.0: L1 Enabled - LTR Disabled
    Jan 22 14:04:22 iroha kernel: iwlwifi 0000:02:00.0: Radio type=0x2-0x0-0x0
    Jan 22 14:04:22 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Jan 22 14:04:22 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:22 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.UPower'
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): preparing device
    Jan 22 14:04:22 iroha dbus[435]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service'
    Jan 22 14:04:22 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:22 iroha dbus[435]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> wpa_supplicant started
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0) supports 5 scan SSIDs
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): supplicant interface state: starting -> ready
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0): supplicant interface state: ready -> disconnected
    Jan 22 14:04:22 iroha NetworkManager[442]: <info> (wlp2s0) supports 5 scan SSIDs
    Jan 22 14:04:22 iroha kernel: fuse init (API version 7.23)
    Jan 22 14:04:23 iroha kernel: media: Linux media interface: v0.10
    Jan 22 14:04:23 iroha kernel: Linux video capture interface: v2.00
    Jan 22 14:04:23 iroha kernel: Bluetooth: Core ver 2.19
    Jan 22 14:04:23 iroha kernel: NET: Registered protocol family 31
    Jan 22 14:04:23 iroha kernel: Bluetooth: HCI device and connection manager initialized
    Jan 22 14:04:23 iroha kernel: Bluetooth: HCI socket layer initialized
    Jan 22 14:04:23 iroha kernel: Bluetooth: L2CAP socket layer initialized
    Jan 22 14:04:23 iroha kernel: Bluetooth: SCO socket layer initialized
    Jan 22 14:04:23 iroha kernel: usbcore: registered new interface driver btusb
    Jan 22 14:04:23 iroha kernel: uvcvideo: Found UVC 1.00 device Integrated Camera (5986:0299)
    Jan 22 14:04:23 iroha kernel: input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input11
    Jan 22 14:04:23 iroha kernel: usbcore: registered new interface driver uvcvideo
    Jan 22 14:04:23 iroha kernel: USB Video Class driver (1.1.1)
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device Integrated Camera (/dev/input/event9)
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Integrated Camera: Applying InputClass "system-keyboard"
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) Using input driver 'evdev' for 'Integrated Camera'
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Integrated Camera: always reports core events
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) evdev: Integrated Camera: Device: "/dev/input/event9"
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (--) evdev: Integrated Camera: Vendor 0x5986 Product 0x299
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (--) evdev: Integrated Camera: Found keys
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) evdev: Integrated Camera: Configuring as keyboard
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input11/event9"
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 11)
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Option "xkb_rules" "evdev"
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Option "xkb_model" "pc104"
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (**) Option "xkb_layout" "de"
    Jan 22 14:04:23 iroha gnome-session[943]: Entering running state
    Jan 22 14:04:23 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'
    Jan 22 14:04:23 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:23 iroha tlp[1425]: Loading tp-smapi kernel module...done.
    Jan 22 14:04:23 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.ColorManager'
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
    Jan 22 14:04:23 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) intel(0): EDID vendor "LGD", prod id 852
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) intel(0): Printing DDC gathered Modelines:
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: (II) intel(0): Modeline "1366x768"x0.0 78.00 1366 1414 1450 1640 768 772 780 793 -hsync -vsync (47.6 kHz eP)
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha kernel: acpi_call: Cannot get handle: Error: AE_NOT_FOUND
    Jan 22 14:04:23 iroha tlp[1425]: Setting battery charge thresholds...done.
    Jan 22 14:04:23 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Successfully called chroot.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Successfully dropped privileges.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Successfully limited resources.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Running.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Watchdog thread running.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Canary thread running.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Successfully made thread 1456 of process 1456 (/usr/bin/pulseaudio) owned by '120' high priority at nice level -11.
    Jan 22 14:04:23 iroha rtkit-daemon[1460]: Supervising 1 threads of 1 processes of 1 users.
    Jan 22 14:04:23 iroha colord[1443]: /usr/lib/colord/colord-sane: error while loading shared libraries: libsane.so.1: cannot open shared object file: No such file or directory
    Jan 22 14:04:23 iroha tlp[1425]: Applying power save settings...done.
    Jan 22 14:04:23 iroha dbus[435]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Jan 22 14:04:23 iroha dbus[435]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Jan 22 14:04:23 iroha pulseaudio[1456]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.service failed to load: No such file or directory.
    Jan 22 14:04:23 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service'
    Jan 22 14:04:23 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:23 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.locale1'
    Jan 22 14:04:23 iroha NetworkManager[442]: <info> (wlp2s0): supplicant interface state: disconnected -> inactive
    Jan 22 14:04:23 iroha gnome-session[943]: Gjs-Message: JS LOG: Failed to launch ibus-daemon: Failed to execute child process "ibus-daemon" (No such file or directory)
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: The XKEYBOARD keymap compiler (xkbcomp) reports:
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: > Ignoring extra symbols
    Jan 22 14:04:23 iroha gdm-Xorg-:0[462]: Errors from xkbcomp are not fatal to the X server
    Jan 22 14:04:23 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service'
    Jan 22 14:04:23 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:23 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
    Jan 22 14:04:23 iroha polkitd[449]: Registered Authentication Agent for unix-session:c1 (system bus name :1.18 [gnome-shell --mode=gdm], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    Jan 22 14:04:23 iroha gnome-session[943]: Gjs-Message: JS LOG: No permission to trigger offline updates: Polkit.Error: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Action org.freedesktop.packagekit.trigger-offline-update is not registered
    Jan 22 14:04:24 iroha org.gnome.OnlineAccounts[991]: goa-daemon-Message: goa-daemon version 3.14.2 starting
    Jan 22 14:04:24 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
    Jan 22 14:04:24 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:24 iroha udisksd[1569]: udisks daemon version 2.1.3 starting
    Jan 22 14:04:24 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.UDisks2'
    Jan 22 14:04:24 iroha udisksd[1569]: Acquired the name org.freedesktop.UDisks2 on the system message bus
    Jan 22 14:04:25 iroha gnome-session[943]: Gjs-Message: JS LOG: GNOME Shell started at Thu Jan 22 2015 14:04:23 GMT+0100 (CET)
    Jan 22 14:04:25 iroha kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
    Jan 22 14:04:26 iroha kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input10
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event10)
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: always reports core events
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event10"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) Option "Emulate3Buttons" "false"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) Option "EmulateWheel" "true"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) Option "EmulateWheelButton" "2"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) Option "YAxisMapping" "4 5"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) Option "XAxisMapping" "6 7"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input10/event10"
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 12)
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) No input driver specified, ignoring this device.
    Jan 22 14:04:26 iroha gdm-Xorg-:0[462]: (II) This device may have been added with another device file.
    Jan 22 14:04:27 iroha NetworkManager[442]: <info> startup complete
    Jan 22 14:04:29 iroha NetworkManager[442]: <info> WiFi now disabled by radio killswitch
    Jan 22 14:04:29 iroha NetworkManager[442]: <info> (wlp2s0): device state change: disconnected -> unavailable (reason 'none') [30 20 0]
    Jan 22 14:04:29 iroha NetworkManager[442]: <info> (wlp2s0): deactivating device (reason 'none') [0]
    Jan 22 14:04:29 iroha logger[1589]: ACPI group/action undefined: button/wlan / WLAN
    Jan 22 14:04:32 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:32 iroha sysctl[1592]: fs.inotify.max_user_watches = 32768
    Jan 22 14:04:37 iroha gdm-password][1590]: pam_unix(gdm-password:session): session opened for user iroha by (unknown)(uid=0)
    Jan 22 14:04:37 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:04:37 iroha systemd-logind[438]: New session c2 of user iroha.
    Jan 22 14:04:37 iroha systemd[1595]: pam_unix(systemd-user:session): session opened for user iroha by (uid=0)
    Jan 22 14:04:37 iroha systemd[1595]: Starting -.slice.
    Jan 22 14:04:37 iroha systemd[1595]: Created slice -.slice.
    Jan 22 14:04:37 iroha systemd[1595]: Starting Sockets.
    Jan 22 14:04:37 iroha systemd[1595]: Reached target Sockets.
    Jan 22 14:04:37 iroha systemd[1595]: Starting Timers.
    Jan 22 14:04:37 iroha systemd[1595]: Reached target Timers.
    Jan 22 14:04:37 iroha systemd[1595]: Starting Paths.
    Jan 22 14:04:37 iroha systemd[1595]: Reached target Paths.
    Jan 22 14:04:37 iroha systemd[1595]: Starting Basic System.
    Jan 22 14:04:37 iroha systemd[1595]: Reached target Basic System.
    Jan 22 14:04:37 iroha systemd[1595]: Starting "Chrome Remote Desktop host daemon"...
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: 2015-01-22 14:04:37,208:INFO:Daemon process started in the background, logging to '/tmp/chrome_remote_desktop_20150122_140437_0SS98g'
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: Using host_id: a792e48a-fe0f-5943-9596-fac5157abb01
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: Launching X server and X session.
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: Starting Xvfb on display :20
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: Xvfb is active.
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: Launching X session: ['/etc/gdm/Xsession']
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: Launching host process
    Jan 22 14:04:37 iroha chrome-remote-desktop[1598]: ['/opt/google/chrome-remote-desktop/chrome-remote-desktop-host', '--host-config=-', '--audio-pipe-name=/home/iroha/.config/chrome-remote-desktop/pulseaudio#4da065af94/fifo_output', '--ssh-auth-sockname=/tmp/chromoting.iroha.ssh_auth_sock', '--signal-parent']
    Jan 22 14:04:38 iroha chromoting[1623]: Host started for user: [email protected]
    Jan 22 14:04:38 iroha org.a11y.Bus[1643]: Activating service name='org.a11y.atspi.Registry'
    Jan 22 14:04:38 iroha org.a11y.Bus[1643]: Successfully activated service 'org.a11y.atspi.Registry'
    Jan 22 14:04:38 iroha org.a11y.atspi.Registry[1666]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    Jan 22 14:04:38 iroha pulseaudio[1687]: [pulseaudio] sink.c: Default and alternate sample rates are the same.
    Jan 22 14:05:02 iroha gdm-password][1590]: pam_systemd(gdm-password:session): Failed to create session: Connection timed out
    Jan 22 14:05:02 iroha org.a11y.Bus[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha gnome-session[943]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha org.gtk.vfs.Daemon[991]: A connection to the bus can't be made
    Jan 22 14:05:02 iroha org.gtk.vfs.Daemon[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha gdm-launch-environment][803]: pam_systemd(gdm-launch-environment:session): Failed to release session: Interrupted system call
    Jan 22 14:05:02 iroha org.a11y.atspi.Registry[1074]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha ca.desrt.dconf[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha org.freedesktop.Telepathy.AccountManager[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha org.gnome.OnlineAccounts[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha gdm-session-worker[803]: <3>GLib: Source ID 72 was not found when attempting to remove it
    Jan 22 14:05:02 iroha org.gnome.Caribou.Daemon[991]: ** (caribou:1552): WARNING **: daemon.vala:186: can't hide keyboard: The connection is closed
    Jan 22 14:05:02 iroha org.gtk.Private.MTPVolumeMonitor[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Error sending message: Broken pipe (g-io-error-quark, 44). Exiting.
    Jan 22 14:05:02 iroha org.gnome.Caribou.Daemon[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha org.gtk.Private.UDisks2VolumeMonitor[991]: g_dbus_connection_real_closed: Remote peer vanished with error: Error receiving message: Connection reset by peer (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha gnome-session[943]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 22 14:05:02 iroha polkitd[449]: Unregistered Authentication Agent for unix-session:c1 (system bus name :1.18, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
    Jan 22 14:05:02 iroha systemd-logind[438]: Removed session c1.
    Jan 22 14:05:02 iroha systemd[924]: Stopping Default.
    Jan 22 14:05:02 iroha systemd[924]: Stopped target Default.
    Jan 22 14:05:02 iroha systemd[924]: Starting Shutdown.
    Jan 22 14:05:02 iroha systemd[924]: Reached target Shutdown.
    Jan 22 14:05:02 iroha systemd[924]: Starting Exit the Session...
    Jan 22 14:05:02 iroha systemd[924]: Stopping Basic System.
    Jan 22 14:05:02 iroha systemd[924]: Stopped target Basic System.
    Jan 22 14:05:02 iroha systemd[924]: Stopping Timers.
    Jan 22 14:05:02 iroha systemd[924]: Stopped target Timers.
    Jan 22 14:05:02 iroha systemd[924]: Stopping Sockets.
    Jan 22 14:05:02 iroha systemd[924]: Stopped target Sockets.
    Jan 22 14:05:02 iroha systemd[924]: Stopping Paths.
    Jan 22 14:05:02 iroha systemd[924]: Stopped target Paths.
    Jan 22 14:05:02 iroha systemd[924]: Received SIGRTMIN+24 from PID 1703 (kill).
    Jan 22 14:05:02 iroha /etc/gdm/Xsession[1702]: /etc/gdm/Xsession: Beginning session setup...
    Jan 22 14:05:02 iroha systemd[931]: pam_unix(systemd-user:session): session closed for user gdm
    Jan 22 14:05:02 iroha /etc/gdm/Xsession[1702]: gpg-agent: a gpg-agent is already running - not starting a new one
    Jan 22 14:05:02 iroha /etc/gdm/Xsession[1702]: localuser:iroha being added to access control list
    Jan 22 14:05:02 iroha /etc/gdm/Xsession[1702]: /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    Jan 22 14:05:02 iroha org.a11y.Bus[1726]: Activating service name='org.a11y.atspi.Registry'
    Jan 22 14:05:02 iroha org.a11y.Bus[1726]: Successfully activated service 'org.a11y.atspi.Registry'
    Jan 22 14:05:02 iroha org.a11y.atspi.Registry[1739]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    Jan 22 14:05:02 iroha rtkit-daemon[1460]: Successfully made thread 1764 of process 1764 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Jan 22 14:05:02 iroha rtkit-daemon[1460]: Supervising 2 threads of 2 processes of 1 users.
    Jan 22 14:05:02 iroha dbus[435]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Jan 22 14:05:02 iroha dbus[435]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service failed to load: No such file or directory.
    Jan 22 14:05:02 iroha pulseaudio[1764]: GetManagedObjects() failed: org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.service failed to load: No such file or directory.
    Jan 22 14:05:02 iroha gnome-session[1702]: GNOME_KEYRING_CONTROL=/home/iroha/.cache/keyring-CFEWSX
    Jan 22 14:05:02 iroha gnome-session[1702]: SSH_AUTH_SOCK=/home/iroha/.cache/keyring-CFEWSX/ssh
    Jan 22 14:05:02 iroha gnome-session[1702]: GNOME_KEYRING_CONTROL=/home/iroha/.cache/keyring-CFEWSX
    Jan 22 14:05:02 iroha gnome-session[1702]: SSH_AUTH_SOCK=/home/iroha/.cache/keyring-CFEWSX/ssh
    Jan 22 14:05:02 iroha gnome-session[1702]: GPG_AGENT_INFO=/home/iroha/.cache/keyring-CFEWSX/gpg:0:1
    Jan 22 14:05:02 iroha gnome-session[1702]: GNOME_KEYRING_CONTROL=/home/iroha/.cache/keyring-CFEWSX
    Jan 22 14:05:02 iroha gnome-session[1702]: SSH_AUTH_SOCK=/home/iroha/.cache/keyring-CFEWSX/ssh
    Jan 22 14:05:02 iroha gnome-session[1702]: GPG_AGENT_INFO=/home/iroha/.cache/keyring-CFEWSX/gpg:0:1
    Jan 22 14:05:02 iroha gnome-session[1702]: GNOME_KEYRING_CONTROL=/home/iroha/.cache/keyring-CFEWSX
    Jan 22 14:05:02 iroha gnome-session[1702]: SSH_AUTH_SOCK=/home/iroha/.cache/keyring-CFEWSX/ssh
    Jan 22 14:05:02 iroha gnome-session[1702]: GPG_AGENT_INFO=/home/iroha/.cache/keyring-CFEWSX/gpg:0:1
    Jan 22 14:05:02 iroha gnome-session[1702]: error: XDG_RUNTIME_DIR not set in the environment.
    Jan 22 14:05:02 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
    Jan 22 14:05:02 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:05:02 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.hostname1'
    Jan 22 14:05:03 iroha dbus[435]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service'
    Jan 22 14:05:03 iroha systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 22 14:05:03 iroha dbus[435]: [system] Successfully activated service 'org.freedesktop.locale1'
    Jan 22 14:05:03 iroha gnome-session[1702]: (gnome-shell:1785): Gjs-WARNING **: JS ERROR: Error: Argument 'string' (type utf8) may not be null
    Jan 22 14:05:03 iroha gnome-session[1702]: _pack_variant@resource:///org/gnome/gjs/modules/overrides/GLib.js:104
    Jan 22 14:05:03 iroha gnome-session[1702]: _pack_variant@resource:///org/gnome/gjs/modules/overrides/GLib.js:151
    Jan 22 14:05:03 iroha gnome-session[1702]: @resource:///org/gnome/gjs/modules/overrides/GLib.js:261
    Jan 22 14:05:03 iroha gnome-session[1702]: _proxyInvoker@resource:///org/gnome/gjs/modules/overrides/Gio.js:78
    Jan 22 14:05:03 iroha gnome-session[1702]: _makeProxyMethod/<@resource:///org/gnome/gjs/modules/overrides/Gio.js:124
    Jan 22 14:05:03 iroha gnome-session[1702]: LoginManagerSystemd<.getCurrentSessionProxy@resource:///org/gnome/shell/misc/loginManager.js:120
    Jan 22 14:05:03 iroha gnome-session[1702]: wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    Jan 22 14:05:03 iroha gnome-session[1702]: ScreenShield<._init@resource:///org/gnome/shell/ui/screenShield.js:558
    Jan 22 14:05:03 iroha gnome-session[1702]: wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    Jan 22 14:05:03 iroha gnome-session[1702]: _Base.prototype._construct@resource:///org/gnome/gjs/modules/lang.js:110
    Jan 22 14:05:03 iroha gnome-session[1702]: Class.prototype._construct/newClass@resource:///org/gnome/gjs/modules/lang.js:204
    Jan 22 14:05:03 iroha gnome-session[1702]: _initializeUI@resource:///org/gnome/shell/ui/main.js:150
    Jan 22 14:05:03 iroha gnome-session[1702]: start@resource:///org/gnome/shell/ui/main.js:112
    Jan 22 14:05:03 iroha gnome-session[1702]: @<main>:1
    Jan 22 14:05:03 iroha gnome-session[1702]: ** Message: Execution of main.js threw exception: JS_EvaluateScript() failed
    Jan 22 14:05:03 iroha gnome-session[1702]: gnome-session[1702]: WARNING: App 'gnome-shell.desktop' exited with code 1
    Jan 22 14:05:03 iroha gnome-session[1702]: WARNING: App 'gnome-shell.desktop' exited with code 1
    Jan 22 14:05:04 iroha gnome-session[1702]: (gnome-shell:1803): Gjs-WARNING **: JS ERROR: Error: Argument 'string' (type utf8) may not be null
    Jan 22 14:05:04 iroha gnome-session[1702]: _pack_variant@resource:///org/gnome/gjs/modules/overrides/GLib.js:104
    Jan 22 14:05:04 iroha gnome-session[1702]: _pack_variant@resource:///org/gnome/gjs/modules/overrides/GLib.js:151
    Jan 22 14:05:04 iroha gnome-session[1702]: @resource:///org/gnome/gjs/modules/overrides/GLib.js:261
    Jan 22 14:05:04 iroha gnome-session[1702]: _proxyInvoker@resource:///org/gnome/gjs/modules/overrides/Gio.js:78
    Jan 22 14:05:04 iroha gnome-session[1702]: _makeProxyMethod/<@resource:///org/gnome/gjs/modules/overrides/Gio.js:124
    Jan 22 14:05:04 iroha gnome-session[1702]: LoginManagerSystemd<.getCurrentSessionProxy@resource:///org/gnome/shell/misc/loginManager.js:120
    Jan 22 14:05:04 iroha gnome-session[1702]: wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    Jan 22 14:05:04 iroha gnome-session[1702]: ScreenShield<._init@resource:///org/gnome/shell/ui/screenShield.js:558
    Jan 22 14:05:04 iroha gnome-session[1702]: wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    Jan 22 14:05:04 iroha gnome-session[1702]: _Base.prototype._construct@resource:///org/gnome/gjs/modules/lang.js:110
    Jan 22 14:05:04 iroha gnome-session[1702]: Class.prototype._construct/newClass@resource:///org/gnome/gjs/modules/lang.js:204
    Jan 22 14:05:04 iroha gnome-session[1702]: _initializeUI@resource:///org/gnome/shell/ui/main.js:150
    Jan 22 14:05:04 iroha gnome-session[1702]: start@resource:///org/gnome/shell/ui/main.js:112
    Jan 22 14:05:04 iroha gnome-session[1702]: @<main>:1
    Jan 22 14:05:04 iroha gnome-session[1702]: ** Message: Execution of main.js threw exception: JS_EvaluateScript() failed
    Jan 22 14:05:04 iroha gnome-session[1702]: WARNING: App 'gnome-shell.desktop' exited with code 1
    Jan 22 14:05:04 iroha gnome-session[1702]: WARNING: App 'gnome-shell.desktop' respawning too quickly
    Jan 22 14:05:04 iroha gnome-session[1702]: gnome-session[1702]: WARNING: App 'gnome-shell.desktop' exited with code 1
    Jan 22 14:05:04 iroha gnome-session[1702]: gnome-session[1702]: WARNING: App 'gnome-shell.desktop' respawning too quickly
    Jan 22 14:05:04 iroha gnome-session[1702]: (gnome-settings-daemon:1754): GLib-GIO-CRITICAL **: g_dbus_proxy_call_internal: assertion 'G_IS_DBUS_PROXY (proxy)' failed
    Jan 22 14:05:04 iroha gnome-session[1702]: Unrecoverable failure in required component gnome-shell.desktop
    Jan 22 14:05:04 iroha gnome-session[1702]: megasync: /usr/lib/libcrypto.so.1.0.0: no version information available (required by megasync)
    Jan 22 14:05:04 iroha gnome-session[1702]: megasync: /usr/lib/libssl.so.1.0.0: no version information available (required by megasync)
    Jan 22 14:05:04 iroha gnome-session[1702]: megasync: /usr/lib/libssl.so.1.0.0: no version information available (required by megasync)
    Jan 22 14:05:04 iroha gnome-session[1702]: Entering running state
    Jan 22 14:05:04 iroha gnome-session[1702]: (uint32 1,)
    Jan 22 14:05:04 iroha gnome-session[1702]: Failed to play sound: File or data not found
    Jan 22 14:05:04 iroha gnome-session[1702]: Initializing nautilus-dropbox 2.10.0
    Jan 22 14:05:04 iroha org.gnome.OnlineAccounts[1726]: goa-daemon-Message: goa-daemon version 3.14.2 starting
    Jan 22 14:05:04 iroha org.gnome.zeitgeist.Engine[1726]: ** (zeitgeist-datahub:1904): WARNING **: zeitgeist-datahub.vala:226: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
    Jan 22 14:05:05 iroha gnome-session[1702]: [13:05:05][warn] QT Warning: No systemtrayicon available
    Jan 22 14:05:05 iroha gnome-session[1702]: (gnome-settings-daemon:1754): GLib-GIO-CRITICAL **: g_dbus_proxy_call_internal: assertion 'G_IS_DBUS_PROXY (proxy)' failed
    Jan 22 14:05:05 iroha gnome-session[1702]: [13:05:05][err] Error in c-ares. Reinitializing...
    Jan 22 14:05:05 iroha gnome-session[1702]: [13:05:05][err] Invalid DNS servers: 127.0.0.1
    Jan 22 14:05:05 iroha gnome-session[1702]: [13:05:05][err] Error in c-ares. Reinitializing...
    Jan 22 14:05:05 iroha gnome-session[1702]: [13:05:05][err] Invalid DNS servers: 127.0.0.1
    Jan 22 14:05:06 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:06 iroha gnome-session[1702]: [13:05:06][err] Error in c-ares. Reinitializing...
    Jan 22 14:05:06 iroha gnome-session[1702]: [13:05:06][err] Invalid DNS servers: 127.0.0.1
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: ** (nautilus:1830): WARNING **: connect() failed
    Jan 22 14:05:07 iroha gnome-session[1702]: [13:05:07][err] Error in c-ares. Reinitializing...
    Jan 22 14:05:07 iroha gnome-session[1702]: [13:05:

    damn ! that was it ... you wouldn't believe how long i was struggling with that strange error
    chrome-remote-desktop is actually  a pretty cool tool to remotely control your pc from your mobile.
    well, but it had to go now ... thanks for your help !

  • DataGuard Standby 環境で db が open できない.

    DataGuard Standby 環境で db が open できなくて困っています。
    詳しい方いれば、原因と対処方法を教えていただきたいと思います。
    create した spfile が正確に読み込まれていないことが原因のようなのですが。。
    なぜ読み込めないのかが分からない状態です。
    pfile を読み込んだ起動は可能ですが、spfile を読み込んだ起動の前提条件とは、
    何なのでしょうか。単に整合性が取れていないだけなのか、それとも、、。
    [grid@osaka1 shell]$ asmcmd
    ASMCMD> ls
    DATA/
    FRA/
    ASMCMD> cd data
    ASMCMD> ls
    ASM/
    WEST/
    ASMCMD> ls -l
    Type  Redund  Striped  Time             Sys  Name
                                            Y    ASM/
                                            N    WEST/
    ASMCMD>
    ASMCMD> cd west
    ASMCMD> ls
    CONTROLFILE/
    DATAFILE/
    ONLINELOG/
    PARAMETERFILE/
    TEMPFILE/
    spfilewest.ora
    ASMCMD> ls -l
    Type           Redund  Striped  Time             Sys  Name
                                                     N    CONTROLFILE/
                                                     N    DATAFILE/
                                                     N    ONLINELOG/
                                                     N    PARAMETERFILE/
                                                     N    TEMPFILE/
                                                     N    spfilewest.ora => +DATA/WEST/PARAMETERFILE/spfile.257.824236121
    ASMCMD> pwd
    +data/west
    ASMCMD>
    ASMCMD> cd para*
    ASMCMD> ls -l
    Type           Redund  Striped  Time             Sys  Name
    PARAMETERFILE  MIRROR  COARSE   AUG 23 18:00:00  Y    spfile.257.824236121
    ASMCMD>
    ASMCMD> pwd
    +data/west/PARAMETERFILE
    ASMCMD> quit
    [grid@osaka1 shell]$
    [oracle@osaka1 dbs]$ more initHPYMUSIC.ora
    SPFILE='+DATA/west/spfilewest.ora'
    [oracle@osaka1 dbs]$
    よろしくお願い致します。
    ps.
    ORA-12154 は整合性の問題であるので、それを合わせれば消えると思っています。
    そもそも RAC を前提としていたのですが、それを standalone に置き換えて検証始めた結果、
    こうなってしまっています。
    open できない原因が ORA-12154 だったりして。。
    ■ プライマリの場合
    ○ open するほうは、シンプルに以下だけで open することが確認できる。
       が、db_name を変更した関係で
       「ORA-12154: TNS: 指定された接続識別子を解決できませんでした」
       が出続けている。
       ORA-12154 は db が open できない原因とは無関係かもしれない。
    srvctl stop database -d east -f
    srvctl start database -d east -o open
    srvctl config database -d east
    srvctl status database -d east
    ○ 参考出力
    set linesize 500 pages 0
    col value for a90
    col name for a50
    select name, value
    from v$parameter
    where name in ('db_name','db_unique_name','log_archive_config', 'log_archive_dest_1','log_archive_dest_2',
                   'log_archive_dest_state_1','log_archive_dest_state_2', 'remote_login_passwordfile',
                   'log_archive_format','log_archive_max_processes','fal_server','db_file_name_convert',
                   'log_file_name_convert', 'standby_file_management');
    SQL>
    db_file_name_convert
    log_file_name_convert
    log_archive_dest_1
    log_archive_dest_2            SERVICE=HPYMUSIC SYNC NOAFFIRM VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=west
    log_archive_dest_state_1      enable
    log_archive_dest_state_2      enable
    fal_server
    log_archive_config
    log_archive_format            %t_%s_%r.dbf
    log_archive_max_processes     4
    standby_file_management       AUTO
    remote_login_passwordfile     EXCLUSIVE
    db_name                       HPYMUSIC
    db_unique_name                HPYMUSIC    ← ▼ db_name だけを変更したつもりが db_unique_name も変更されていた
    14行が選択されました。
    [oracle@tokyo1 shell]$ srvctl stop database -d east -f
    [oracle@tokyo1 shell]$ /u01/app/11.2.0/grid/bin/crsctl status resource -t
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Cluster Resources
    ora.east.db
          1        OFFLINE OFFLINE                               Instance Shutdown
    [oracle@tokyo1 shell]$ srvctl start database -d east -o open
    [oracle@tokyo1 shell]$ /u01/app/11.2.0/grid/bin/crsctl status resource -t
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Local Resources
    ora.DATA.dg
                   ONLINE  ONLINE       tokyo1
    ora.FRA.dg
                   ONLINE  ONLINE       tokyo1
    ora.LISTENER.lsnr
                   ONLINE  ONLINE       tokyo1
    ora.asm
                   ONLINE  ONLINE       tokyo1                   Started
    Cluster Resources
    ora.cssd
          1        ONLINE  ONLINE       tokyo1
    ora.diskmon
          1        ONLINE  ONLINE       tokyo1
    ora.east.db
          1        ONLINE  ONLINE       tokyo1                   Open ← ▼
    [oracle@tokyo1 shell]$
    [oracle@tokyo1 shell]$ srvctl config database -d east
    一意のデータベース名: east
    データベース名: east
    Oracleホーム: /u01/app/oracle/product/11.2.0/dbhome_1
    Oracleユーザー: grid
    spfile: +DATA/east/spfileeast.ora
    ドメイン:
    開始オプション: open
    停止オプション: immediate
    データベース・ロール: PRIMARY
    管理ポリシー: AUTOMATIC
    ディスク・グループ: DATA,FRA
    サービス:
    [oracle@tokyo1 shell]$ srvctl status database -d east
    データベースは実行中です。
    Fri Aug 23 19:44:10 2013
    Error 12154 received logging on to the standby
    Errors in file /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_arc2_7579.trc:
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    PING[ARC2]: Heartbeat failed to connect to standby 'HPYMUSIC'. Error is 12154.
    [oracle@tokyo1 dbs]$ pwd
    /u01/app/oracle/product/11.2.0/dbhome_1/dbs
    [oracle@tokyo1 dbs]$
    [oracle@tokyo1 dbs]$
    [oracle@tokyo1 dbs]$ more 2013.08.23_east_pfile.txt
    HPYMUSIC.__db_cache_size=301989888
    HPYMUSIC.__java_pool_size=4194304
    HPYMUSIC.__large_pool_size=8388608
    HPYMUSIC.__pga_aggregate_target=339738624
    HPYMUSIC.__sga_target=503316480
    HPYMUSIC.__shared_io_pool_size=0
    HPYMUSIC.__shared_pool_size=176160768
    HPYMUSIC.__streams_pool_size=0
    *.audit_file_dest='/u01/app/oracle/admin/east/adump'
    *.audit_trail='db'
    *.compatible='11.2.0.0.0'
    *.control_files='+DATA/east/controlfile/current.270.823277705','+FRA/east/controlfile/current.
    260.823277707'
    *.db_block_checking='TRUE'
    *.db_block_checksum='TRUE'
    *.db_block_size=8192
    *.db_create_file_dest='+DATA'
    *.db_domain=''
    *.db_name='HPYMUSIC'
    *.db_recovery_file_dest='+FRA'
    *.db_recovery_file_dest_size=3038773248
    *.diagnostic_dest='/u01/app/oracle'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=HPYMUSICXDB)'
    *.log_archive_format='%t_%s_%r.dbf'
    *.memory_target=842006528
    *.nls_language='JAPANESE'
    *.nls_territory='JAPAN'
    *.open_cursors=300
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.standby_file_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    Fri Aug 23 19:49:38 2013
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    ARCH: Warning; less destinations available than specified
    by LOG_ARCHIVE_MIN_SUCCEED_DEST init.ora parameter
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =27
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    Using parameter settings in server-side spfile /u01/app/oracle/product/11.2.0/dbhome_1/dbs/spfileHPYMUSIC.ora
    System parameters with non-default values:
      processes                = 150
      nls_language             = "JAPANESE"
      nls_territory            = "JAPAN"
      memory_target            = 804M
      control_files            = "+DATA/east/controlfile/current.270.823277705"
      control_files            = "+FRA/east/controlfile/current.260.823277707"
      db_block_checksum        = "TRUE"
      db_block_size            = 8192
      compatible               = "11.2.0.0.0"
      log_archive_dest_2       = "SERVICE=HPYMUSIC SYNC NOAFFIRM VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=west"
      log_archive_format       = "%t_%s_%r.dbf"
      db_create_file_dest      = "+DATA"
      db_recovery_file_dest    = "+FRA"
      db_recovery_file_dest_size= 2898M
      standby_file_management  = "AUTO"
      undo_tablespace          = "UNDOTBS1"
      db_block_checking        = "TRUE"
      remote_login_passwordfile= "EXCLUSIVE"
      db_domain                = ""
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=HPYMUSICXDB)"
      audit_file_dest          = "/u01/app/oracle/admin/east/adump"
      audit_trail              = "DB"
      db_name                  = "HPYMUSIC"
      open_cursors             = 300
      diagnostic_dest          = "/u01/app/oracle"
    Fri Aug 23 19:49:39 2013
    PMON started with pid=2, OS id=8442
    Fri Aug 23 19:49:39 2013
    VKTM started with pid=3, OS id=8444 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Fri Aug 23 19:49:39 2013
    GEN0 started with pid=4, OS id=8448
    Fri Aug 23 19:49:39 2013
    DIAG started with pid=5, OS id=8450
    Fri Aug 23 19:49:39 2013
    DBRM started with pid=6, OS id=8452
    Fri Aug 23 19:49:39 2013
    PSP0 started with pid=7, OS id=8454
    Fri Aug 23 19:49:39 2013
    DIA0 started with pid=8, OS id=8456
    Fri Aug 23 19:49:39 2013
    MMAN started with pid=9, OS id=8458
    Fri Aug 23 19:49:39 2013
    DBW0 started with pid=10, OS id=8460
    Fri Aug 23 19:49:39 2013
    LGWR started with pid=11, OS id=8462
    Fri Aug 23 19:49:39 2013
    CKPT started with pid=12, OS id=8464
    Fri Aug 23 19:49:39 2013
    SMON started with pid=13, OS id=8466
    Fri Aug 23 19:49:39 2013
    RECO started with pid=14, OS id=8468
    Fri Aug 23 19:49:39 2013
    RBAL started with pid=15, OS id=8470
    Fri Aug 23 19:49:39 2013
    ASMB started with pid=16, OS id=8472
    Fri Aug 23 19:49:39 2013
    MMON started with pid=17, OS id=8474
    Fri Aug 23 19:49:39 2013
    MMNL started with pid=18, OS id=8478
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    NOTE: initiating MARK startup
    starting up 1 shared server(s) ...
    Starting background process MARK
    Fri Aug 23 19:49:39 2013
    MARK started with pid=20, OS id=8482
    NOTE: MARK has subscribed
    ORACLE_BASE not set in environment. It is recommended
    that ORACLE_BASE be set in the environment
    Reusing ORACLE_BASE from an earlier startup = /u01/app/oracle
    Fri Aug 23 19:49:39 2013
    ALTER DATABASE MOUNT
    NOTE: Loaded library: System
    SUCCESS: diskgroup DATA was mounted
    ERROR: failed to establish dependency between database HPYMUSIC and diskgroup resource ora.DATA.dg
    SUCCESS: diskgroup FRA was mounted
    ERROR: failed to establish dependency between database HPYMUSIC and diskgroup resource ora.FRA.dg
    Fri Aug 23 19:49:46 2013
    NSS2 started with pid=24, OS id=8572
    Successful mount of redo thread 1, with mount id 2951868947
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: ALTER DATABASE MOUNT
    ALTER DATABASE OPEN
    LGWR: STARTING ARCH PROCESSES
    Fri Aug 23 19:49:47 2013
    ARC0 started with pid=26, OS id=8574
    ARC0: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    ARC0: STARTING ARCH PROCESSES
    Fri Aug 23 19:49:48 2013
    ARC1 started with pid=27, OS id=8576
    Fri Aug 23 19:49:48 2013
    ARC2 started with pid=28, OS id=8578
    ARC1: Archival started
    ARC2: Archival started
    ARC1: Becoming the 'no FAL' ARCH
    ARC1: Becoming the 'no SRL' ARCH
    ARC2: Becoming the heartbeat ARCH
    Fri Aug 23 19:49:48 2013
    ARC3 started with pid=29, OS id=8580
    LGWR: Setting 'active' archival for destination LOG_ARCHIVE_DEST_2
    ARC3: Archival started
    ARC0: STARTING ARCH PROCESSES COMPLETE
    Error 12154 received logging on to the standby
    Fri Aug 23 19:49:51 2013
    Errors in file /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_lgwr_8462.trc:
    ORA-12154: TNS: ?????????????????????
    Error 12154 for archive log file 2 to 'HPYMUSIC'
    LGWR: Failed to archive log 2 thread 1 sequence 8 (12154)
    Thread 1 advanced to log sequence 8 (thread open)
    Thread 1 opened at log sequence 8
      Current log# 2 seq# 8 mem# 0: +DATA/hpymusic/onlinelog/group_2.272.824213887
      Current log# 2 seq# 8 mem# 1: +FRA/hpymusic/onlinelog/group_2.262.824213889
    Successful open of redo thread 1
    Fri Aug 23 19:49:51 2013
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Aug 23 19:49:51 2013
    SMON: enabling cache recovery
    Error 12154 received logging on to the standby
    Errors in file /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_arc2_8578.trc:
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    PING[ARC2]: Heartbeat failed to connect to standby 'HPYMUSIC'. Error is 12154.
    Archived Log entry 7 added for thread 1 sequence 7 ID 0xaff1210d dest 1:
    Error 12154 received logging on to the standby
    Errors in file /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_arc3_8580.trc:
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    FAL[server, ARC3]: Error 12154 creating remote archivelog file 'HPYMUSIC'
    FAL[server, ARC3]: FAL archive failed, see trace file.
    Errors in file /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_arc3_8580.trc:
    ORA-16055: FALリクエストが拒否されました。
    ARCH: FAL archive failed. Archiver continuing
    ORACLE Instance HPYMUSIC - Archival Error. Archiver continuing.
    Successfully onlined Undo Tablespace 2.
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    Database Characterset is AL32UTF8
    No Resource Manager plan active
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Fri Aug 23 19:49:55 2013
    QMNC started with pid=32, OS id=8590
    Completed: ALTER DATABASE OPEN
    Fri Aug 23 19:49:59 2013
    Starting background process CJQ0
    Fri Aug 23 19:49:59 2013
    CJQ0 started with pid=33, OS id=8609
    Fri Aug 23 19:49:59 2013
    db_recovery_file_dest_size of 2898 MB is 6.38% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    [root@tokyo1 app]#
    [root@tokyo1 app]# more /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_arc2_8578.trc
    Trace file /u01/app/oracle/diag/rdbms/hpymusic/HPYMUSIC/trace/HPYMUSIC_arc2_8578.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    ORACLE_HOME = /u01/app/oracle/product/11.2.0/dbhome_1
    System name:    Linux
    Node name:      tokyo1.oracle11g.jp
    Release:        2.6.18-348.12.1.el5
    Version:        #1 SMP Wed Jul 10 05:28:41 EDT 2013
    Machine:        x86_64
    Instance name: HPYMUSIC
    Redo thread mounted by this instance: 1
    Oracle process number: 28
    Unix process pid: 8578, image: [email protected] (ARC2)
    *** 2013-08-23 19:49:51.707
    *** SESSION ID:(15.1) 2013-08-23 19:49:51.707
    *** CLIENT ID:() 2013-08-23 19:49:51.707
    *** SERVICE NAME:() 2013-08-23 19:49:51.707
    *** MODULE NAME:() 2013-08-23 19:49:51.707
    *** ACTION NAME:() 2013-08-23 19:49:51.707
    Redo shipping client performing standby login
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    *** 2013-08-23 19:49:51.972 4132 krsh.c
    Error 12154 received logging on to the standby
    *** 2013-08-23 19:49:51.972 869 krsu.c
    Error 12154 connecting to destination LOG_ARCHIVE_DEST_2 standby host 'HPYMUSIC'
    Error 12154 attaching to destination LOG_ARCHIVE_DEST_2 standby host 'HPYMUSIC'
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    *** 2013-08-23 19:49:51.973 4132 krsh.c
    PING[ARC2]: Heartbeat failed to connect to standby 'HPYMUSIC'. Error is 12154.
    *** 2013-08-23 19:49:51.973 2747 krsi.c
    krsi_dst_fail: dest:2 err:12154 force:0 blast:1
    *** 2013-08-23 19:50:49.816
    Redo shipping client performing standby login
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    *** 2013-08-23 19:50:50.070 4132 krsh.c
    Error 12154 received logging on to the standby
    *** 2013-08-23 19:50:50.070 869 krsu.c
    Error 12154 connecting to destination LOG_ARCHIVE_DEST_2 standby host 'HPYMUSIC'
    Error 12154 attaching to destination LOG_ARCHIVE_DEST_2 standby host 'HPYMUSIC'
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    *** 2013-08-23 19:50:50.070 4132 krsh.c
    PING[ARC2]: Heartbeat failed to connect to standby 'HPYMUSIC'. Error is 12154.
    *** 2013-08-23 19:50:50.070 2747 krsi.c
    krsi_dst_fail: dest:2 err:12154 force:0 blast:1
    *** 2013-08-23 19:51:51.147
    Redo shipping client performing standby login
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    OCIServerAttach failed -1
    .. Detailed OCI error val is 12154 and errmsg is 'ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    *** 2013-08-23 19:51:51.403 4132 krsh.c
    Error 12154 received logging on to the standby
    *** 2013-08-23 19:51:51.403 869 krsu.c
    Error 12154 connecting to destination LOG_ARCHIVE_DEST_2 standby host 'HPYMUSIC'
    Error 12154 attaching to destination LOG_ARCHIVE_DEST_2 standby host 'HPYMUSIC'
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    *** 2013-08-23 19:51:51.403 4132 krsh.c
    PING[ARC2]: Heartbeat failed to connect to standby 'HPYMUSIC'. Error is 12154.
    *** 2013-08-23 19:51:51.403 2747 krsi.c
    krsi_dst_fail: dest:2 err:12154 force:0 blast:1
    [root@tokyo1 app]#
    [grid@tokyo1 shell]$ ./grid_info_east-x.sh
    + export ORACLE_SID=+ASM
    + ORACLE_SID=+ASM
    + LOGDIR=/home/grid/log
    + PRIMARYDB=east_DGMGRL
    + STANDBYDB=
    + PASSWORD=dataguard
    + mkdir -p /home/grid/log
    ++ date +%y%m%d,%H%M%S
    + echo 'asm info,130823,195709'
    + sqlplus / as sysasm
    SQL*Plus: Release 11.2.0.1.0 Production on 金 8月 23 19:57:09 2013
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Automatic Storage Management option
    に接続されました。
    SQL> SQL>
    SYSDATE
    13-08-23
    SQL> SQL> SQL>
    NAME                                 TYPE                VALUE
    asm_diskgroups                       string              FRA
    asm_diskstring                       string              /dev/sd*1
    asm_power_limit                      integer             1
    asm_preferred_read_failure_groups    string
    audit_file_dest                      string              /u01/app/11.2.0/grid/rdbms/audit
    audit_sys_operations                 boolean             FALSE
    audit_syslog_level                   string
    background_core_dump                 string              partial
    background_dump_dest                 string              /u01/app/grid/diag/asm/+asm/+ASM/trace
    cluster_database                     boolean             FALSE
    cluster_database_instances           integer             1
    cluster_interconnects                string
    core_dump_dest                       string              /u01/app/grid/diag/asm/+asm/+ASM/cdump
    db_cache_size                        big integer         0
    db_ultra_safe                        string              OFF
    db_unique_name                       string              +ASM
    diagnostic_dest                      string              /u01/app/grid
    event                                string
    file_mapping                         boolean             FALSE
    filesystemio_options                 string              none
    ifile                                file
    instance_name                        string              +ASM
    instance_number                      integer             1
    instance_type                        string              asm
    large_pool_size                      big integer         12M
    ldap_directory_sysauth               string              no
    listener_networks                    string
    local_listener                       string
    lock_name_space                      string
    lock_sga                             boolean             FALSE
    max_dump_file_size                   string              unlimited
    memory_max_target                    big integer         272M
    memory_target                        big integer         272M
    nls_calendar                         string
    nls_comp                             string              BINARY
    nls_currency                         string
    nls_date_format                      string
    nls_date_language                    string
    nls_dual_currency                    string
    nls_iso_currency                     string
    nls_language                         string              AMERICAN
    nls_length_semantics                 string              BYTE
    nls_nchar_conv_excp                  string              FALSE
    nls_numeric_characters               string
    nls_sort                             string
    nls_territory                        string              AMERICA
    nls_time_format                      string
    nls_time_tz_format                   string
    nls_timestamp_format                 string
    nls_timestamp_tz_format              string
    os_authent_prefix                    string              ops$
    os_roles                             boolean             FALSE
    pga_aggregate_target                 big integer         0
    processes                            integer             100
    remote_listener                      string
    remote_login_passwordfile            string              EXCLUSIVE
    remote_os_authent                    boolean             FALSE
    remote_os_roles                      boolean             FALSE
    service_names                        string              +ASM
    sessions                             integer             172
    sga_max_size                         big integer         272M
    sga_target                           big integer         0
    shadow_core_dump                     string              partial
    shared_pool_reserved_size            big integer         6081740
    shared_pool_size                     big integer         0
    sort_area_size                       integer             65536
    spfile                               string              +DATA/asm/asmparameterfile/registry.253.823204697
    sql_trace                            boolean             FALSE
    statistics_level                     string              TYPICAL
    timed_os_statistics                  integer             0
    timed_statistics                     boolean             TRUE
    trace_enabled                        boolean             TRUE
    user_dump_dest                       string              /u01/app/grid/diag/asm/+asm/+ASM/trace
    workarea_size_policy                 string              AUTO
    ++ date +%y%m%d,%H%M%S
    + echo 'asmcmd info,130823,195709'
    + asmcmd ls -l
    State    Type    Rebal  Name
    MOUNTED  NORMAL  N      DATA/
    MOUNTED  NORMAL  N      FRA/
    + asmcmd ls -l 'data/asm/*'
    Type              Redund  Striped  Time             Sys  Name
    ASMPARAMETERFILE  MIRROR  COARSE   AUG 11 19:00:00  Y    REGISTRY.253.823204697
    + asmcmd ls -l 'data/east/*'
    Type           Redund  Striped  Time             Sys  Name
    +data/east/CONTROLFILE/:
    CONTROLFILE    HIGH    FINE     AUG 12 15:00:00  Y    Current.260.823276231
    CONTROLFILE    HIGH    FINE     AUG 23 19:00:00  Y    Current.270.823277705
    +data/east/DATAFILE/:
    DATAFILE       MIRROR  COARSE   AUG 12 15:00:00  Y    SYSAUX.257.823276133
    DATAFILE       MIRROR  COARSE   AUG 23 19:00:00  Y    SYSAUX.267.823277615
    DATAFILE       MIRROR  COARSE   AUG 12 15:00:00  Y    SYSTEM.256.823276131
    DATAFILE       MIRROR  COARSE   AUG 23 19:00:00  Y    SYSTEM.266.823277615
    DATAFILE       MIRROR  COARSE   AUG 12 15:00:00  Y    UNDOTBS1.258.823276133
    DATAFILE       MIRROR  COARSE   AUG 23 19:00:00  Y    UNDOTBS1.268.823277615
    DATAFILE       MIRROR  COARSE   AUG 12 15:00:00  Y    USERS.259.823276133
    DATAFILE       MIRROR  COARSE   AUG 23 19:00:00  Y    USERS.269.823277615
    +data/east/ONLINELOG/:
    ONLINELOG      MIRROR  COARSE   AUG 12 15:00:00  Y    group_1.261.823276235
    ONLINELOG      MIRROR  COARSE   AUG 12 15:00:00  Y    group_2.262.823276241
    ONLINELOG      MIRROR  COARSE   AUG 12 15:00:00  Y    group_3.263.823276247
    +data/east/PARAMETERFILE/:
    PARAMETERFILE  MIRROR  COARSE   AUG 23 12:00:00  Y    spfile.265.823277967
    +data/east/TEMPFILE/:
    TEMPFILE       MIRROR  COARSE   AUG 12 15:00:00  Y    TEMP.264.823276263
    TEMPFILE       MIRROR  COARSE   AUG 23 19:00:00  Y    TEMP.274.823277733
                                                     N    spfileeast.ora => +DATA/EAST/PARAMETERFILE/spfile.265.823277967
    + asmcmd ls -l 'fra/east/*'
    Type         Redund  Striped  Time             Sys  Name
    +fra/east/ARCHIVELOG/:
                                                   Y    2013_08_12/
                                                   Y    2013_08_15/
                                                   Y    2013_08_19/
                                                   Y    2013_08_22/
                                                   Y    2013_08_23/
    +fra/east/CONTROLFILE/:
    CONTROLFILE  HIGH    FINE     AUG 12 15:00:00  Y    Current.256.823276231
    CONTROLFILE  HIGH    FINE     AUG 23 19:00:00  Y    Current.260.823277707
    +fra/east/ONLINELOG/:
    ONLINELOG    MIRROR  COARSE   AUG 12 15:00:00  Y    group_1.257.823276237
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_10.272.823535727
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_11.273.823535737
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_12.274.823535745
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_13.275.823535757
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_14.276.823535763
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_15.277.823535771
    ONLINELOG    MIRROR  COARSE   AUG 12 15:00:00  Y    group_2.258.823276245
    ONLINELOG    MIRROR  COARSE   AUG 12 15:00:00  Y    group_3.259.823276251
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_7.269.823535685
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_8.270.823535695
    ONLINELOG    MIRROR  COARSE   AUG 23 19:00:00  Y    group_9.271.823535703
    +fra/east/STANDBYLOG/:
                                                   N    standby_group_07.log => +FRA/EAST/ONLINELOG/group_7.269.823535685
                                                   N    standby_group_08.log => +FRA/EAST/ONLINELOG/group_8.270.823535695
                                                   N    standby_group_09.log => +FRA/EAST/ONLINELOG/group_9.271.823535703
                                                   N    standby_group_10.log => +FRA/EAST/ONLINELOG/group_10.272.823535727
                                                   N    standby_group_11.log => +FRA/EAST/ONLINELOG/group_11.273.823535737
                                                   N    standby_group_12.log => +FRA/EAST/ONLINELOG/group_12.274.823535745
                                                   N    standby_group_13.log => +FRA/EAST/ONLINELOG/group_13.275.823535757
                                                   N    standby_group_14.log => +FRA/EAST/ONLINELOG/group_14.276.823535763
                                                   N    standby_group_15.log => +FRA/EAST/ONLINELOG/group_15.277.823535771
    + asmcmd find +data 'group*'
    +data/EAST/ONLINELOG/group_1.261.823276235
    +data/EAST/ONLINELOG/group_2.262.823276241
    +data/EAST/ONLINELOG/group_3.263.823276247
    +data/HPYMUSIC/ONLINELOG/group_1.271.824213881
    +data/HPYMUSIC/ONLINELOG/group_2.272.824213887
    +data/HPYMUSIC/ONLINELOG/group_3.273.824213895
    + asmcmd find +data 'spf*'
    +data/EAST/PARAMETERFILE/spfile.265.823277967
    +data/EAST/spfileeast.ora
    + asmcmd ls -l data/east/CONTROLFILE
    Type         Redund  Striped  Time             Sys  Name
    CONTROLFILE  HIGH    FINE     AUG 12 15:00:00  Y    Current.260.823276231
    CONTROLFILE  HIGH    FINE     AUG 23 19:00:00  Y    Current.270.823277705
    + asmcmd find +fra 'group*'
    +fra/EAST/ONLINELOG/group_1.257.823276237
    +fra/EAST/ONLINELOG/group_10.272.823535727
    +fra/EAST/ONLINELOG/group_11.273.823535737
    +fra/EAST/ONLINELOG/group_12.274.823535745
    +fra/EAST/ONLINELOG/group_13.275.823535757
    +fra/EAST/ONLINELOG/group_14.276.823535763
    +fra/EAST/ONLINELOG/group_15.277.823535771
    +fra/EAST/ONLINELOG/group_2.258.823276245
    +fra/EAST/ONLINELOG/group_3.259.823276251
    +fra/EAST/ONLINELOG/group_7.269.823535685
    +fra/EAST/ONLINELOG/group_8.270.823535695
    +fra/EAST/ONLINELOG/group_9.271.823535703
    +fra/HPYMUSIC/ONLINELOG/group_1.261.824213883
    +fra/HPYMUSIC/ONLINELOG/group_2.262.824213889
    +fra/HPYMUSIC/ONLINELOG/group_3.263.824213897
    + asmcmd find +fra 'spf*'
    + asmcmd ls -l fra/east/CONTROLFILE
    Type         Redund  Striped  Time             Sys  Name
    CONTROLFILE  HIGH    FINE     AUG 12 15:00:00  Y    Current.256.823276231
    CONTROLFILE  HIGH    FINE     AUG 23 19:00:00  Y    Current.260.823277707
    ++ date +%y%m%d,%H%M%S
    + echo END,130823,195712
    [grid@tokyo1 shell]$
    ■ 以下、スタンバイ側 ■ ■ ■ ■ ■ ■ ■
    export ORACLE_SID=HPYMUSIC
    sqlplus / as sysdba
    startup nomount pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt'
    create spfile='+data/west/spfilewest.ora' from pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt';
    srvctl stop database -d west -f
    srvctl start database -d west -o open
    srvctl start database -d west -o mount
    srvctl start database -d west
    startup mount pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt'
    srvctl start database -d west -o open
    srvctl config database -d west
    srvctl status database -d west
    alter database recover managed standby database disconnect from session;
    select name, database_role, open_mode from gv$database;
    srvctl modify database -d west -s open
    ○ spfile を作成する
    export ORACLE_SID=HPYMUSIC
    sqlplus / as sysdba
    startup nomount pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt'
    create spfile='+data/west/spfilewest.ora' from pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt';
    ○ 落とす
    srvctl stop database -d west -f
    ○ open したいが起動しない( Mounted (Closed) 状態で起動することもある)。
    srvctl start database -d west -o open
    PRCR-1079 : リソースora.west.dbの起動に失敗しました
    CRS-2674: Start of 'ora.west.db' on 'osaka1' failed
    ○ open したいが起動しない( Mounted (Closed) 状態で起動することもある)。
    srvctl start database -d west -o mount
    PRCR-1079 : リソースora.west.dbの起動に失敗しました
    CRS-2674: Start of 'ora.west.db' on 'osaka1' failed
    ○ open したいが起動しない( Mounted (Closed) 状態で起動することもある)。
    srvctl start database -d west
    PRCR-1079 : リソースora.west.dbの起動に失敗しました
    CRS-2674: Start of 'ora.west.db' on 'osaka1' failed
    ○ 起動するがエラーあり( alert_HPYMUSIC.log )
    startup mount pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt'
    [oracle@osaka1 dbs]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on 金 8月 23 19:05:35 2013
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    アイドル・インスタンスに接続しました。
    SQL> startup mount pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/pfile_for_standby_HPYMUSIC.txt'
    ORACLEインスタンスが起動しました。
    Total System Global Area  839282688 bytes
    Fixed Size                  2217992 bytes
    Variable Size             515901432 bytes
    Database Buffers          314572800 bytes
    Redo Buffers                6590464 bytes
    データベースがマウントされました。
    Error 12154 received logging on to the standby
    FAL[client, ARC3]: Error 12154 connecting to HPYMUSIC for fetching gap sequence
    Errors in file /u01/app/oracle/diag/rdbms/west/HPYMUSIC/trace/HPYMUSIC_arc3_25690.trc:
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    Errors in file /u01/app/oracle/diag/rdbms/west/HPYMUSIC/trace/HPYMUSIC_arc3_25690.trc:
    ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    ○ open にならず Mounted (Closed) としかなってくれない。
    srvctl start database -d west -o open
    [oracle@osaka1 dbs]$ srvctl start database -d west -o open
    [oracle@osaka1 dbs]$ /u01/app/11.2.0/grid/bin/crsctl status resource -t
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Local Resources
    ora.DATA.dg
                   ONLINE  ONLINE       osaka1
    ora.FRA.dg
                   ONLINE  ONLINE       osaka1
    ora.LISTENER.lsnr
                   ONLINE  ONLINE       osaka1
    ora.asm
                   ONLINE  ONLINE       osaka1                   Started
    Cluster Resources
    ora.cssd
          1        ONLINE  ONLINE       osaka1
    ora.diskmon
          1        ONLINE  ONLINE       osaka1
    ora.west.db
          1        ONLINE  INTERMEDIATE osaka1                   Mounted (Closed)

    srvctl config database -d west
    srvctl status database -d west
    [oracle@osaka1 dbs]$ srvctl config database -d west
    一意のデータベース名: west
    データベース名: HPYMUSIC
    Oracleホーム: /u01/app/oracle/product/11.2.0/dbhome_1
    Oracleユーザー: grid
    spfile: +data/west/spfilewest.ora
    ドメイン:
    開始オプション: open
    停止オプション: immediate
    データベース・ロール: physical_standby
    管理ポリシー: AUTOMATIC
    ディスク・グループ: DATA,FRA
    サービス:
    [oracle@osaka1 dbs]$ srvctl status database -d west
    データベースは実行中です。
    ○ mrp プロセスが起動するが、Read Only ではない。
    alter database recover managed standby database disconnect from session;
    select name, database_role, open_mode from gv$database;
    [oracle@osaka1 dbs]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on 金 8月 23 19:33:08 2013
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    に接続されました。
    SQL>
    SQL> alter database recover managed standby database disconnect from session;
    データベースが変更されました。
    SQL> select name, database_role, open_mode from gv$database;
    NAME                        DATABASE_ROLE
    OPEN_MODE
    HPYMUSIC                    PHYSICAL STANDBY
    MOUNTED
    [root@osaka1 app]# ps -ef |egrep -i mrp
    oracle   26269     1  0 19:33 ?        00:00:00 ora_mrp0_HPYMUSIC
    ○ modify しても open にならない。
    srvctl modify database -d west -s open
    [oracle@osaka1 dbs]$ srvctl modify database -d west -s open
    [oracle@osaka1 dbs]$ /u01/app/11.2.0/grid/bin/crsctl status resource -t
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Local Resources
    ora.DATA.dg
                   ONLINE  ONLINE       osaka1
    ora.FRA.dg
                   ONLINE  ONLINE       osaka1
    ora.LISTENER.lsnr
                   ONLINE  ONLINE       osaka1
    ora.asm
                   ONLINE  ONLINE       osaka1                   Started
    Cluster Resources
    ora.cssd
          1        ONLINE  ONLINE       osaka1
    ora.diskmon
          1        ONLINE  ONLINE       osaka1
    ora.west.db
          1        ONLINE  INTERMEDIATE osaka1                   Mounted (Closed)

    standby 側に、アーカイブログファイルを少し適用すれば open できそうに感じます。
    これを解決するためには、以下のエラーを解決するのがよいと思います。
    ・ORA-12154: TNS: 指定された接続識別子を解決できませんでした
    両ノードの tnsnames.ora を確認させて貰えますか?
    この推測が間違えていたら再検討しましょう。

  • Excel Services and Excel Web Access Web Part on O365 SharePoint...

    I am using O365 E3 w/SharePoint and I have successfully created Pivot Charts via PowerPivot to query oData feeds from a couple of SharePoint lists. I was not able to refresh the data on O365 until I performed
    this operation.
    I updated the data connections in the report to refresh when the report is opened (which runs when the page with a referenced chart is accessed), but now there is a "Query and Refresh Data" warning that appears when the page is loaded; poor UX.
    I have read that there is a way to turn off this warning in SharePoint on-prem, but that doesn't help me with this nagging dialog box. I tried to move the report to a BI site in the collection and changed the report to use data connection files in the Data
    Collection Library hoping for enough trust for this message to cease, but ... No joy.
    Is there anything That I can do to keep the refresh on page load and lose the warning on O365? Maybe there is a Javascsript workaround someone can help with (I'm not much of a JS Dev).

    Hi,
    According to your post, I have done a test in my SharePoint on-line and reappeared your issue.
    If the issue occurred at SharePoint on- premise, go to SharePoint Central Administration > Application Management > Service Applications > Manage service applications > Excel Services
    application > Trusted File Locations and click on the Address that contains the workbook. In the External Data section, under Warn on Refresh, uncheck Refresh warning enabled and click OK.
    Refer to the following link:
    http://blogs.technet.com/b/excel_services__powerpivot_for_sharepoint_support_blog/archive/2013/10/22/excel-services-query-warning.aspx
    Unfortunately, the feature to disable the ‘Data Refresh Warning’ is not available yet in SharePoint Online.
    Because the option needs the SharePoint Central Admin level permission that is not opened to the public in Office 365 now.
    Refer to the following link:
    http://community.office365.com/en-us/f/154/t/234874.aspx
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

Maybe you are looking for