linux系统中安装SSH2扩展步骤详解

SSH2安装小编以前没有做过,今天听一个朋友说要在centos中使用SSH2了,下面我们来为各位介绍linux系统中安装SSH2扩展步骤详解吧,今天闲来无事,给大伙说一下linux下安装SSH2扩展,想在windos下安装可是php扩展找不到,泪奔。。。

所以只能在linux做实验了,不过都一样.

下载地址:

  1. wget http://www.libssh2.org/download/libssh2-1.4.2.tar.gz
  2. wget http://pecl.php.net/get/ssh2-0.12.tgz

先安装 libssh2 在安装 SS2:

  1. # tar -zxvf libssh2-1.4.2.tar.gz
  2. # cd libssh2-1.4.2
  3. # ./configure --prefix=/usr/local/libssh2
  4. # make && make install

以上为安装libssh2,这里需要记住libssh2的安装目录,因为在安装ssh2的时候还会用到.

  1. # tar -zxvf ssh2-0.12.tgz
  2. # cd ssh2-0.12
  3. # phpize
  4. # ./configure --prefix=/usr/local/ssh2 --with-ssh2=/usr/local/libssh2
  5. # make

SSH安装:

  1. # tar -zxvf ssh2-0.12.tgz
  2. # cd ssh2-0.12
  3. # phpize
  4. # ./configure --prefix=/usr/local/ssh2 --with-ssh2=/usr/local/libssh2 --with-php-config=/usr/local/php/bin/php-config
  5. # make && make install

安装完成之后SSH2扩展在 /usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/ 目录中,修改php.ini文件加入:

extension=ssh2.so

啊哈哈加入扩展成功:

  1. <?php
  2. $user="root";//远程用户名
  3. $pass="123456";//远程密码
  4. $connection=ssh2_connect('192.168.1.46',22);
  5. ssh2_auth_password($connection,$user,$pass);
  6. $cmd="ps aux";//命令
  7. $ret=ssh2_exec($connection,$cmd);
  8. stream_set_blocking($ret, true);
  9. echo (stream_get_contents($ret));
  10. //print_r(phpinfo()); //phpfensi.com
  11. ?>