Project

General

Profile

Install SSH module for PHP » History » Version 21

Amber Herold, 06/08/2010 02:56 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 21 Amber Herold
First, install the following prerequisites:
8
9 7 Neil Voss
|_.Name:|_.Download site:|_.CentOS yum package name|_.Fedora yum package name|_.SuSE rpm name|
10 18 Neil Voss
|php devel |http://www.php.net |php-devel |php-devel| |
11
|libssh2 devel |http://www.libssh2.org |libssh2-devel |libssh2-devel| |
12 15 Neil Voss
|SSH PECL extension |http://www.php.net/manual/en/ssh2.installation.php |- |php-pecl-ssh2 | |
13 1 Neil Voss
14
bq. For newer systems the extension is available through the repository, e.g., on Fedora 12 type "@sudo yum install php-pecl-ssh2@"
15
16 8 Neil Voss
h2. Download and compile the ssh2 extension
17 3 Neil Voss
18 13 Neil Voss
bq. This setup is almost identical to the [[Install the MRC PHP Extension]]. See http://www.php.net/manual/en/ssh2.installation.php for more information.
19 9 Neil Voss
20 4 Neil Voss
# Go the website http://pecl.php.net/package/ssh2
21
# Download the latest version of ssh2:<pre>
22
wget http://pecl.php.net/get/ssh2-0.11.0.tgz</pre>
23
# Extract the tar ball<pre>
24 1 Neil Voss
tar zxvf ssh2-0.11.0.tgz</pre>
25 5 Neil Voss
# Go into the directory<pre>
26
cd ssh2-0.11.0</pre>
27 6 Neil Voss
# Run phpize and standard make process<pre>
28
phpize
29
./configure
30 1 Neil Voss
make</pre>
31 10 Neil Voss
# Install the module:<pre>
32 1 Neil Voss
sudo make install</pre>
33 11 Neil Voss
# Add a ssh2.ini to your php ini folder:<pre>
34
sudo touch /etc/php.d/ssh2.ini
35
sudo chmod 666 /etc/php.d/ssh2.ini
36 12 Neil Voss
echo "; Enable ssh2 extension module" > /etc/php.d/ssh2.ini
37
echo "extension=ssh2.so" >> /etc/php.d/ssh2.ini
38 11 Neil Voss
sudo chmod 444 /etc/php.d/ssh2.ini
39
cat /etc/php.d/ssh2.ini
40
</pre>
41 10 Neil Voss
# Restart httpd:<pre>
42
sudo /sbin/service httpd restart</pre>
43 1 Neil Voss
44 13 Neil Voss
h2. Test if the module is working:
45
46
# go to the info.php that was created earlier in the [[Install the MRC PHP Extension]], http://localhost/info.php or http://HOST.INSTITUTE.EDU/info.php
47
# search for the ssh2 module, you should see this section:
48
49 14 Neil Voss
!ssh2box.png!
50 1 Neil Voss
_______
51
52 20 Amber Herold
[[Setup job submission server|< Setup job submission server]] | [[Configure_web_server_to_submit_job_to_local_cluster|Configure web server to submit job to local cluster >]]
53 1 Neil Voss
54
_______