Home > Article > Backend Development > Configure phpredis extension under Mac, macphpredis extension_PHP tutorial
Recently, the development environment has been transferred from Windows to Mac, and all environments have to be reconfigured. Since Mac is based on a Unix system and I am not familiar with it, I encountered a lot of problems.
Install phpredis extension:
First of all, everyone first downloads the expansion package of phpredis, the address is as follows:
https://nodeload.github.com/nicolasff/phpredis/zip/master (it is recommended that you download it manually and then copy it).
Then everyone uses the command to enter the folder
<span> 1</span> cd phpredis-master/ <span> 2</span> <span>phpize命令(命令可能会出问题,解决方法请见文章尾部) </span><span> 3</span> ./configure --with-php-config=/usr/bin/php-<span>config </span><span> 4</span> <span>make</span> <span> 5</span> <span>sudo</span> <span>make</span> <span>install</span><span> (依次执行上面的命令) </span><span> 6</span> <span># 这时候会提示一个路径 </span><span> 7</span> # /usr/lib/php/extensions/no-debug-non-zts-<span>20100525</span>/ <span> 8</span> <span># 表示已经将扩展放置在该位置 </span><span> 9</span> vim /etc/<span>php.ini </span><span>10</span> <span>#增加如下内容 </span><span>11</span> extension=<span>redis.so </span><span>12</span> <span>#重启apache </span><span>13</span> <span>sudo</span><span> apachectl restart </span><span>14</span> <span>#查看扩展安装情况 </span><span>15</span> php -m |<span>grep</span><span> redis </span><span>16</span> #出现 redis 表示安装成功
Please note that there may be errors when executing the phpize command. Please refer to: http://www.cnblogs.com/tianshuowang/p/4686156.html
Reference: http://my.oschina.net/Twitter/blog/287544