User is not logged on, but the system thinks it did!

Hi,
We're having a problem with one user. When you try to log on with his userid and password, this notification screan comes up: You have already logged in. Do you want to logout and login to a different Organization? "YES" "NO"
Trying again, doesn't work.
When you watch the logged on sessions with the admin console, you will see that there is a session with the user and that he is indeed logged on!
BUT this is not how it is for real, cause he is NOT logged on, doesn't get further then this notification screen!!
Someone knwos what's wrong? We still have to try to restart everything, but it's a production system so we'll have to wait till nobody is logged on :-S
Thanks!
Greetz,
Miranda

- it is possible to terminate the session and the user is logged of (also get's the message)
- when the users answers no (to log of and log in to a new organization) you stay at the same screen notification
and the admin console shows the user as logged on
- when the users answers yes (to log of and log in to a new organization) it get's the logon screen (default logon screen)
and the admin console shows the user as logged off
- when i inactivate the user and it is logged on, it get's after trying to logon new this message: This user is not active.
Contact your system administrator, but it stays logged on .. shows the admin console
- i also can delete the user from the organization (after one time logged on it has a profile under the users from the logged on organization)

Similar Messages

  • After update to 11.3.1 users are not logged in to the ZAA

    Hi,
    we did a update from 11.2.3 to 11.3.1 a few weeks ago. All works fine but there is one problem. A lot of users are not logged in to the ZAA. If i try to start a remote session with the username i get the message the user is not logged in to any device.
    If i connect me to the device and look at the ZAA the user is not logged in and i can not log in because i get the error message that the username or password is wrong.
    The solution is to go to the registry -> HKEY_LOCAL_MACHINE\SOFTWARE\Novell\ZCM\ZenLgn\Hist ory\Cache\domain.local and i have to delete the user.
    After that the login works fine
    Sometimes i have to delete the user in this registry key too -> HKEY_LOCAL_MACHINE\SOFTWARE\Novell\ZCM\ZenLgn\Hist ory\CachedUserZenNames
    Is that a known bug? What can i do to solve that problem?

    I would recommend an SR.
    You should not have to do that.
    There were some similar bugs in the past, but were fixed in 11.2.x and
    should not exist in 11.3.x at all.
    On 10/15/2014 7:26 AM, SteffenMuch wrote:
    >
    > Hi,
    >
    > we did a update from 11.2.3 to 11.3.1 a few weeks ago. All works fine
    > but there is one problem. A lot of users are not logged in to the ZAA.
    > If i try to start a remote session with the username i get the message
    > the user is not logged in to any device.
    > If i connect me to the device and look at the ZAA the user is not logged
    > in and i can not log in because i get the error message that the
    > username or password is wrong.
    >
    > The solution is to go to the registry ->
    > HKEY_LOCAL_MACHINE\SOFTWARE\Novell\ZCM\ZenLgn\Hist ory\Cache\domain.local
    > and i have to delete the user.
    > After that the login works fine
    > Sometimes i have to delete the user in this registry key too ->
    > HKEY_LOCAL_MACHINE\SOFTWARE\Novell\ZCM\ZenLgn\Hist ory\CachedUserZenNames
    >
    > Is that a known bug? What can i do to solve that problem?
    >
    >
    Going to Brainshare 2014?
    http://www.brainshare.com
    Use Registration Code "nvlcwilson" for $300 off!
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Technical Support Engineer
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Mobile account users can not log on to the snow leopard server machine?

    Hi all,
    I've setup a network user and designated it as a mobile account. ** OS X 10.6.2 **
    When the user logs out of the snow leopard server machine, home sync tries to sync the local and network home directories. It is never able to connect. The network home directory is automounted and is not the default path /Users. I can see the two home directories on disk.
    Anyone else able to have their mobile users log in to the snow leopard server machine without issues?
    OS X 10.6.2 **

    It was the Sync server was down and did not know it

  • I would like to add administrators to my team, but the users are not receiving invitations, but the status is "Invitation Sent". How can I add Administrators?

    I am trying to add 2 administrators to my Adobe Team. I am the Administrator (primary)
    I followed the instructions.
    Click Administrators in the left navigation pane to open the Administrators tab.
    Click +Add more link located at the bottom of the table.
    Enter the email address and name of the person to invite as an administrator.
    Click Add Administrator.
    When this did not work I had the invitee create an Adobe ID.
    Both my invites did not receive an email for the invitation.
    Is there a work around?

    Will follow instructions.
    Didn't receive expected Adobe email

  • Macbook Pro retina display 13 inch stopped charging. Charger LED also not on while plugged in. The battery fully drained off but the system can detect the charger when it was switched on.

    Macbook Pro retina display 13 inch 2014 model stopped charging. Charger LED also not on while plugged in. The battery fully drained off so the system can not be started but the system can detect the charger when earlier it was switched on before draining off the charge. Charger type magsafe 60W.

    Once you have examined the power inlet on the computer for dirt, and made certain that the pins on the end of the MagSafe cord are free to move in and out to make contact, there is very little you can do yourself.
    You will need to visit your Apple Store (FREE with appointment) or your Apple-Authorized Service Provider (policy varies). They work on these all the time and have good expertise and lots of spare parts to try to determine the problem.

  • If the user is not logged in, the user to the login page in oracle ADFBC

    I have been looking for a solution that will allow me to check if a user
    has been logged in before I load a page. If the user is not logged in, or
    the session has timed out, I want to send the user to the login page

    Hi user
    If your using servlet session and backing bean class for the jsp/jspx pages replace the setHtml1 method for this code:
    public void setHtml1(HtmlHtml html1) {
    // session control
    String myUser = null;
    FacesContext context = FacesContext.getCurrentInstance();
    ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
    HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
    HttpSession session = (HttpSession)ectx.getSession(true);
    myUser = (String)session.getAttribute("appUser");
    if (myUser == null) {
    try {
    // no session
    response.sendRedirect("http://myErrorPage.jspx");
    } catch (IOException e) {
    e.printStackTrace();
    this.html1 = html1;
    Good Luck
    Edited by: Maxi Rodriguez on Sep 18, 2008 11:14 AM

  • I have an imac and I set up additional user accounts.  When I start up or restart the computer it only shows me the option of logging on as the system administrator and it does not show the other accounts for my wife and kids.

    When I start up my additional user accounts do not show so I can log onto them.   The same thing happens when I log out as the system admin.  How do I get to the additional accounts that I have set up on my imac so I can log in under them.   Thanks

    There is zero advantage to partitioning a HD for the purpose you have described. I recommend that you take your machine to an AASP, describe the problem and they will help you get it back working. Partitioning a HD is a 1990's approach and is of no value what-so-ever unless you installing multiple operating systems on the HD. In that case it would be valuable.
    Good luck.

  • Java daemon on boot: "This user is not allowed access to the window system right now."

    The daemon is located in /Library/LaunchDaemons/ and launches successfully on most occasions. However, it sometimes fails to start with this error:
    Nov 17 20:36:24 server.local java[28972]: This user is not allowed access to the window system right now.
    Nov 17 20:36:24 server com.apple.launchd[1] (net.java.server): Throttling respawn: Will start in 10 seconds
    I have the server command running as a background daemon using its "nogui" option (the developers claim to have written it to not display a gui). However, it seems that somewhere along the line, Java is trying to display something. As the daemon is running before users log in, it gives this error. Once a user is logged in to the system, it runs fine; however, logging in a user to run the server is not an option. It needs to run on boot.
    Any ideas for how to solve this? I'm going to contact the developers to see if it may be something they can fix, but I want to be able to force the issue in case the problem ever occurs in the future.

    Irrespective of any claims by the developer, this certainly appears to be a test case that shows that the tool is not working as expected, and that the application has a bug.  This test case would be better if there was some evidence around why only some of the startups fail, but in general this will involve what's been suggested earlier:  "Contact the application developer."  
    As some general background on what's involved, see daemons and agents and related; processes that are not allowed to connect to the GUI for reasons of security.
    I'd also suggest testing your DNS, as seeing "server.local" can imply local DNS configuration errors.   Launch Terminal.app  from Applications > Utilities and issue the following harmless diagnostic command and see if it reports no changes, or if it detects network or DNS errors:
    sudo changeip -checkhostname
    If this is OS X Server and a NAT'd network, you do not want to reference any DNS servers located off of your NAT'd network.
    Why DNS?  Because DNS errors can cause only some operations to fail, particularly if there's more than one DNS server selected (and where some subset of the DNS servers are malfunctioning or misconfigured).

  • User not logged in but MDSImporterWorker is running... should I be worried?

    As the title says, I occassionally have a few users that are not logged in, but MDSImporterWorker is doing it's thing. It seems persistent on a single account, but when I remove the account, it jumps to another account. I've reset passwords (strong passwords), but still going.
    Is this normal? Should I be worried?
    UID PID TTY TIME CMD
    1029 767 ?? 0:02.62 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker MDSImporterWorker com.apple.Spotlight.ImporterWorker.1029

    I had this problem after exposing my iphone to steam from the shower (don't ask why). Apparently, my iphone received "water damage" as indicated by the indicators after a visit to the genius bar. I just blew out the bottom of my iphone with air and over time the problem just went away. There's no way water touched the ports though so it seems the water damage indicator is a bit too sensitive.
    Basically, if it the dock connector on your iphone gets wet/steamy/dirty then it can start acting up. Clean it like jagamac said and see if the problem goes away. If it doesn't, I would suggest trying a different charger. If the problem persists (using a geniune apple charger), then it's probably best to visit the genius bar.

  • I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid

    I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid of this.

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • Error in Windows 7: User Profile Service was not logged on. The user and administra​torprofile

    Error in Windows 7: User Profile Service was not logged on. The user profile can not be loaded. Administrator profile and the code does not work. What do I do?
    HP G5384sc desktop pc

    Hello
    Unfortunately I did not manage to fix my computer yet. My printer is broken so I bought a new one, but since I do not have administrator rights, I can not connect the new printer, so I have to write all-installing notes down with pencil and simultaneously translate them into Danish so it is a very slow process. I'll tell you if it succeeds, otherwise there is of course the primitive way to buy a new computer, but it's the same as giving up. Not yet.
    Until now, many thanks for the good suggestions.
    Kind regards
    Birgeres

  • Is there a script or a secure program that I could use to remove profiles after a given user logs off from the system?

    I am trying to do this on a network for a specific lab that uses Active Directory. I would like to accomplish this on each individual iMac. The only account that would not be removed after logging off would be the Administrators.
    Thanks.

    Also, If I created a default profile on each system, could each user log in and be redirected to that profile and all of their network resources be readily available, and once they log out of the system, they are disconnected and all of their information is removed? (Hope this makes sense.)

  • I want to look at my bill online but the system is not accepting my information.

    I want to check my last bill which but the system will not let me do that.  This is the first time I have logged onto the site to check my bills and I need some assistance please.

    i cant get to see my bills ,im logged in on t mobile but im on ee.i registered on ee but now when i put my no there the system says this no is already registered.when i go on t mobile its says system down for last 2 months

  • HT201303 I tried to update my security questions this morning but got timed out.  Ive just tried to get into my account but the system does not recognise the answers to my question.  How can I rectify this problem please

    I was trying to update my Security Questions this morning but got 'Timed Out' I've just tried again to get into my security settings but the system does not recognise the information I'm putting in. Can anyone tell me how I can correct this problem.  I can still log-in.
    Best wishes

    Welcome to the Apple Community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.
    If that doesn't help you might try contacting Apple through Express Lane (select your country, navigate to iCloud help and enter the serial number of one of your devices)

  • I'm trying to associate my iphone serial num with my apple profile, but the system say that the number is not good !

    I'm trying to associate my iphone serial num with my apple profile, but the system say that the number is not good !

    it is correct in this link;
    but in the https://supportprofile.apple.com/PramAddRegisterProduct.do
    the message indicate the (same) number is not valide

Maybe you are looking for

  • How to add a Button in JFrame title Bar ?

    Hi Folks, I want to add a button near to JFrame's Minimize Button(On the title bar). How can i do it ? Should i extend RootPaneUI and add custom button ? Any other easy ways to do this ? If anyone provides me Sample Code how to do it, It is much Appr

  • IPhone / USB devices do not charge when lid closed

    I recently noticed an issue with my Macbook Air 13" (late 2010). Previously, when i plugged in my iPhone when the Air's lid was closed, the phone would charge. Now recently, when i plug the iPhone in whilst the lid is closed (in sleep mode), the phon

  • Quotation comparison in SAP

    I work for a construction group (Group ABC), we have SAP ECC implemented. I joined here about 2 weeks ago. And I am shocked knowing the way SAP is used here, more of emails used than SAP itself for processes. I am working for a company (Company C) wi

  • Can I insert a page break but carry on on the same page?

    I need to insert a section break in order to have the footnoting restart again, but I don't want any blank space. I want to insert a single footnote using an asterix that relates to the first footnote entry but then restart the footnoting using numbe

  • Is there a way to disable a user's Parental Controls through ARD?

    So, we have Users with AD accounts, and for some reason Parental Controls is ON, and the only thing it limits is Printer Administration. I don't need this on, there's actually no need for Parental Controls at all, they are all Users, not Admins.. So,