Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Condor and Windows Domain Accounts
- Date: Wed, 21 Dec 2005 16:08:15 +0000
- From: Matt Hope <matthew.hope@xxxxxxxxx>
- Subject: Re: [Condor-users] Condor and Windows Domain Accounts
On 12/21/05, Ari Silver <ari_ag@xxxxxxxxx> wrote:
>
>
> --- Matt Hope <matthew.hope@xxxxxxxxx> wrote:
>
> > On 12/21/05, Ari Silver <ari_ag@xxxxxxxxx> wrote:
> > > NOTE: I've been trying (thus far unsuccessfully)
> > to
> > > get Condor to work with a file server using the
> > 'net
> > > use' command. Each time I place this command in a
> > > batch script and have Condor run it, it comes back
> > > with "Error 1326 (unrecognized user/password)"
> > even
> > > though I explicitly specified the user/password.
> >
> > Do you specify the domain?
> >
> > What is the exact (baring the password itself)
> > command you use...
> >
> > Matt
> >
>
> This is the command I've been trying to use:
> net use \\bonnie\home\silvera\CondorJobs\demo password
> /USER:silvera
there's your problem
should be
/USER:yourdomain\silvera
> When I run this exact command from a prompt, it works
> properly.
auto supplied from your existing domain - when run from condor no
existing default domain exists from which to start
> It's probably also important to note that I tried
> replacing the condor-reuse-vmX accounts automatically
> created by Condor with the newly created accounts on
> my domain. I've made sure the new accounts are part of
> the Adminstrators group.
makes no difference - you *must* state your domain membership, in your
case this would mean changing your
VM1_USER = condor-reuse-vm1
to
VM1_USER = yourdomain\condor-reuse-vm1
and also storing the credential of the user on every local machine -
hence suggesting the much simpler net use command.
Matt