Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] pb of job submission on windows machine
- Date: Thu, 03 Mar 2005 16:28:27 -0600
- From: Colin Stolley <stolley@xxxxxxxxxxx>
- Subject: Re: [Condor-users] pb of job submission on windows machine
Regis,
I guess I'd like to know why your condor daemons themselves need access
to the network. The jobs themselves run as a separate user, which can
access network resources when it has the appropriate credentials.
If you're attempting to keep the daemon log files on a network volume, I
would discourage it due to complications that can arise with file
locking (among other things).
If you're attempting to keep the daemon binaries on a network volume,
you can use null-sessions to accomplish this. Null sessions allow
unauthenticated users to access resources, which is unsafe, but
depending on your environment may not be the end of the world. See:
http://support.microsoft.com/kb/q289655/
For more information.
As a last resort, if you insist on running your daemons as your 'Condor'
user, then you must make sure it has Administrator privileges. With
regards to the error you're seeing, the function that is failing is
actually CreateProcessAsUser(). According to Microsoft, the caller
should have SE_ASSIGNPRIMARYTOKEN_NAME and SE_INCREASE_QUOTA_NAME
privileges in order for it to complete successfully. Perhaps that is
what your 'Condor' user is missing.
Colin