In diesem Artikel erfahren Sie, wie Sie die Redis-Erweiterung für PHP7 in Centos7 installieren. Es hat einen gewissen Referenzwert. Freunde in Not können sich darauf beziehen. Ich hoffe, es wird für alle hilfreich sein.
Redis herunterladen
Redis herunterladen, entpacken und kompilieren:
$ wget http://download.redis.io/releases/redis-4.0.6.tar.gz $ tar xzf redis-4.0.6.tar.gz $ cd redis-4.0.6 $ make && make PREFIX=/usr/local/redis install #安装到指定目录
Gehen Sie nun in das Quellcodeverzeichnis, in das das TAR-Paket gerade extrahiert wurde, kopieren Sie eine redis.conf-Konfigurationsdatei und legen Sie sie in /usr ab /local/redis/
Geben Sie das Redis-Verzeichnis im Verzeichnis bin/ ein und führen Sie vi redis.conf aus. bin/redis-server ./ redis.conf
Sie können den integrierten Client-Befehl redis-cli verwenden:
$ ./redis-cli redis> set foo bar OK redis> get foo"bar"
Das Obige dient zur Installation des Redis-Programms
Um die Redis-Erweiterung in PHP7 zu aktivieren
Verwenden Sie Git Clone, um PHPREDIS auf das Git-Erweiterungspaket herunterzuladen.[root@localhost local ]#git clone https://github.com/phpredis/phpredis.git
[root@localhost local ]# whereis phpize phpize: /usr/bin/phpize /usr/share/man/man1/phpize.1.gz
[root@localhost phpredis ]# /usr/bin/phpize Can't find PHP headers in /usr/include/php The php-devel package is required for use of this command.
[root@localhost phpredis]#yum -y install php70w-devel
[root@localhost phpredis]# /usr/bin/phpize Configuring for: PHP Api Version: 20151012 Zend Module Api No: 20151012 Zend Extension Api No: 320151012
[root@localhost phpredis]#./configure
[root@localhost phpredis]#./configure --with-php-config=/usr/bin/php-config
[root@localhost phpredis]#make [root@localhost phpredis]# make install Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/
[root@localhost phpredis]#vim /etc/php.ini
Empfohlenes Lernen:
Das obige ist der detaillierte Inhalt vonSo installieren Sie die Redis-Erweiterung für PHP7 in Centos7. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!