Users can't login to Groupwise after export

Hi All
We have a two-node cluster running GW7.01 on Netware 6.5 SP7. As part of our disaster recovery test we've done the following:
1. Installed netware 6.5 sp7 onto a new server in its own tree.
2. Installed GW7 on this server, with an identical groupwise system i.e same domain name, etc (only difference is server name, IP, and tree name).
3. We then exported the NDS/GW objects from the current production tree using the GWport32 utility into the new tree on the new server.
4. We've restored from a backup tape the PO database file and the accompanying files, the domain database file, and all the files and sundirectories from the ofuser, ofmsg, and offiles directories onto their corresponding locations on the new server.
5. After getting C00F and D019 errors, we've tried to rebuild the ngwguard.db and the PO by running a standalone GWCheck.
Our problem is that I can login to the new server (edirectory tree) as any user albeit without any password but unable to login to groupwise. I've set and reset passwords in ConsoleOne but I still can't login to groupwise.
We would be very grateful if anyone could tell us what else we need to do.
We're hoping to achieve a situation where in an extreme disaster, we are able to restore mail from tape backups so that users can still logon to this new server and have full access to their mailboxes with ease.
regards
AD

awuku wrote:
> Hi All
> We have a two-node cluster running GW7.01 on Netware 6.5 SP7. As part
> of our disaster recovery test we've done the following:
>
> 1. Installed netware 6.5 sp7 onto a new server in its own tree.
>
> 2. Installed GW7 on this server, with an identical groupwise system i.e
> same domain name, etc (only difference is server name, IP, and tree
> name).
>
> 3. We then exported the NDS/GW objects from the current production tree
> using the GWport32 utility into the new tree on the new server.
>
> 4. We've restored from a backup tape the PO database file and the
> accompanying files, the domain database file, and all the files and
> sundirectories from the ofuser, ofmsg, and offiles directories onto
> their corresponding locations on the new server.
>
> 5. After getting C00F and D019 errors, we've tried to rebuild the
> ngwguard.db and the PO by running a standalone GWCheck.
>
> Our problem is that I can login to the new server (edirectory tree) as
> any user albeit without any password but unable to login to groupwise.
> I've set and reset passwords in ConsoleOne but I still can't login to
> groupwise.
>
> We would be very grateful if anyone could tell us what else we need to
> do.
>
> We're hoping to achieve a situation where in an extreme disaster, we
> are able to restore mail from tape backups so that users can still logon
> to this new server and have full access to their mailboxes with ease.
>
> regards
> AD
>
>
I would NEVER have use GWPORT32. Why did you?
1. You have to restore eDirectory in a different way.
2. If tree is still intact reimporting is bad
3. IF tree is not intact, you still have to restore eDirectory differently.

Similar Messages

  • Lync 2013 disabled user can still login.

    Ok. so we have this weird behavior and it's been driving us crazy for over a week. We have a lync 2013 deployment on a forest with several child domains.<o:p></o:p>
    In the middle of the deployment, we noticed that our changes to the user characteristics were not being updated. Eg: we enable or disable
    enterprise voice, no changes. We change the sip URI, log out, login, nothing, no changes. And we noticed that if we disable the user from Lync server (from the lync controlpanel), the user can still login. We assumed some lag on AD replication, but no, a user
    can still login after a week!<o:p></o:p>
    The deployment is a standard Lync 2013, single FE, with a single Edge server. We have enabled Enterprise voice, changes to the enterprise voice routes are
    working, if we enable or disable a route we can see it on the client, but changes on the dialplan are not reflected.<o:p></o:p>
    I can’t find any reference to this behavior. I know if I disable a user from the AD he can still signing into Lync, but this is different, we are disabling
    the user from Lync server. We even removed the user completely from Lync and he can still use it as normal.<o:p></o:p>
    We checked the user using adsiedit and the msrtcsip-userenabled is set to false, we even voided the certificate via lync console. Still able to use it.
    Suggestions?
    Thanks in advance.
    Fabio Ricci.

    Hi,
    Please check if there is any error message on FE Server when the issue happen.
    It seems to be the issue of CMS replication.
    Please check CMS replication status by running Get-CsManagementStoreReplicationStatus.
    If CMS replication not update to the latest version, run Invoke-CsManagementStoreReplication.
    If the issue persists, please check Lync Server update, make sure Lync Server update to the latest version, and then test again.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • A particular network user can't login to a mac in a classrom but other network users can. Then the network user can login to other identical macs in same classroom. Anyone seen this before?

    A particular network user can't login to a mac in a classrom but other network users can. Then the network user can login to other identical macs in same classroom. Anyone seen this before? It has happen twice. Two different teachers in two different classrooms entering the correct user name and passwords and computer won't allow them to login. Then they try in different computers in same classroom and have no problem login.

    Yes. I can login with a test user. And any other network user can login as well to this particular mac. Actually the mac has bootcamp and boots into either mac or windows. The same user entering the same login username and password can login into the windows side, but not the mac side.
    I had this same issue last semester in another classroom, another mac and a different teacher. This summer I reformatted and imaged that mac and I asked that teacher to login today to that reimagened mac and she had no problem today doing so.

  • Why the apple store is so expensive and why the apple users can't access for free after spending huge amount in apple phone ?

    Why the apple store is so expensive and why the apple users can't access for free after spending huge amount in apple phone ?

    The Apple store is correct. The warranty is not international, and Apple will not accept or return iPhones shipped from a different country.  You need to ship the phone to somebody in Hong Kong who can take it in to Apple for repair, or pay a third party repair shop in the Philippines to fix it.

  • The same user can only login once

    Hello,
    I have a problem with my system. I made a system where you must login.
    I use the following code:
    boolean login = false;
    String username= request.getParameter("username");
    String password= request.getParameter("password");
    User user= Usermutations.makeviaUsername(username);
    if (user.getPassword().equals(password) && !password.equals("")) login= true;
    if (login) ReqD = getServletContext().getRequestDispatcher("/Overview.jsp");
    else ReqD = getServletContext().getRequestDispatcher("/False.jsp");
    request.getSession().setAttribute("user",user);
    request.getSession().setAttribute("username",username);
    request.getSession().setAttribute("password",password);
    if (ReqD != null) ReqD.forward(request,response);
    //Clean up resources
    public void destroy()
    Now I want that the same user can only login once. So when a user login with his username and password, no one else can login with that user name and password.
    I don't wan't to put the username in the database and then validate if the user is already logged in, because then the user must logout and not close the webbrowser else the user stays in the system.
    Does anyone knows a solution top this problem.
    Thanks in advance,
    Henk

    So I wan't the database and when the user is logged in
    the name is set in the database. But when the user
    clicks on the X (close button in the browser his
    username must be deleted from the database)You can't tell when the user does that (or perhaps you can sometimes, with difficulty). But even if you could it doesn't solve your problem. Many people keep their browsers open all day, and -- you may find this shocking -- they go to sites other than yours.
    So basically, if you don't provide them with a logout button you can't tell when they "leave" your site. And even if you do provide them with a logout button, they won't necessarily bother to use it. So you're left with waiting until the session expires, and then logging them out. This also means that if they come back to your site while the session is still active, then they are still logged in. This is not an error and you should not treat it as one.
    PC&#178;

  • Two users can't login to Bonjour, but other users can

    All the Macs in my house are set to log into iChat on startup, which creates a defacto messaging network around the house. Quite handy. But now, on one particular machine (a G5 iMac iSight) two users can't seem to log into Bonjour, although on the same machine all the other users can.
    I've looked at some other posts on this site, and have checked that Address Book shows 'me' as correct for both users. The Firewall is not set to Essential Services Only, and there is no limit on the bandwidth. The Quicktime streaming setting is set to 1.5 mbps.
    In iChat, when using one of the two troublesome logins on the G5, when I click cmd-2 to bring up the Bonjour list, it says Bonjour is not enabled, and gives a click button to enable it. But clicking it does nothing - no effect whatsoever.
    When those two same users use the external Buddy List (and an AIM screen name) their iChat works fine.

    Hi Nick,
    This is what I have found out.
    It relates more to Shares shown in the Finder but may offer clues.
    I have G4 Tower that has been upgraded from Jaguar actually, to Panther, Tiger and Finally Leopard.
    Along the way I bought a MacBook Pro. (Now on Snow Leopard)
    At this Point I changed the G4's Computer name to represent it was the G4 and called the MacBook Pro "MacBook Pro" rather than my first Admin Account name (otherwise both Computer names and Short names would have been the same)
    I also changed the Leopard's My Card in the Address Book to give it a different Name in iChat.
    Somewhere during this process the G4 ended up with a Ralph-G4.local ID, a computer's name of Ralph Johns's Computer, a Address Book ID of Ralph G4 and the short name of ralphjohns
    The MacBook Pro has MacBook Pro as the Computer name and .local name and the short name is alsoralphjohns. The Address Book My Card is my full name.
    Now in discussion with a Level 4 poster who knows more about this than I do I found out that in Leopard if File Sharing is Off the Bonjour ID is still supposed to show in the Snow Leopard Shares.
    However if it is ON whether you use AFP or SMB or Both it is only supposed to appear once and mine was appearing twice.
    Changing the Computer name to something else seemed to confuse things (I could not Log on to share from Either Computer)
    Changing the name back resolved that but changed the .local ID on the G4 as well.
    (Changing the .local name back to what it was before seems to have had now effect now.)
    However the G4 now only shows once in the MacBook Pro Shares.
    I do not think the Upgrades are the distinguishing feature more my poor attempts at making sure the new (then) MacBook Pro had a different ID than the G4.
    I have been able to Bonjour Video and send files as well as see the Other Computer in the Bonjour Buddy lists.
    So in summary.
    The Address Book My Cards have to be Different.
    Sometimes changing the Computer name or the .local name does seem to cause issues in File Sharing - which may have some influence on Bonjour as a whole.
    Whilst my G4 was showing up in the MacBook Pro as two Shares it was listing the .local name and the Computer's Name as shown in Sharing which were different.
    It maybe this if it is happening for this computer that may give clues.
    7:59 PM Thursday; October 15, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Can't login into NW after a new patch.

    Hi experts.
    Yestoday I installed a new patch KB70010,after that use command SGEN to compile all source in component BASIS.This process began and said theres 2 hours left to complete. 
    But this morning i can't login into the system,seems the SGEN not successful or sth else.....
    disp+work is in yellow status with a message: Running but not connected to Message Server.J2EE status info unavailable.
    here's the developer trace.
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        ER1
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        6112
    Tue Jun 03 10:51:31 2008
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 6112) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    Tue Jun 03 10:51:36 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5273]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    Tue Jun 03 10:51:41 2008
    ERROR => OpenProcess PID 3180 failed for checking semaphore 4
                  ERROR_INVALID_PARAMETER: The parameter is incorrect.  [semnt.c      1892]
    DpIPCInit2: start server >EXXEPT01_ER1_01                         <
    DpShMCreate: sizeof(wp_adm)          26752     (1408)
    DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1440)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 073F0040, size: 4661816)
    DpShMCreate: allocated sys_adm at 073F0040
    DpShMCreate: allocated wp_adm at 073F1E40
    DpShMCreate: allocated tm_adm_list at 073F86C0
    DpShMCreate: allocated tm_adm at 073F86F0
    DpShMCreate: allocated wp_ca_adm at 077C7990
    DpShMCreate: allocated appc_ca_adm at 077CD750
    DpShMCreate: allocated comm_adm at 077CF690
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 07850550
    DpShMCreate: allocated gw_adm at 07850590
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 078505C0
    DpShMCreate: allocated wall_adm at 078505C8
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1632
      argv[0] = D:\usr\sap\ER1\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\ER1\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\ER1\SYS\profile\ER1_DVEBMGS01_EXXEPT01
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1351
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=ER1
      argv[7] = -DSAPMYNAME=EXXEPT01_ER1_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\ER1\SYS\profile\ER1_DVEBMGS01_EXXEPT01
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( EXXEPT01) [dpxxdisp.c   11586]
    DpStartStopMsg: send start message (myname is >EXXEPT01_ER1_01                         <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Tue Jun 03 10:52:21 2008
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Tue Jun 03 10:52:41 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2056
      argv[0] = D:\usr\sap\ER1\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\ER1\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\ER1\SYS\profile\ER1_DVEBMGS01_EXXEPT01
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1407
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=ER1
      argv[7] = -DSAPMYNAME=EXXEPT01_ER1_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\ER1\SYS\profile\ER1_DVEBMGS01_EXXEPT01
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED

    I found a suspicious log   dev_jcontrol,  maybe it will do some help.
    There's some deadlock at end....
    trc file: "D:\usr\sap\ER1\DVEBMGS01\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 2612
    system name : ER1
    system nr.  : 01
    started at  : Tue Jun 03 14:13:53 2008
    arguments       :
           arg[00] : D:\usr\sap\ER1\DVEBMGS01\exe\jcontrol.EXE
           arg[01] : pf=D:\usr\sap\ER1\SYS\profile\ER1_DVEBMGS01_EXXEPT01
           arg[02] : -DSAPSTART=1
           arg[03] : -DCONNECT_PORT=3675
           arg[04] : -DSAPSYSTEM=01
           arg[05] : -DSAPSYSTEMNAME=ER1
           arg[06] : -DSAPMYNAME=EXXEPT01_ER1_01
           arg[07] : -DSAPPROFILE=D:\usr\sap\ER1\SYS\profile\ER1_DVEBMGS01_EXXEPT01
           arg[08] : -DFRFC_FALLBACK=ON
           arg[09] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4756] Tue Jun 03 14:13:53 2008
    [Thr 4756] *** WARNING => INFO: Unknown property [instance.box.number=ER1DVEBMGS01exxept01] [jstartxx.c   841]
    [Thr 4756] *** WARNING => INFO: Unknown property [instance.en.host=EXXEPT01] [jstartxx.c   841]
    [Thr 4756] *** WARNING => INFO: Unknown property [instance.en.port=3202] [jstartxx.c   841]
    [Thr 4756] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties;D:\usr\sap\ER1\DVEBMGS01\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : EXXEPT01
    -> ms port    : 3902
    -> OS libs    : D:\usr\sap\ER1\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties
    -> files [01] : D:\usr\sap\ER1\DVEBMGS01\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : EXXEPT01
    -> ms port    : 3902
    -> os libs    : D:\usr\sap\ER1\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID11381200 : D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID11381250 : D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID11381200           : D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID11381250           : D:\usr\sap\ER1\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] sdm                  : D:\usr\sap\ER1\DVEBMGS01\SDM\program\config\sdm_jstartup.properties
    [Thr 4756] *** WARNING => JsfOpenShm: ShmCreate (69, 295952, CREATE) failed(rc = 4 SHM segment already exists) [jsfxxshm.c   715]
    [Thr 4756] *** ERROR => JsfOpenShm: Shm version mismatch (shm "JSF-ADM-CORRUPT", code "JSF-ADM-015") [jsfxxshm.c   761]
    [Thr 4756] *** ERROR => Can't create shared memory segment 69 (rc = 8) [jcntrxx.c    1714]
    [Thr 4756] *** ERROR => Can't initialize JControl Administration [jcntrxx.c    271]
    [Thr 4756] JControlCloseProgram: started (exitcode = -1)
    [Thr 4756] *** ERROR => JsfCloseShm: FiDetachIndex(SESSION) failed (rc = 6 invalid argument) [jsfxxshm.c   1243]
    [Thr 4756] *** ERROR => JsfCloseShm: FiDetachIndex(ALIAS) failed (rc = 6 invalid argument) [jsfxxshm.c   1250]
    [Thr 4756] *** ERROR => JsfCloseShm: FiDetachIndex(SERVICE) failed (rc = 6 invalid argument) [jsfxxshm.c   1257]
    [Thr 4756] JControlCloseProgram: good bye... (exitcode = -1)
                                                                                    [Thr 3152] Tue Jun 03 14:22:52 2008
    [Thr 3152] WARNING: MtxLock 02550988 JSF-PROC -2 deadlock ?
    [Thr 3152] Tue Jun 03 14:37:56 2008
    [Thr 3152] WARNING: MtxLock 02550988 JSF-PROC -2 deadlock ?
    [Thr 3152] Tue Jun 03 14:53:01 2008
    [Thr 3152] WARNING: MtxLock 02550988 JSF-PROC -2 deadlock ?
    [Thr 3152] Tue Jun 03 15:08:05 2008
    [Thr 3152] WARNING: MtxLock 02550988 JSF-PROC -2 deadlock ?
    [Thr 3152] Tue Jun 03 15:23:09 2008
    [Thr 3152] WARNING: MtxLock 02550988 JSF-PROC -2 deadlock ?

  • Can't login to kde after upgrade

    Hi guys, today I upgrade my arch, after reboot , login into kde by slim
    after the kde login process, the screen became black
    I press Ctrl+Alt+F1 ,it's still a black screen, but I still login as root and type 'reboot' command
    it can succeed reboot the system.
    there is not any message,but black screen.
    after reboot,I can login my musca destop by slim, then I googled some info about this problem
    I don't use slim to login , I login in kde by 'startx' cmd with .xinitrc:
    exec ck-launch-session dbus-launch startkde
    It can succeed login into the desktop ???
    I use slim to login again, it is failed, still black screen without any message
    I find some message in /var/log/slim.log
    slim: waiting for X server to begin accepting connections
    X.Org X Server 1.12.0
    Release Date: 2012-03-04
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.2.9-1-ARCH x86_64
    Current Operating System: Linux king 3.2.13-1-ARCH #1 SMP PREEMPT Sat Mar 24 09:10:39 CET 2012 x86_64
    Kernel command line: root=/dev/sda3 ro
    Build Date: 05 March 2012 05:59:48AM
    Current version of pixman: 0.24.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 1 11:31:18 2012
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    /usr/bin/xauth: file /home/ink/.Xauthority does not exist
    fcitx: no process found
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-xim.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-table.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-punc.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-x11.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-remote-module.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-fullwidth-char.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-qw.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-classic-ui.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-pinyin.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-chttrans.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-vk.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-kimpanel-ui.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-ipc.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-autoeng.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-quickphrase.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-dbus.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:wanfeng.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:wbx.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:wbpy.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:erbi.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:db.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:qxm.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:cangjie.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:zrm.conf
    startkde: Starting up...
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    kbuildsycoca4 running...
    kbuildsycoca4(705) KBuildSycoca::checkTimestamps: checking file timestamps
    kbuildsycoca4(705) KBuildSycoca::checkTimestamps: timestamps check ok
    kbuildsycoca4(705) kdemain: Emitting notifyDatabaseChanged ()
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    kded(704)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    OpenGL vendor string: Tungsten Graphics, Inc
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    OpenGL renderer string: Mesa DRI Mobile Intel® GM45 Express Chipset
    OpenGL version string: 2.1 Mesa 8.0.2
    OpenGL shading language version string: 1.20
    Driver: Intel
    GPU class: i965
    OpenGL version: 2.1
    GLSL version: 1.20
    Mesa version: 8.0.2
    X server version: 1.12
    Linux kernel version: 3.2.13
    Direct rendering: yes
    Requires strict binding: yes
    GLSL shaders: yes
    Texture NPOT support: yes
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.5'
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusObjectPath: invalid path ""
    plasma-desktop(790)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability
    Could not resolve property : linearGradient5334
    Could not resolve property : linearGradient5332
    Could not resolve property : linearGradient5326
    Could not resolve property : linearGradient5328
    Could not resolve property : linearGradient5334
    Could not resolve property : linearGradient5332
    Could not resolve property : linearGradient5326
    Could not resolve property : linearGradient5328
    Could not resolve property : linearGradient5334
    Could not resolve property : linearGradient5332
    Could not resolve property : linearGradient5326
    Could not resolve property : linearGradient5328
    plasma-desktop(790)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability
    plasma-desktop(790)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    plasma-desktop(790)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    link XMLID_34_ hasn't been detected!
    link XMLID_34_ hasn't been detected!
    link XMLID_36_ hasn't been detected!
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    file:///usr/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:166:5: QML QDeclarativeListView_QML_20: Possible anchor loop detected on vertical anchor.
    QGraphicsScene::addItem: item has already been added to this scene
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    link XMLID_34_ hasn't been detected!
    link XMLID_34_ hasn't been detected!
    link XMLID_36_ hasn't been detected!
    plasma-desktop(790)/libakonadi Akonadi::AgentManagerPrivate::createDBusInterface: AgentManager failed to get a valid AgentManager DBus interface. Error is: 1 "org.freedesktop.DBus.Error.NameHasNoOwner" "Could not get owner of name 'org.freedesktop.Akonadi.Control': no such name"
    plasma-desktop(790)/libakonadi Akonadi::SessionPrivate::socketError: Socket error occurred: "QLocalSocket::connectToServer: Invalid name"
    plasma-desktop(790)/libakonadi Akonadi::SessionPrivate::socketError: Socket error occurred: "QLocalSocket::connectToServer: Invalid name"
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    search paths: ("/usr/local/bin", "/usr/bin", "/bin", "/usr/local/sbin", "/usr/sbin", "/sbin", "/usr/bin/core_perl", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin")
    Found mysql_install_db: "/usr/bin/mysql_install_db"
    Found mysqlcheck: "/usr/bin/mysqlcheck"
    QGridLayoutEngine::addItem: Cell (0, 1) already taken
    plasma-desktop(790)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    plasma-desktop(790)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    tp-qt4 0.8.0 DEBUG: Client registered - busName: "org.freedesktop.Telepathy.Client.KDE.Approver" objectPath: "/org/freedesktop/Telepathy/Client/KDE/Approver" interfaces: ("org.freedesktop.Telepathy.Client.Approver")
    tp-qt4 0.8.0 DEBUG: Calling Properties::GetAll(AccountManager)
    New PolkitAgentListener 0x75a300
    Adding new listener PolkitQt1::Agent::Listener(0x8be720) for 0x75a300
    tp-qt4 0.8.0 DEBUG: Got reply to Properties.GetAll(AccountManager)
    tp-qt4 0.8.0 DEBUG: Creating new DBusProxy
    tp-qt4 0.8.0 DEBUG: ReadinessHelper: new supportedStatuses = QSet(0)
    tp-qt4 0.8.0 DEBUG: ReadinessHelper: new supportedFeatures = QSet(QPair("Tp::Account",0) , QPair("Tp::Account",1) , QPair("Tp::Account",2) , QPair("Tp::Account",3) )
    tp-qt4 0.8.0 DEBUG: Inserting to factory cache proxy for QPair("org.freedesktop.Telepathy.AccountManager","/org/freedesktop/Telepathy/Account/gabble/jabber/volcanowill_40gmail_2ecom0")
    tp-qt4 0.8.0 DEBUG: Discovering if the Channel Dispatcher supports request hints
    tp-qt4 0.8.0 DEBUG: Got reply to PendingVariant call
    tp-qt4 0.8.0 DEBUG: Discovered channel dispatcher support for request hints: true
    tp-qt4 0.8.0 DEBUG: Calling Properties::GetAll(Account) on "/org/freedesktop/Telepathy/Account/gabble/jabber/volcanowill_40gmail_2ecom0"
    tp-qt4 0.8.0 DEBUG: Got reply to Properties.GetAll(Account) for "/org/freedesktop/Telepathy/Account/gabble/jabber/volcanowill_40gmail_2ecom0"
    tp-qt4 0.8.0 DEBUG: Account::updateProperties: changed:
    tp-qt4 0.8.0 DEBUG: Interfaces: ("org.freedesktop.Telepathy.Account", "org.freedesktop.Telepathy.Account.Interface.Avatar", "com.nokia.Account.Interface.Compat", "com.nokia.Account.Interface.Conditions", "org.freedesktop.Telepathy.Account.Interface.Storage", "org.freedesktop.Telepathy.Account.Interface.Addressing", "org.freedesktop.Telepathy.Account.Interface.Hidden.DRAFT1")
    tp-qt4 0.8.0 DEBUG: Service Name: "google-talk"
    tp-qt4 0.8.0 DEBUG: Display Name: "[email protected]"
    tp-qt4 0.8.0 DEBUG: Nickname: "if_else"
    tp-qt4 0.8.0 DEBUG: Normalized Name: "[email protected]"
    tp-qt4 0.8.0 DEBUG: Valid: true
    tp-qt4 0.8.0 DEBUG: Enabled: true
    tp-qt4 0.8.0 DEBUG: HasBeenOnline changed to true
    tp-qt4 0.8.0 DEBUG: Automatic Presence: 2 - "available"
    tp-qt4 0.8.0 DEBUG: Current Presence: 1 - "offline"
    tp-qt4 0.8.0 DEBUG: Requested Presence: 1 - "offline"
    tp-qt4 0.8.0 DEBUG: Connection Object Path: "/"
    tp-qt4 0.8.0 DEBUG: Connection StatusReason: 1
    tp-qt4 0.8.0 DEBUG: Account basic functionality is ready
    tp-qt4 0.8.0 DEBUG: ReadinessHelper::setIntrospectCompleted: feature: QPair("Tp::Account",0) - success: true
    tp-qt4 0.8.0 DEBUG: ReadinessHelper::setIntrospectCompleted: feature: QPair("Tp::AccountManager",0) - success: true
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    akonadi.collectionattributetable OK
    akonadi.collectionmimetyperelation OK
    akonadi.collectionpimitemrelation OK
    akonadi.collectiontable OK
    akonadi.flagtable OK
    akonadi.mimetypetable OK
    akonadi.parttable OK
    akonadi.pimitemflagrelation OK
    akonadi.pimitemtable OK
    akonadi.resourcetable OK
    akonadi.schemaversiontable OK
    Database "akonadi" opened using driver "QMYSQL"
    DbInitializer::run()
    checking table "SchemaVersionTable"
    checking table "ResourceTable"
    checking table "CollectionTable"
    checking table "MimeTypeTable"
    checking table "PimItemTable"
    checking table "FlagTable"
    checking table "PartTable"
    checking table "CollectionAttributeTable"
    checking relation "PimItemFlagRelation"
    checking relation "CollectionMimeTypeRelation"
    checking relation "CollectionPimItemRelation"
    DbInitializer::run() done
    skipping update 2
    skipping update 3
    skipping update 4
    skipping update 8
    skipping update 10
    skipping update 12
    skipping update 13
    skipping update 14
    skipping update 15
    skipping update 16
    skipping update 17
    skipping update 18
    skipping update 19
    skipping update 20
    Nepomuk Query Server not available
    DataStore::unhideAllPimItems()
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    PLUGINS: "/usr/share/akonadi/agents"
    PLUGINS: ("akonadinepomukfeederagent.desktop", "akonotesresource.desktop", "birthdaysresource.desktop", "calendarsearchagent.desktop", "contactsresource.desktop", "davgroupwareresource.desktop", "icalresource.desktop", "imapresource.desktop", "invitationsagent.desktop", "kabcresource.desktop", "kalarmdirresource.desktop", "kalarmresource.desktop", "kcalresource.desktop", "kdeaccountsresource.desktop", "knutresource.desktop", "kolabproxyresource.desktop", "localbookmarksresource.desktop", "maildirresource.desktop", "maildispatcheragent.desktop", "mboxresource.desktop", "microblog.desktop", "mixedmaildirresource.desktop", "mtdummyresource.desktop", "nepomuktagresource.desktop", "nntpresource.desktop", "notesresource.desktop", "openxchangeresource.desktop", "pop3resource.desktop", "vcarddirresource.desktop", "vcardresource.desktop")
    search paths: ("/usr/local/bin", "/usr/bin", "/bin", "/usr/local/sbin", "/usr/sbin", "/sbin", "/usr/bin/core_perl")
    PLUGINS inserting: "akonadi_nepomuk_feeder" 0 ("Unique", "Autostart", "NoConfig")
    PLUGINS inserting: "akonadi_akonotes_resource" 1 ("Resource", "Notes")
    PLUGINS inserting: "akonadi_birthdays_resource" 0 ("Resource", "Unique")
    PLUGINS inserting: "akonadi_calendarsearch_agent" 0 ("Unique", "NoConfig")
    PLUGINS inserting: "akonadi_contacts_resource" 5 ("Resource")
    PLUGINS inserting: "akonadi_davgroupware_resource" 0 ("Resource", "FreeBusyProvider")
    PLUGINS inserting: "akonadi_ical_resource" 1 ("Resource")
    PLUGINS inserting: "akonadi_imap_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_invitations_agent" 0 ("NoConfig")
    PLUGINS inserting: "akonadi_kabc_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kalarm_dir_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kalarm_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kcal_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kdeaccounts_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_knut_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kolabproxy_resource" 0 ("Resource", "Unique")
    PLUGINS inserting: "akonadi_localbookmarks_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_maildir_resource" 1 ("Resource")
    PLUGINS inserting: "akonadi_maildispatcher_agent" 0 ("Unique", "Autostart")
    PLUGINS inserting: "akonadi_mbox_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_microblog_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_mixedmaildir_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_mailtransport_dummy_resource" 0 ("Resource", "MailTransport")
    PLUGINS inserting: "akonadi_nepomuktag_resource" 0 ("Resource", "Virtual", "Unique", "NoConfig")
    PLUGINS inserting: "akonadi_nntp_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_notes_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_openxchange_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_pop3_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_vcarddir_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_vcard_resource" 0 ("Resource")
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    Akonadi server is now operational.
    QLayout: Attempting to add QLayout "" to ViewSliders "", which already has a layout
    QObject::connect: Incompatible sender/receiver arguments
    KMenu::aboutToShow() --> KMixDockWidget::activateMenuOrWindow(bool,QPoint)
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36", ":1.34")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36", ":1.34", ":1.38")
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    Known subscriber "akonadi_maildispatcher_agent" subscribes again
    Known subscriber "akonadi_maildispatcher_agent" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Known subscriber "akonadi_maildispatcher_agent" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    Known subscriber "akonadi_nepomuk_feeder" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    QPixmap: Cannot create a QPixmap when no GUI is being used
    QGraphicsLinearLayout::removeAt: invalid index 1
    akonadi_agent_launcher: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36", ":1.38")
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_4" , discarding cached interface
    akonadi_agent_launcher: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    QProcess: Destroyed while process is still running.
    krunner: Fatal IO error: client killed
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.40", ":1.36", ":1.38")
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.36", ":1.38")
    kmix: Fatal IO error: client killed
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_0" , discarding cached interface
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_3" , discarding cached interface
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    kded4: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_maildispatcher_agent: Fatal IO error: client killed
    Server terminated successfully (0). Closing log file.
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "akonadi_maildispatcher_agent" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "akonadi_maildispatcher_agent"
    akonadi_nepomuk_feeder: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    kglobalaccel: Fatal IO error: client killed
    klauncher: Exiting on signal 1
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_maildir_resource_0" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.37", ":1.36", ":1.38")
    akonadi_agent_launcher: Fatal IO error: client killed
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_1" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.37", ":1.36")
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_akonotes_resource_0" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.36")
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "akonadi_nepomuk_feeder" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "akonadi_nepomuk_feeder"
    akonadi_agent_launcher: Fatal IO error: client killed
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_2" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39")
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "plasma-desktop" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "plasma-desktop"
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_maildispatcher_agent: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_nepomuk_feeder: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_ical_resource_0" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "AkonadiAgentServer"
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_maildispatcher_agent: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_maildispatcher_agent: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_maildispatcher_agent" crashed too often and will not be restarted!
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_nepomuk_feeder: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    akonadi_nepomuk_feeder: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_nepomuk_feeder" crashed too often and will not be restarted!
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.
    Shutting down AkonadiServer...
    terminating service threads
    NepomukServer(905)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    Control process died, committing suicide!
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    Database error: Cannot open database.
    Last driver error: "QMYSQL: Unable to connect"
    Last database error: "Can't connect to local MySQL server through socket '/home/ink/.local/share/akonadi/socket-king/mysql.socket' (2)"
    QSqlQuery::exec: database not open
    QSqlQuery::prepare: database not open
    Error during executing query "SELECT CollectionTable.id, CollectionTable.remoteId, CollectionTable.remoteRevision, CollectionTable.name, CollectionTable.parentId, CollectionTable.resourceId, CollectionTable.subscribed, CollectionTable.cachePolicyInherit, CollectionTable.cachePolicyCheckInterval, CollectionTable.cachePolicyCacheTimeout, CollectionTable.cachePolicySyncOnDemand, CollectionTable.cachePolicyLocalParts, CollectionTable.queryString, CollectionTable.queryLanguage FROM CollectionTable WHERE ( CollectionTable.queryLanguage = ( :0 ) )" : " "
    Nepomuk QueryServer: Unable to execute query!
    terminating connection threads
    0: akonadiserver(_Z11akBacktracev+0x35) [0x44d505]
    1: akonadiserver() [0x44d742]
    2: /lib/libc.so.6(+0x349f0) [0x7f62149c89f0]
    3: /usr/lib/libQtDBus.so.4(+0x43f3b) [0x7f62157f9f3b]
    4: /usr/lib/libQtDBus.so.4(+0x442d5) [0x7f62157fa2d5]
    5: /usr/lib/libQtCore.so.4(_ZN11QMetaObject8activateEP7QObjectPKS_iPPv+0x4b9) [0x7f62165a4a99]
    6: /usr/lib/libQtCore.so.4(_ZN7QObject9destroyedEPS_+0x2f) [0x7f62165a51ef]
    7: /usr/lib/libQtCore.so.4(_ZN7QObjectD2Ev+0xde) [0x7f62165a8c9e]
    8: akonadiserver(_ZN26PreprocessorManagerAdaptorD0Ev+0x10) [0x53f850]
    9: /usr/lib/libQtCore.so.4(_ZN14QObjectPrivate14deleteChildrenEv+0x85) [0x7f62165a2f45]
    10: /usr/lib/libQtCore.so.4(_ZN7QObjectD2Ev+0x5ec) [0x7f62165a91ac]
    11: akonadiserver(_ZN7Akonadi19PreprocessorManagerD0Ev+0x9) [0x526d09]
    12: akonadiserver(_ZN7Akonadi19PreprocessorManager4doneEv+0x16) [0x526396]
    13: akonadiserver(_ZN7Akonadi13AkonadiServer4quitEv+0x3e8) [0x455c38]
    14: akonadiserver(_Z15shutdownHandleri+0x1d) [0x4462dd]
    15: akonadiserver() [0x44d720]
    16: /lib/libc.so.6(+0x349f0) [0x7f62149c89f0]
    17: /lib/libc.so.6(__poll+0x53) [0x7f6214a70183]
    18: /usr/lib/libglib-2.0.so.0(+0x44dc8) [0x7f6213ca0dc8]
    19: /usr/lib/libglib-2.0.so.0(g_main_context_iteration+0x69) [0x7f6213ca1289]
    20: /usr/lib/libQtCore.so.4(_ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE+0x6f) [0x7f62165bfa3f]
    21: /usr/lib/libQtCore.so.4(_ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE+0x32) [0x7f621658f7d2]
    22: /usr/lib/libQtCore.so.4(_ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE+0xf7) [0x7f621658fa27]
    23: /usr/lib/libQtCore.so.4(_ZN7QThread4execEv+0x127) [0x7f621648fd27]
    24: akonadiserver(_ZN7Akonadi19ItemRetrievalThread3runEv+0x30) [0x504b90]
    25: /usr/lib/libQtCore.so.4(+0x7bd4b) [0x7f6216492d4b]
    26: /lib/libpthread.so.0(+0x7daa) [0x7f621477fdaa]
    27: /lib/libc.so.6(clone+0x6d) [0x7f6214a7809d]
    /usr/bin/xauth: file /var/run/slim.auth does not exist
    thx

    Have you solved your problem? I think I have the same issue.

  • Domain users and local users can't login to reporting service web environment

    Hello,
    We installed reporting services at one of our customers but aren't able to use domain users to login. We've tried to login with a domain user, a local user but both aren't working. We set the proper permissions for the users on the reports folders.
    We can only login with the buildin/administrator account on the local url: http://servername/reports
    How can we allow login with domain users on other report manager url's?

    Below link may be helpful,
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/623da309-21fa-42a8-905f-1424144a347d/setting-up-a-user-in-ssrs?forum=sqlreportingservices
    Regards, RSingh

  • 2 users can't login - HTTP Status 500 - on Teaming 2.0

    I have 2 user that can't login to Teaming 2.0. They get this error: "HTTP Status 500". Even if I enter a bogus password for them the "HTTP Status 500" error occurs. I use LDAP authentication to eDirectory. These users DON'T have duplicate objects in my tree. In eDirectory they have first name, last name, full name, phone number and email address entries. All other users can login. Where are the Apache Tomcat/6.0.18 logs on a SLES 10 install of Teaming 2.0? There are log files in /opt/novell/teaming/
    Browser screen content:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.springframework.dao.IncorrectResultSizeDataAcc essException: Incorrect result size: expected 1, actual 2
    org.springframework.security.ldap.SpringSecurityLd apTemplate$3.executeWithContext(SpringSecurityLdap Template.java:204)
    org.springframework.ldap.core.LdapTemplate.execute WithContext(LdapTemplate.java:807)
    org.springframework.ldap.core.LdapTemplate.execute ReadOnly(LdapTemplate.java:793)
    org.springframework.security.ldap.SpringSecurityLd apTemplate.searchForSingleEntry(SpringSecurityLdap Template.java:190)
    org.springframework.security.ldap.search.FilterBas edLdapUserSearch.searchForUser(FilterBasedLdapUser Search.java:118)
    org.springframework.security.providers.ldap.authen ticator.BindAuthenticator.authenticate(BindAuthent icator.java:82)
    org.springframework.security.providers.ldap.LdapAu thenticationProvider.authenticate(LdapAuthenticati onProvider.java:229)
    org.springframework.security.providers.ProviderMan ager.doAuthentication(ProviderManager.java:195)
    org.springframework.security.AbstractAuthenticatio nManager.authenticate(AbstractAuthenticationManage r.java:46)
    org.kablink.teaming.module.authentication.impl.Aut henticationModuleImpl.doAuthenticate(Authenticatio nModuleImpl.java:280)
    org.kablink.teaming.module.authentication.impl.Aut henticationModuleImpl.authenticate(AuthenticationM oduleImpl.java:245)
    sun.reflect.GeneratedMethodAccessor660.invoke(Unkn own Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    org.springframework.aop.support.AopUtils.invokeJoi npointUsingReflection(AopUtils.java:307)
    org.springframework.aop.framework.ReflectiveMethod Invocation.invokeJoinpoint(ReflectiveMethodInvocat ion.java:182)
    org.springframework.aop.framework.ReflectiveMethod Invocation.proceed(ReflectiveMethodInvocation.java :149)
    org.kablink.teaming.search.interceptor.IndexSynchr onizationManagerInterceptor.invoke(IndexSynchroniz ationManagerInterceptor.java:67)
    org.springframework.aop.framework.ReflectiveMethod Invocation.proceed(ReflectiveMethodInvocation.java :171)
    org.springframework.aop.interceptor.AbstractTraceI nterceptor.invoke(AbstractTraceInterceptor.java:11 3)
    org.springframework.aop.framework.ReflectiveMethod Invocation.proceed(ReflectiveMethodInvocation.java :171)
    org.springframework.aop.framework.JdkDynamicAopPro xy.invoke(JdkDynamicAopProxy.java:204)
    $Proxy21.authenticate(Unknown Source)
    org.springframework.security.providers.ProviderMan ager.doAuthentication(ProviderManager.java:195)
    org.springframework.security.AbstractAuthenticatio nManager.authenticate(AbstractAuthenticationManage r.java:46)
    org.springframework.security.ui.webapp.Authenticat ionProcessingFilter.attemptAuthentication(Authenti cationProcessingFilter.java:82)
    org.springframework.security.ui.AbstractProcessing Filter.doFilterHttp(AbstractProcessingFilter.java: 252)
    org.springframework.security.ui.SpringSecurityFilt er.doFilter(SpringSecurityFilter.java:53)
    org.springframework.security.util.FilterChainProxy $VirtualFilterChain.doFilter(FilterChainProxy.java :371)
    org.springframework.security.ui.logout.LogoutFilte r.doFilterHttp(LogoutFilter.java:89)
    org.springframework.security.ui.SpringSecurityFilt er.doFilter(SpringSecurityFilter.java:53)
    org.springframework.security.util.FilterChainProxy $VirtualFilterChain.doFilter(FilterChainProxy.java :371)
    org.springframework.security.context.HttpSessionCo ntextIntegrationFilter.doFilterHttp(HttpSessionCon textIntegrationFilter.java:235)
    org.springframework.security.ui.SpringSecurityFilt er.doFilter(SpringSecurityFilter.java:53)
    org.springframework.security.util.FilterChainProxy $VirtualFilterChain.doFilter(FilterChainProxy.java :371)
    org.kablink.teaming.spring.security.ZoneGrabbingFi lter.doFilterHttp(ZoneGrabbingFilter.java:58)
    org.springframework.security.ui.SpringSecurityFilt er.doFilter(SpringSecurityFilter.java:53)
    org.springframework.security.util.FilterChainProxy $VirtualFilterChain.doFilter(FilterChainProxy.java :371)
    org.springframework.security.util.FilterChainProxy .doFilter(FilterChainProxy.java:174)
    org.springframework.web.filter.DelegatingFilterPro xy.invokeDelegate(DelegatingFilterProxy.java:236)
    org.springframework.web.filter.DelegatingFilterPro xy.doFilter(DelegatingFilterProxy.java:167)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.

    You need to be sure that it is not an LDAP problem... the best way is to start from LDAP to investigate. Enable the LDAP trace on eDir with imonitor, during the teaming login. Also you can use ldapsearch to have full details on the accounts in order to compare them with a working user (a space somewhere, an additional attribute, etc...).

  • Cisco IPS 4260 Can't login to IDM after upgrade to 7.1(9)

    Hi,
    I recently upgraded my 4260 sensor to 7.1(9). Before the upgrade, I could log-in to the sensors via the IDM (JNLP). Now after the upgrade, the IDM prompt comes up but when I enter my username and password, I get a pop saying "Unable to launch device manager from https://[x.x.x.x]"
    On viewing the detailed logs, I get java.net.MalformedURLException: Invalid host: [x.x.x.x]. The same error is repeated multiple times.
    I also get messages like "Trying for IDM. url=https://[x.x.x.x]/idm/idm.jnlp/
    To me it seems that the program is unnecessarily adding the "[ ]" to the host and this is causing the url to fail.
    I have downloaded a fresh copy of jnlp file from the updated sensor. My java version is 7Update51. This version worked correctly with the idm.jnlp supplied with the previous sensor update 7.1(8).
    Cisco IME 7.2.3 can correctly connect to the sensor and I can also login via SSH using the same username and password.
    Has anyone faced a similar issue? Is there a solution?
    Thanks

    Have you solved your problem? I think I have the same issue.

  • User can not login? Error comes up - only happens on mac pro

    Hi. I have just set up a server system and users can login fine on all the imacs. However, When a user comes to login on a mac pro, they get this message:
    The home folder of this user account is on a afp or smb server. Please contact the system administrator. This happens as soon as they press login.
    We are running Mac OSX SERVER 10.4.10
    Thanks,

    Hi
    On the MacPro what is in the DNS Servers field in Network Preferences? Compare what is there with what is in the same area on the iMacs that can successfully log in. Where are they getting their IP addresses from?
    Tony

  • Single CUPC user can not login

    Hi All,
    I have a CUPC user who can not login to the client software.
    She is getting login error:  username/password.
    She is connecting via a VPN and can ping both the CCM and CUPS directly using the IP address.
    She can also login to the CCM user page using a link to its IP address.
    I have ruled out incorrect typing because she used the same username/password to login to the vpn and the CCM user page. (email etc)
    Since she is in a process of logging in, I dont have the option of getting the log files from her client.
    Any ideas on how I can troubleshoot would be much appreciated.
    Thanks very much
    Regards,
    Amanda Lalli-Cafini

    Hi Amanda,
    Please add the host names of CUPS server and CUCM on the client machine in the hostname file and retry.
    Hope it helps.
    Anand
    Please rate helpful posts..

  • Users can't login on workstations with new os

    I have just upgraded my client machines from OS 9 to 10.3, now they won't log into their specific drives on the server. I can login using the workstations stand alone name and I can authenticate and see/reach the server, but the users can't log in.
    Do I need to change some settings to allow the users to access their drive?
    Does the change that I am assuming I need to make need to be done on every workstation?
    I have six workstations that didn't need to have their os upgraded. The students can log into those perfectly fine.
    I think I've checked everywhere I'm supposed to and haven't seen any settings that aren't the same on the other workstations but I'm sure I've missed something as I don't have much experience working with the server at all.
    Not only is our tech budget tiny (we're a small school) but no one in our area works with macs anymore. So thank you for any help you can give me.
    Dana

    Hi
    Presumably the server is 10.4? What Services are configured and running on the Server?
    +I have just upgraded my client machines from OS 9 to 10.3+
    Would this be 10.3.9?
    +now they won't log into their specific drives on the server+
    Do you mean individual user's networked homes? OR do you mean a share point accessible to all?
    +Do I need to change some settings to allow the users to access their drive?+
    If you are indeed talking about networked home directories - yes.
    +Does the change that I am assuming I need to make need to be done on every workstation?+
    Yes.
    +I have six workstations that didn't need to have their os upgraded. The students can log into those perfectly fine+
    Presumably these workstations are a mix of 10.4/10.5? If so then check the LDAPv3 configuration in Directory Access (for 10.4) and Directory Utiltu (for 10.5). These applications can be found in /Applications/Utilties.
    I appreciate your budget is tiny but why 10.3? For a small outlay you should be able to purchase 10.4? There's nothing wrong with 10.3 its just from your point of view and skill set it would probably be easier to integrate workstations running 10.4. Taking this further you could utilize what budget you have and hire a consultant to do this for you. It should not take too long judging from what you've posted?
    Tony

  • Normal users can not login CDE

    Hi every body.
    I have just installed Solaris 10 in a Ultra 10 box. When my normal users tray to login CDE they must wait long and at the end they have a message window like this:
    _DtMessage Failure<br /><br />Messaging System Inoperative<br />To restart:<br />1) Save all open data files.<br />2) Logout.<br />3) Login again.<br />Note: The current session will not be saved.<br />When you are ready to begin the restart process click &#91;ok&#93; and proceed to save your files.<br /><br />behind this window there are another one:<br /><br />Action Required<br /><br />DT messaging system could not be started.<br />To correct the problem<br />1- Chose &#91;ok&#93; to return to the login screen<br />2- select failsafe session from the login screen's option menu and login.<br />3- Check to see that the host name is correct in these locations<br />/etc/src.sh<br />/etc/hosts<br />/usr/adm/inet.sec<br /> For additional information see the DT users guide.<br /><br /><br />This issue only occurs when the home directory is mounted via nfs. If is mounted locally there are no problems.<br /><br />I deleted .dt* directories but this does not solve the problem.<br /><br />Any idea will be very appreciated.<br /><br />Guix

    Is the "ttdbserverd" rpc service running on the nfs server?
    Does the nfs client log anything to it's /var/adm/messages file?
    For example errors like this:
    Aug 12 18:43:31 elise-3com.tools.intra /usr/dt/bin/ttsession&#91;851&#93;: &#91;ID 424917 daemon.error&#93; Error: rpc.ttdbserverd on leo is not running
    Aug 12 18:43:31 elise-3com.tools.intra /usr/dt/bin/ttsession&#91;851&#93;: &#91;ID 908584 daemon.error&#93; Ttdb_client::connectToDb(): fcntl(F_SETFD): Bad file number

Maybe you are looking for

  • Some imessage settings are greyed out on macbook pro

    MacBook Pro 17-inch, Late 2011 OS X10.9 (Mavericks) Some iMessage settings in the General tab are greyed out: Buddy list: Account Status: When I return: When Switching users: - iMessage is successfully setup on iPhone, iPad and MacBook; - I am the ad

  • Clock feature

    Is it possible to set multiple alarms and make them repeat on an ipod Nano? Basically, does it have the same features/setup as the clock on an iPhone? This is for the newest generation iPod Nano. I have looked in the user guide and didn't think it wa

  • Emu 1212m Setup Issues

    Hello. I am having issues with my Emu 1212m. I have installed the soundcard and followed the instructions in the tutorial below. Yet when i play anything in my windows media player, I see that the audio is detected in the patchmix, but there is no au

  • Setting default page in Interactive Report Dashboard (Version 9.3.1)

    Does any one know how I can set the default page (to be the first page) in Hyperion Interactive Report Dashboard version 9.3.1? I have a report with dashboard that returns 56 pages (and the user scrolls down to page 8 of page 56) and selects a filter

  • LcsCDR & QoEMetrics Purge and Usage Summary SQL Agent Jobs

    Hello. On our SQL instance that hosts the LcsCDR & QoEMetrics databases I have the following SQL Server Agent Jobs: LcsCDR_Purge LcsCDR_UsageSummary QoEMetrics_Purge QoEMetrics_UsageSummary I'd like to know if anyone else has these same jobs on their