나는 다음 명령을 실행하고 있습니다 :
sudo pecl install ssh2
다음 로그가 발생하고 오류와 함께 종료됩니다.
libssh2 prefix? [autodetect] :
building in /var/tmp/pear-build-rootHyRX5L/ssh2-0.12
running: /var/tmp/ssh2/configure --with-ssh2
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
checking for PHP extension directory... /usr/lib64/php/modules
checking for PHP installed headers prefix... /usr/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... gawk
checking for ssh2 support... yes, shared
checking for ssh2 files in default path... not found
configure: error: The required libssh2 library was not found. You can obtain that package from http://sourceforge.net/projects/libssh2/
ERROR: `/var/tmp/ssh2/configure --with-ssh2' failed
보시다시피 libssh2를 찾을 수 없습니다. 그러나 명령을 실행하면 다음과 같습니다.
sudo yum install libssh2
이미 설치되어 있다고 나옵니다:
Setting up Install Process
Package libssh2-1.4.2-1.el6.x86_64 already installed and latest version
Nothing to do
이제 어떤 이유로 pecl 설치 프로그램이 libssh2 설치를 찾을 수 없다고 가정합니다. 어떻게 그 경로를 인식하게 할 수 있습니까? 제대로 수행할 수 있는 쉬운 대체 방법이 있습니까?
답변1
libssh2를 에뮬레이트하기 위해 순수 PHP SSH 클라이언트인 phpseclib를 사용했다면 더 나은 행운이 있을 것입니다.
답변2
나는 그랬고 yum install libssh2-devel
그 다음에 sudo pecl install ssh2-0.12
는 일했습니다.