phpのSSH2をCentOS 6で使えるようにする - 続編
「phpのSSH2をCentOS 6で使えるようにする」の続き
以前、CentOS 6 環境で php の SSH2関数を使えるようにするって話を書きました。
その時点でテストスクリプトを実行した感じとしては全く問題なかったのですが、その後実際にスクリプトを書いて運用しようとした所変なエラーが発生してハマってしまいました。
具体的にどんなエラーが発生したかというと、以下の様な感じのものです。
PHP Warning: ssh2_scp_send(): Failed copying file in /path/to/script.php on line xx
平たく言えば ssh2_scp_send 関数でエラーが発生しているということですね。
ただ、面倒なのが毎回発生するわけではなくたまに発生するということ・・・
規則性というか、原因がよく分からなかったので解決までに結構時間が掛かってしまいましたが、結論から書くと前回 yum でインストールした php-pecl-ssh2 パッケージに問題が有ったようなので、pecl コマンドでインストールしたら治りました。
で、具体的な手順を書きたいところですが、まずは経緯から書きます。
ssh2_scp_send でエラーが発生しているのは、エラーメッセージをそのまま読めばわかるので良いのですが、原因が分かりません。
一つ言えるのはファイルサイズが大きくなればなるほどエラーになる可能性が高いということ。
こう書くと、
「ファイルサイズの問題なんじゃないの?」
って思うかもしれませんが、エラーが発生したファイルのサイズって 150KB 程度なんですよね・・・
「10KB だと問題ないけど、たまに150KB でエラーになる」とか「300KB になるとエラーの頻度がグッと上がる」とかそんな感じです。
「数MB のファイルでエラーが出る」とかなら何となく理解できるのですが・・・
で、まず最初に試したのは ssh2_scp_send 関数が true を返すまで while で回すという強引な方法w
まぁ、この方法ならば数回のリトライで 300KB 程度のファイルは転送出来ました・・・
が、数MBのファイルになると 100回リトライしても送れません・・・
普通に考えてこの不安定さは異常なので、色々と調べてみたのですが何処を見ても似たような現象は見つかりませんでした。
初めは php の ssh2_scp_send の問題と言うよりは、scp でのファイルコピーに問題があると思ったのですが、何となくシェルで scp コマンドを叩いて確認したら、全く問題なく転送できたので、php のモジュール自体の問題じゃないか?と疑ってみたらビンゴだったという感じですね。
ということで、解決方法です。
まずは、前回インストールした php-pecl-ssh2 をアンインストール。
yum erase php-pecl-ssh2
で、前回同様 ssh2 を pecl でインストールして行くのですが、途中までは前回の手順と同じなので、そこまではさらっと流しますね。
まずは、普通に pecl install ssh2 を実行するのですが、beta なのでバージョンを指定してインストールしろというメッセージが出てくるので、指示に従って ssh2-0.12 をインストールしようとするのですが、そこで色々とエラーや警告が出てきます。
出来る限り全部対応するということで、 pecl channel-update pecl.php.net をして、phpize の為に php-devel をインストールするって所までは、前回の手順と同じです。
で、再度 pecl install ssh2-0.12 を実行すると、下記のようなエラーが出てきます。
pecl install ssh2-0.12 downloading ssh2-0.12.tgz ... Starting to download ssh2-0.12.tgz (26,223 bytes) .........done: 26,223 bytes 6 source files, building running: phpize Configuring for: PHP Api Version: 20090626 Zend Module Api No: 20090626 Zend Extension Api No: 220090626 libssh2 prefix? [autodetect] : building in /var/tmp/pear-build-rootBMM9tw/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... no checking for gcc... no configure: error: in `/var/tmp/pear-build-rootBMM9tw/ssh2-0.12': configure: error: no acceptable C compiler found in $PATH See `config.log' for more details. ERROR: `/var/tmp/ssh2/configure --with-ssh2' failed
Cのコンパイラが見つからないってエラーなので、gcc をインストールします。
yum install gcc
で、再度インストールを実行。
pecl install ssh2-0.12 ・ ・ ・ 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
re2c と libssh2 が無いみたいなので、インストールします。
yum install re2c libssh2-devel
若干面倒だと思いますが、もう少しですw
再度インストールを実行します。
pecl install ssh2-0.12 ・ ・ ・ checking for re2c... re2c checking for re2c version... 0.13.5 (ok) checking for gawk... gawk checking for ssh2 support... yes, shared checking for ssh2 files in default path... found in /usr checking for libssh2_session_hostkey in -lssh2... yes checking for libssh2_agent_init in -lssh2... no configure: WARNING: libssh2 <= 1.2.3, ssh-agent subsystem support not enabled checking for libssh2_session_set_timeout in -lssh2... no configure: WARNING: libssh2 < 1.2.9, session timeout support not enabled checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1966080 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... no checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating ./config.status config.status: creating config.h config.status: executing libtool commands running: make sh: make: command not found ERROR: `make' failed
はい、make が無いw
ということでインストールします。
yum install make
これで、インストールコマンドがやっと通りました。
pecl install ssh2-0.12 ・ ・ ・ running: make ・ ・ ・ ---------------------------------------------------------------------- Libraries have been installed in: /var/tmp/pear-build-rooto3xslQ/ssh2-0.12/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. ---------------------------------------------------------------------- Build complete. Don't forget to run 'make test'. running: make INSTALL_ROOT="/var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12" install Installing shared extensions: /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12/usr/lib64/php/modules/ running: find "/var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12" | xargs ls -dils 395022 4 drwxr-xr-x 3 root root 4096 Jan 31 12:13 /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12 395047 4 drwxr-xr-x 3 root root 4096 Jan 31 12:13 /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12/usr 395048 4 drwxr-xr-x 3 root root 4096 Jan 31 12:13 /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12/usr/lib64 395049 4 drwxr-xr-x 3 root root 4096 Jan 31 12:13 /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12/usr/lib64/php 395050 4 drwxr-xr-x 2 root root 4096 Jan 31 12:13 /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12/usr/lib64/php/modules 395046 220 -rwxr-xr-x 1 root root 222539 Jan 31 12:13 /var/tmp/pear-build-rooto3xslQ/install-ssh2-0.12/usr/lib64/php/modules/ssh2.so Build process completed successfully Installing '/usr/lib64/php/modules/ssh2.so' install ok: channel://pecl.php.net/ssh2-0.12 configuration option "php_ini" is not set to php.ini location You should add "extension=ssh2.so" to php.ini
最後に、php.ini を修正して ssh2.so を有効にします。
これで、問題なく転送できるようになりました。
うーん、何かなぁって感じですよね。
yum でインストールできると非常に楽なんですけどこういう落とし穴があると嫌ですね・・・
コメント