ホームページ >バックエンド開発 >PHPチュートリアル >ubuntu に phpredis モジュール拡張をインストールする
ubuntu
1 に phpredis のモジュール拡張機能をインストールします。前提として、最初に redis をインストールしてから phpredis をインストールします。 。 。
2. まず、phpredis-master.tar.gz インストール パッケージをダウンロードします。 。 。
具体的な詳細は次のとおりです:
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">1.tar zxvf phpredis-master.tar.gz </span></span>
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">2.cd phpredis-master/</span></span>
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">3./opt/lampp/bin/phpize ./configure --with-php-config=/opt/lampp/bin/php-config</span></span>注: phize と php-config のパス、私の php は Lampp の下にあり、特定のパスは php パスに基づいています
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">4.sudo /opt/lampp/bin/phpize-5.5.15</span></span>このステップまで実行すると、次の問題が発生します
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">Configuring for:PHP Api Version: 20121113Zend Module Api No: 20121212Zend Extension Api No: 220121212Cannot find autoconf. Please check your autoconf installation and the$PHP_AUTOCONF environment variable. Then, rerun this script.</span></span>
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">5.sudo apt-get install m4</span></span>インストール プロセス中に次のエラーが発生した場合
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">dpkg: error processing package install-info (--unpack): 子进程 已安装 post-installation 脚本 返回了错误号 127在处理时有错误发生: install-infoE: Sub-process /usr/bin/dpkg returned an error code (1)</span></span>
その後、再インストールすると正常に完了しますinstall m4...
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">6.sudo apt-get install autoconf</span></span>上記 5 つの問題も発生する場合、解決策は手順 5 と同じです。 。 。
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">7.sudo /opt/lampp/bin/phpize-5.5.15 </span></span>
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">8.sudo ./configure --with-php-config=/opt/lampp/bin/php-config</span></span>
<span style="color:#009900;"><span style="background-color: rgb(0, 0, 0);">9. sudo make</span></span>
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">10.sudo make install Installing shared extensions: /opt/lampp/lib/php/extensions/no-debug-non-zts-20121212/ </span></span>上に表示されるパスは redis.so のパスであり、php では.ini
<span style="color:#33CC00;"><span style="background-color: rgb(0, 0, 0);">11.extension="/opt/lampp/lib/php/extensions/no-debug-non-zts-20121212/redis.so"</span></span>