Project

General

Profile

Install SSH module for PHP » History » Version 12

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

1 1 Neil Voss
h1. Install SSH module for PHP
2
3 10 Neil Voss
This installation occurs on the web server.
4
5 3 Neil Voss
h2. The ssh2 extension for php
6 1 Neil Voss
7 7 Neil Voss
|_.Name:|_.Download site:|_.CentOS yum package name|_.Fedora yum package name|_.SuSE rpm name|
8 8 Neil Voss
|re2c |http://re2c.org/ |re2c |re2c | |
9 7 Neil Voss
|php devel |http://pear.php.net/ |php-devel |php-devel| |
10
|libssh2 devel |http://pear.php.net/ |libssh2-devel |libssh2-devel| |
11 5 Neil Voss
|SSH PECL extension |http://www.php.net/manual/en/ssh2.installation.php |php-pear |php-pear | |
12 1 Neil Voss
13
bq. For newer systems the extension is available through the repository, e.g., on Fedora 12 type "@sudo yum install php-pecl-ssh2@"
14
15 8 Neil Voss
h2. Download and compile the ssh2 extension
16 3 Neil Voss
17 9 Neil Voss
bq. See http://www.php.net/manual/en/ssh2.installation.php for more information
18
19 4 Neil Voss
# Go the website http://pecl.php.net/package/ssh2
20
# Download the latest version of ssh2:<pre>
21
wget http://pecl.php.net/get/ssh2-0.11.0.tgz</pre>
22
# Extract the tar ball<pre>
23 1 Neil Voss
tar zxvf ssh2-0.11.0.tgz</pre>
24 5 Neil Voss
# Go into the directory<pre>
25
cd ssh2-0.11.0</pre>
26 6 Neil Voss
# Run phpize and standard make process<pre>
27
phpize
28
./configure
29 1 Neil Voss
make</pre>
30 10 Neil Voss
# Install the module:<pre>
31 1 Neil Voss
sudo make install</pre>
32 11 Neil Voss
# Add a ssh2.ini to your php ini folder:<pre>
33
sudo touch /etc/php.d/ssh2.ini
34
sudo chmod 666 /etc/php.d/ssh2.ini
35 12 Neil Voss
echo "; Enable ssh2 extension module" > /etc/php.d/ssh2.ini
36
echo "extension=ssh2.so" >> /etc/php.d/ssh2.ini
37 11 Neil Voss
sudo chmod 444 /etc/php.d/ssh2.ini
38
cat /etc/php.d/ssh2.ini
39
</pre>
40 10 Neil Voss
# Restart httpd:<pre>
41
sudo /sbin/service httpd restart</pre>
42 1 Neil Voss
43
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*
44
_______
45
46
[[Setup job submission server|< Setup job submission server]] | [[Configure web server to submit jobs|Configure web server to submit jobs >]]
47
48
_______