>  기사  >  백엔드 개발  >  在homestead php7的ubuntu环境中安装 php redis扩展的方法

在homestead php7的ubuntu环境中安装 php redis扩展的方法

WBOY
WBOY원래의
2016-06-20 12:27:13893검색

转载:https://laracasts.com/discuss/channels/tips/tutorial-guide-installing-php-redis-on-fresh-install-homestead-with-php7

vagrant@homestead:~$ sudo apt-get updatevagrant@homestead:~$ git clone -b php7 https://github.com/phpredis/phpredis.gitvagrant@homestead:~$ sudo mv phpredis/ /etc/vagrant@homestead:~$ cd /etc/phpredisvagrant@homestead:/etc/phpredis$  phpizevagrant@homestead:/etc/phpredis$ ./configurevagrant@homestead:/etc/phpredis$ make && make installNote This is an Extension You Need to Enable to Make it Work  in Php 7This First Command Will Allow You To Call PHPREDIS Facade in Browservagrant@homestead:/etc/phpredis$ sudo vim /etc/php/7.0/fpm/conf.d/redis.iniInside Vim Paste thisextension=/etc/phpredis/modules/redis.so:w!     ->write/save:q  ->exit vimNOTE This Extension needs To be Enable in PHP ini to ENABLE it on your Command Line Interface Such As Artisan.The Usual Problem You Will Face If You Wont do this is Get a Redis Class Not Foundvagrant@homestead:/etc/phpredis$ sudo vim /etc/php/7.0/cli/php.inithen Look for this Word CLI ServerType/CLI Server Add to the last line of extensionextension=/etc/phpredis/modules/redis.so:w!     ->write/save:q  ->exit vimvagrant@homestead:/etc/phpredis$ sudo service php7.0-fpm restartvagrant@homestead:/etc/phpredis$ sudo service nginx restartTo Test if PhpRedis Extension is Workingphp -r "if (new Redis() == true){ echo \"\r\n OK \r\n\"; }"It Should Return OK! 

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.