Project

General

Profile

Configure web server to submit jobs » History » Version 4

Neil Voss, 05/27/2010 02:51 PM

1 1 Neil Voss
h1. Configure web server to submit jobs
2
3
h2. Install the php-ssh2 extension
4
5
bq. For newer systems the extension is available through the repository, e.g., on Fedora 12 type "@sudo yum install php-pecl-ssh2@"
6
7
This enables an ssh session initialized from appionweb
8
# Download and install the ssh2 extension for php as instructed at its download site:
9
* http://www.php.net/manual/en/ssh2.installation.php
10
    Install openssl and compile libssh first before compiling php-ssh2 extension. Once you get the final ssh2.so, add it in your php.ini
11
12
The extension module is added to php in the same way as does the php-mrc module we distribute for the viewing mrc images through php.  To check whether it worked and for alternative way to make php recognize the module used in newer php, see http://emg.nysbc.org/documentation/leginon/bk02ch04s07.php under the section *Check php information* and *Alternative approach if mrc module does not show up in info.php output*
13
14
h2. configuration at web server side 
15
16
*IMPORTANT*: What we refer here as _your_cluster.php_ should not be taken literally.  For example, if you access your cluster through network with a name "bestclusterever", you should name your cluster configuration php file *bestclusterever.php*, not _your_cluster.php_.
17
# Go to your_dbem_1_5_1/processing directory
18
# Copy *default_cluster.php* to _your_cluster.php_
19
# [[ClusterPhpSettings|Edit your_cluster.php]] to correspond to your cluster configuration.
20
# Edit *config_processing.php* to add your cluster and, if desired, a stand-alone workstation as processing_host and register the _your_cluster.php_ you just created.
21
22
<pre>
23
$PROCESSING_HOSTS[]="your_stand-alone_processing_workstation";
24
$PROCESSING_HOSTS[]="your_cluster";
25
$CLUSTER_CONFIGS= array (
26
  'your_cluster'
27
);
28
</pre>
29 2 Neil Voss
30 3 Neil Voss
_______
31
32 2 Neil Voss
[[Setup job submission server|< Setup job submission server]] | [[Testing job submission|Testing job submission >]]
33 3 Neil Voss
34
_______