Project

General

Profile

Install SSH module for PHP » History » Version 7

Neil Voss, 05/27/2010 03:30 PM

1 1 Neil Voss
h1. Install SSH module for PHP
2
3 3 Neil Voss
h2. The ssh2 extension for php
4 1 Neil Voss
5 7 Neil Voss
|_.Name:|_.Download site:|_.CentOS yum package name|_.Fedora yum package name|_.SuSE rpm name|
6
|php devel |http://pear.php.net/ |php-devel |php-devel| |
7
|libssh2 devel |http://pear.php.net/ |libssh2-devel |libssh2-devel| |
8 5 Neil Voss
|SSH PECL extension |http://www.php.net/manual/en/ssh2.installation.php |php-pear |php-pear | |
9 1 Neil Voss
10
bq. For newer systems the extension is available through the repository, e.g., on Fedora 12 type "@sudo yum install php-pecl-ssh2@"
11
12 3 Neil Voss
h2. Download and install the ssh2 extension
13
14 4 Neil Voss
# Go the website http://pecl.php.net/package/ssh2
15
# Download the latest version of ssh2:<pre>
16
wget http://pecl.php.net/get/ssh2-0.11.0.tgz</pre>
17
# Extract the tar ball<pre>
18 1 Neil Voss
tar zxvf ssh2-0.11.0.tgz</pre>
19 5 Neil Voss
# Go into the directory<pre>
20
cd ssh2-0.11.0</pre>
21 6 Neil Voss
# Run phpize and standard make process<pre>
22
phpize
23
./configure
24
make</pre>
25
26 4 Neil Voss
27 1 Neil Voss
# Download and install the ssh2 extension for php as instructed at its download site:
28
* http://www.php.net/manual/en/ssh2.installation.php
29
    Install openssl and compile libssh first before compiling php-ssh2 extension. Once you get the final ssh2.so, add it in your php.ini
30
31
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*
32
_______
33
34
[[Setup job submission server|< Setup job submission server]] | [[Configure web server to submit jobs|Configure web server to submit jobs >]]
35
36
_______