App hangs when creating hpc session with a different admin user

Answered App hangs when creating hpc session with a different admin user

  • Tuesday, September 27, 2011 1:47 PM
     
     

    Hi All,

    I have a HPC grid environment with a head node , a broker node and 2 compute nodes.

    I have a client application that creates session (code snippet is given below) and submites job through SOA mode of execution in a domain environment. It is running fine and I can able to get the results back.

    --------------------------------------------------------------------------------------------------

    Code snippet:

    SessionStartInfo info = new SessionStartInfo(headnode, serviceName);

    info.MinimumUnits = 1; info.MaximumUnits = 200;

    info.ShareSession = true;

    using (Session session = Session.CreateSession(info))

    {

    ...Create Broker client and submit tasks..

     }

    -----------------------------------------------------------------------------------------------------------------

    Problem comes when i try to run the client app with a different user who is also a HPC cluster administrator , Windows Administrator the application hangs in CreateSession and never returns ( even not throwing any exception ).

    Does any body have any clue on the issue?

    Thanks in advance

    Aravindakumar.V

All Replies

  • Tuesday, September 27, 2011 4:53 PM
     
     

    Hi Aravindakumar,

    Maybe the other account doesn't have its credentials cached. Please try running this as the other admin: http://technet.microsoft.com/en-us/library/ff950220.aspx

    Regards,
    Łukasz

     


  • Wednesday, September 28, 2011 2:04 PM
     
     

    Thanks for your reply Łukasz.

    I tried it and it does n't worked out. Session Creation still hangs. It doesn't throw any exception and just hangs.. Is there any way where we can see the activities happening that time. In job management tab the job going to state 'Configuring' and just stays in that state.

    Any help is highly appreciated..

    Thanks in advance

    Aravindakumar.V

     

  • Wednesday, September 28, 2011 4:38 PM
     
     Answered

    I'm sorry, I probably pointed you to the wrong direction. I just updated the link in the previous post, could you try again? http://technet.microsoft.com/en-us/library/ff950220.aspx

    • Marked As Answer by Aravindakumar.V Thursday, September 29, 2011 5:26 AM
    •  
  • Thursday, September 29, 2011 5:26 AM
     
     
    Thanks a lot , it worked..