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 설치 패키지 다운로드
https://github.com/nicolasff/phpredis
2. PHP 설치 경로 찾기
명령 whereis phpize 및 whereis php-config phpize 및 php-config 경로 찾기
3. 구성 생성
# /usr/bin/phpize
4. 컴파일 및 설치
# ./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');
PHP Redis 설치에 대한 추가 참고사항 Fedora의 확장 기능 관련 기사는 PHP 중국어 웹사이트를 참고하세요!