1. コンパイルツールをインストールします
yum install wget make gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel kernel keyutils patch perl
2. redis php-redisをインストールします
# yum install redis php-redis
インストールが成功しました
redisを起動します
# sudo redis-server /etc/redis.conf
1. php-redis zipインストールパッケージをダウンロードします
/ nicolasff/phpredis
2. PHP インストール パスを見つけます
コマンド whereis phpize と whereis php-config パスを見つけます
3. configure
# /usr/bin/phpize
を生成してインストールします
# ./configure --with-php-config=/usr/bin/php-config # make && make install
5.インストールされた redis .so モジュールを追加します
# vim /etc/php.ini
6. Apache または nginx を再起動します
7. テスト
$redis = new Redis(); $redis->connect('127.0.0.1',6379); $redis->set('test','hello world!'); echo $redis->get('test');
Fedora での php Redis 拡張機能のインストールに関する詳細な記事については、PHP 中国語 Web サイトに注目してください。