Php pecl ssh2 install

Русские Блоги

Проведя день, я наконец выяснил, как использовать расширение Libssh2 в PHP. Я столкнулся с некоторыми проблемами в процессе и углубил понимание PHP и SSH2 в процессе решения проблемы. Поэтому я все еще решаю провести некоторое время, чтобы рассмотреть весь процесс как меморандум.

Что такое расширение PHP SSH2

Расширение PHP SSH2 (в дальнейшем, называемом как PECL/SSH2), позволяет команды удаленной системы выполнения и передачу файлов в программах PHP. Ей не нужно разрабатывать и развернуть программу «Троян», аналогичная AGNET на контролируемой машине, которая значительно уменьшается Затраты на эксплуатацию и обслуживание. Суть

Php ssh2Зависимая библиотека, необходимая для расширения

  • OpenSSL: сбор алгоритмов шифрования, C -языковой реализации
  • LIBSSH2: библиотека протоколов SSH2, C -языковая реализация языка
  • PECL/SSH2: PHP расширение LIBSSH2 позволяет PHP -программе называть функцию в Libssh2

Зависимость: PECL/SSH2 -> libssh2 -> openssl

Процесс установки

$ ./configure —with-libssl-prefix=/your/openssl/home LIBS=-ldl

PS: «Libs = -ldl» в конфигурации очень важна. Если она не установлена, если он не будет установлен, это приведет к разблокированию DLClose и другие ошибки »

$ ./configure —with-php-config=/your/php/home/bin/php-config LIBS =-ldl

(Добавить endension = ssh2.so)

$ cp ssh2.so /php.ini/extention_dir

$ Php -i | grep ssh2 (проверьте установку PECL/SSH2 успешно, ничего не является успешным)

PS: «Libs = -ldl» в конфигурации очень важна. Если она не установлена, это приведет к ошибке «версия libssh2> = 0,4». Вы можете проверить ее, просмотревconfig.log, Позиционирование конкретной позиции ошибки, аналогично Libssh.

PHP SSH2 API пример

При удаленной эксплуатации компьютера через API, связанный с PECL/SSH2, вам нужно сначала получить ссылку и функцию:

session ssh2_connect($host, $port)

После получения ссылки вам необходимо проверить ее, то есть вход в систему, SSH2 предоставляет три метода входа в систему:

  • Публичный ключ: проверить через открытый ключ и ключ, вам необходимо использовать OpenSSL для генерации рабочего клавиши, а затем загрузить открытый ключ в указанный каталог, который должен быть удаленно добраться до машины. Характеристики безопаснее, но это не удобно. Поддержка PECL/SSH2.
  • Пароль: войдите в систему непосредственно через имя пользователя и пароль. Это очень удобно, но это не безопасно. Пароль должен быть передан API SSH2. Поддержка PECL/SSH2.
  • Клавиатура-Interactive: вам нужно ввести пароль вручную, PECL/SSH2 не поддерживает его.

Вы можете получить метод проверки, предоставленный сервером, посредством следующего API:

mixed ssh2_auth_none ( resource $session , string $username )

Возвратное значение — это строковый массив метода проверки.

Следующий код демонстрирует метод пароля для проверки и называется командой «PWD» удаленно:

'; // Получить метод проверки и распечатать $auth_methods = ssh2_auth_none($connection, $user); print_r( $auth_methods.'
'); if (in_array('password', $auth_methods )) < // Войдите на удаленный сервер через пароль if (ssh2_auth_password($connection, $user, $passwd)) < echo $user.' login OK
'; $ Stream = ssh2_exec ($ connection, "pwd"); // Выполнить php stream_set_blocking ($ stream, true); // Отправить контент после Pwd if ($stream === FALSE) die("pwd failed"); echo 'pwd: '.stream_get_contents($stream).'
'; > else < die( $user.' login Failed
'); > > ?>

Подвести итог

Общий процесс установки расширений PHP:

1. Phpize, генерируйте файл конфигурации и Makefile и т. Д.

2. ./configure && make && make install

3. Граница php.ini, добавить расширение

4. Проверьте скомпилированный файл SO в каталоге extension_dir

6. Просмотреть, существует ли вывод PHPINFO или «PHP -I | GREP XXXX» существует на странице, которые необходимо установить

PS: во время процесса настройки, если некоторые проблемы найдут, вы можете проверить положение проблемы, проверив config.log.

  • Официальный документ PHP SSH2 API, очень ясно, обратите внимание на следующее обсуждение:http://www.php.net/manual/en/ref.ssh2.php
  • Описание этапов установки:http://www.cnblogs.com/edwardlost/archive/2011/04/02/2003097.html

Источник

Моя Россыпь

В CentOS8 по умолчанию устанавливается версия php – 7.2.
Данная версия языка php не содержит готового пакета расширения ssh2 в репозитариях CentOS8. Более того расширение не поддерживается официально для php7. В связи с этим нет возможности использовать директивы ssh2_connect, ssh2_exec, ssh2_scp_send в программах на php7.

Это ограничение можно обойти, установив расширение вручную.
1) Подготовим систему для сборки расширения ssh2
# yum install gcc php-devel libssh2 libssh2-devel

2) Скачиваем и собираем расширение
# cd /usr/src
# git clone https://github.com/php/pecl-networking-ssh2.git
# cd pecl-networking-ssh2
# phpize
# ./configure
# make
Сборка завершается сообщением:
———————————————————————-
Libraries have been installed in:
/usr/src/pecl-networking-ssh2/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the ‘-LLIBDIR’
flag during linking and do at least one of the following:
— add LIBDIR to the ‘LD_LIBRARY_PATH’ environment variable
during execution
— add LIBDIR to the ‘LD_RUN_PATH’ environment variable
during linking
— use the ‘-Wl,-rpath -Wl,LIBDIR’ linker flag
— have your system administrator add LIBDIR to ‘/etc/ld.so.conf’

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
———————————————————————-
3) Устанавливаем собранный пакет
# make install
Результат:
Installing shared extensions: /usr/lib64/php/modules/

4) Информацию о новом модуле нужно задать в директории /etc/php.d
Создаем файл и заносим в него информацию о расширении:
# touch /etc/php.d/40-ssh2.ini
# nano /etc/php.d/40-ssh2.ini
Вписываем туда:
extension=ssh2

5) Проверить результат можно командой:
# php -i |grep ssh2
Для применения настроек в apache, web-сервер нужно перезагрузить

Источник

Php pecl ssh2 install

Installation For Centos 5.11 x86_64

rpm -K rpmforge-release-0.5.3-1.el5.rf.*.rpm

rpm -i rpmforge-release-0.5.3-1.el5.rf.*.rpm

2. yum install gcc php-devel php-pear libssh2 libssh2-devel
3. pecl install -f ssh2
4. Enable extension from php.ini configuration

Steps for installing the extension package on Debian systems:

> sudo apt-get install libssh2-php
> sudo /etc/init.d/apache2 restart

The SSH2 binary for Windows (php_ssh2.dll) can be found here: http://pecl.php.net/package/ssh2/1.1.2/windows

[Editor’s note: unless you have special demands, use the appropriate deps package from .]

SSH2 for Windows is not available from the authors of the extension. But compiled binaries are available from the Apache Lounge (which is recommended by the php.net website too).

This binaries contain a lot (maybe even all?) for Windows compiled PHP extensions, like the SSH2 extension.

Please note that it is also highly recommended to use their Windows binary builds for the Apache HTTP server from here: https://www.apachelounge.com/download/

Older versions can be choosen from the left menu (VC11, VC10, etc.) if required.

php.net also recommends to use the binary builds from the Apache Lounge.

Maybe this helps developers, who work with Windows and can’t find or compile some extensions themself.

Steps for installing on CentOS Linux 7

After having a full webserver running, install packages libssh2.x86_64 and php-pecl-ssh2.x86_64

1. yum install libssh2.x86_64 php-pecl-ssh2.x86_64
2. systemctl restart httpd.service

on linux debian like (ubuntu) a simple install will also load ‘libssh2-1’
$ sudo apt-get update && sudo apt-get install php-ssh2

$ sudo apache2ctl graceful
should make it usable

use phpinfo() function, some sections are now showing additional «ssh2» parts:
— Intro section with new items for «ssh2»
— — Additional .ini files parsed
— — Registered PHP Streams
— ssh2 (new section)
— — showing «SSH2 support — enabled»

Using PECL it must be specified the channel, since the beta version has to be choosen instead of stable one:

$ pecl install ssh2 channel://pecl.php.net/ssh2-version

Steps for installing the extension package on Ubuntu 14.04.

Very similar to dreadwestern at gmail dot com recipe, but enable ssh2 in PHP:

> sudo apt-get install libssh2-php
> php5enmod ssh2
> sudo /etc/init.d/apache2 restart

Since version 0.12 (released 2012-10-15) there is a binary version for Windows.

I tested it with PHP 5.5.29 (32-bit, thread-safe) on my Windows 7 machine.

Installing on Ubuntu 14.0.4

sudo pecl channel-update pecl.php.net
sudo apt-get install libssh2-1-dev
sudo pecl install -a ssh2-0.12
echo ‘extension=ssh2.so’ | sudo tee /etc/php5/mods-available/ssh2.ini > /dev/null
sudo php5enmod ssh2

On centos 8 and rockylinux:

Installing this module for use with CentOS 5. or 6.?

1. Install your favorite PHP RPM packages. Make sure that one of your favorite packages is pear, so pecl gets installed in-tow.

2. Find and install *RPMS* of libssh2 of a version >= 1.2, get both the base lib package (libssh2-1.2.*.rpm) and the devel package that includes headers (libssh2-devel-1.2.*.rpm) of the EXACT SAME VERSION. Finding these packages took a few minutes of googling, and I invite an editor that has a trusted source for these to attach URLs as appropriate. (Yes, the version below is ancient)

# rpm -ivh libssh2-1.2.6-1.el5.rf.x86_64.rpm libssh2-devel-1.2.6-1.el5.rf.x86_64.rpm

3. Install the PHP module via pecl
# pecl install ssh2-0.12

4. Make PHP see the newly-installed extension
# echo «extension=ssh2.so» > /etc/php.d/ssh2.ini

To help someone avoid the headaches I did for a week. SSH2 functions have problems with the ssh2-beta & libssh2-0.18 even after patching with said patches on the internet.

ssh_exec will work fine
ssh2_shell will not work

In order to use ssh2_shell I had to roll back to libssh2-0.14 in order to get ssh2_shell function to work properly

Just a little note: when compiling this package after modifying the ssh2.c, do not use pecl build as it will not create an ssh2.so file (although it says it succeeded), use:

you then need to copy the ssh2.so file into your extension dir if it didn’t do so already.

Источник

How to Install the PHP SSH2 Extension

In the examples shown, replace «X.Y» with your app’s PHP version (for example, «7.4» or «8.2»). To install a PECL extension for multiple PHP versions, repeat the PECL extension installation for each PHP version.

The SSH2 extension provides functions for accessing remote machines using the secure SSH and SFTP protocols.

Installing the SSH2 Extension on PHP 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, or 8.2

Note: The SSH2 extension’s support for PHP 7.x and 8.x is currently in beta.

To install this extension on PHP 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, or 8.2 SSH in as root and run the following commands on your server:

sudo apt-get -y install gcc make autoconf libc-dev pkg-config sudo apt-get -y install libssh2-1-dev sudo peclX.Y-sp install ssh2-beta

Once installed, create a configuration file for the extension and restart PHP.

sudo bash -c "echo extension=ssh2.so > /etc/phpX.Y-sp/conf.d/ssh2.ini" sudo service phpX.Y-fpm-sp restart

Installing the SSH2 Extension on PHP 5

To install this extension on PHP 5.6, SSH in as root and run the following on your server:

sudo apt-get install gcc make autoconf libc-dev pkg-config sudo apt-get install libssh2-1-dev sudo pecl5.6-sp install ssh2

Once installed, create a configuration file for the extension and restart PHP.

sudo bash -c "echo extension=ssh2.so > /etc/php5.6-sp/conf.d/ssh2.ini" sudo service php5.6-fpm-sp restart

Verifying the Installation

You can verify the SSH2 extension is installed with the command:

If SSH2 is installed correctly, you will see the following:

/etc/phpX.Y-sp/conf.d/ssh2.ini, Registered PHP Streams => https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, zip, phar, ssh2.shell, ssh2.exec, ssh2.tunnel, ssh2.scp, ssh2.sftp ssh2 SSH2 support => enabled libssh2 version => 1.4.3 banner => SSH-2.0-libssh2_1.4.3

Uninstalling the SSH2 Extension

To uninstall this extension, as root run the commands:

sudo rm /etc/phpX.Y-sp/conf.d/ssh2.ini sudo peclX.Y-sp uninstall ssh2

Next, restart PHP-FPM with the command:

sudo service phpX.Y-fpm-sp restart

Источник

Читайте также:  Prosmarttv ru sony prilozheniya dlya smart tv html
Оцените статью