{section: Remote HTCondor (RCondor) Module Description} Remote HTCondor allows a user to submit and monitor batch jobs through a remote instance of HTCondor from his or her computer without having to install HTCondor locally. It does this by providing wrappers of common HTCondor cmdline tools that will use ssh to execute these commands on the remote machine. Furthermore, it integrates with sshfs to provide transparent access to data. It is written entirely in Bash. RCondor is an ideal solution for laptop users since it is lightweight and highly portable. {subsection: Presentations} *: Wedding convenience and control with !RemoteCondor (http://www.slideshare.net/igor_sfiligoi/remote-condor-convenience-control) {section: Usage} Once properly configured, run: {verbatim} rcondor_mnt {endverbatim} Make sure that any paths corresponding to job executables, submit files, and job output files are located somewhere within the LOCAL path specified in rcondor.conf. Also make sure your current working directory is within the LOCAL path. Then run a command such as {verbatim} condor_submit {endverbatim} followed by the usual arguments. {section: Configuration} Run: {verbatim} rcondor_configure user@host:dir mountpoint {endverbatim} These argument fields should correspond to your standard sshfs mount command. It will create a file: {verbatim} $HOME/.rcondor/rcondor.conf {endverbatim} with the lines: {code} USR_HOST = user@host LOCAL = mountpoint REMOTE = dir {endcode} {subsection: Dependencies} *: ssh *: sshfs *: HTCondor (on remote machine) {subsection: Currently Supported HTCondor Commands} *: condor_submit *: condor_rm *: condor_q *: condor_status {section: Download} The module is included with the source of HTCondor as of version 7.5.5 and can be found in src/condor_contrib/rcondor/ {section: Contact} The contact persons for this module are Jeffrey M. Dost and Igor Sfiligoi from UCSD. {section: Homepage} RemoteCondor {section: License} This module is released under the BSD License: {code} The BSD License Copyright (c) 2010, Jeffrey M. Dost All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of California, San Diego nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. {endcode}