File: desktop-computing.rst

package info (click to toggle)
oar 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,700 kB
  • sloc: perl: 34,517; sh: 6,041; ruby: 5,840; sql: 3,390; cpp: 2,277; makefile: 402; php: 365; ansic: 335; python: 275; exp: 23
file content (23 lines) | stat: -rw-r--r-- 733 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Desktop computing
=================
If you want to compute jobs on nodes without SSH connections then this
feature is for you.

On the nodes you have to run "oar-agent.pl". This script polls the OAR
server via a CGI HTTP script.

Usage examples:
 - if you want to run a program that you know is installed on nodes::

    oarsub -t desktop_computing /path/to/program

   Then /path/to/program is run and the files created in the
   oar-agent.pl running directory is retrieved where oarsub was
   launched.

 - if you want to copy a working environment and then launch the program::

    oarsub -t desktop_computing -s . ./script.sh

   The content of "." is transfred to the node, "./script.sh" is run and
   everything will go back.