Error: Collector has no record of schedd/submitter
AFAIK -submitter means the user that submitted a job, not the pool
itself. Use
condor_q -name phuket
instead.
If you query a pool not connected to the collector specified in your
configuration, you also have to specify that collector for condor_q
(and other commands).
condor_q -name phuket -pool <collector>
$ condor_submit -remote phuket 1.sub
Submitting job(s)
ERROR: Failed to connect to queue manager phuket
AUTHENTICATE:1003:Failed to authenticate with any method
AUTHENTICATE:1004:Failed to authenticate using FS
The problem is that you cannot authorize at your collector as you
have only allowed authorization via the local filesystem. You will
want to allow different authorization methods for both your remote
pool and the condor you are submitting from.
For example, we allow authentication via shared filesystem and Grid
security certificates at our pool via the configuration
SEC_DEFAULT_AUTHENTICATION_METHODS = FS,FS_REMOTE,GSI
I suggest you read through the documentation for the possibilities
of configuring authorization as this is important for deciding which
method is best used for your setup.
-Max