Project

General

Profile

Install SSH module for PHP » History » Version 1

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

1 1 Neil Voss
h1. Install SSH module for PHP
2
3
h1. Configure web server to submit jobs
4
5
h2. Install the php-ssh2 extension
6
7
|_.Name:|_.Download site:|_.CentOS package name|_.Fedora package name|_.SuSE rpm name|
8
|SSH PECL extension|http://www.php.net/manual/en/ssh2.installation.php | |php-pecl-ssh2| |
9
10
11
12
bq. For newer systems the extension is available through the repository, e.g., on Fedora 12 type "@sudo yum install php-pecl-ssh2@"
13
14
This enables an ssh session initialized from appionweb
15
# Download and install the ssh2 extension for php as instructed at its download site:
16
* http://www.php.net/manual/en/ssh2.installation.php
17
    Install openssl and compile libssh first before compiling php-ssh2 extension. Once you get the final ssh2.so, add it in your php.ini
18
19
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*
20
21
h2. configuration at web server side 
22
23
*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_.
24
# Go to your_dbem_1_5_1/processing directory
25
# Copy *default_cluster.php* to _your_cluster.php_
26
# [[ClusterPhpSettings|Edit your_cluster.php]] to correspond to your cluster configuration.
27
# 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.
28
29
<pre>
30
$PROCESSING_HOSTS[]="your_stand-alone_processing_workstation";
31
$PROCESSING_HOSTS[]="your_cluster";
32
$CLUSTER_CONFIGS= array (
33
  'your_cluster'
34
);
35
</pre>
36
37
_______
38
39
[[Setup job submission server|< Setup job submission server]] | [[Configure web server to submit jobs|Configure web server to submit jobs >]]
40
41
_______