Mac 安装phpredis扩展

安装环境

mac:10.15
php: php7.3
redis:6

安装

git clone git://github.com/nicolasff/phpredis.git
cd ./phpredis
/usr/bin/phpize	# 在phpredis 目录中执行
configure
make
sudo make install
	# 这时候会提示一个路径
	# /usr/lib/php/extensions/no-debug-non-zts-20090626/
sudo vim /etc/php.ini
	#增加如下内容
	extension=redis.so

遇见问题

  1. 若未安装autoconf,则会报错 : Cannot find autoconf.
# 需要先安装brew
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
# 安装 autoconf
brew install autoconf
  1. mac 自带php的安装目录
[apache]
/etc/apache2/httpd.conf #apache配置文件
/data/apacheroot #DocumentRoot
/usr/sbin/apachectl #apachectl位置sudo /usr/sbin/apachectl restart #重启apache命令
[PHP]
/usr/bin/php
/usr/bin/phpize
/usr/bin/php-config
/usr/lib/php/extensions/no-debug-non-zts-20160303/ #(扩展目录)
  1. 执行 /usr/bin/phpize , 显示下面找不到文件
grep: /usr/include/php/main/php.h: No such file or directory
grep: /usr/include/php/Zend/zend_modules.h: No such file or directory
grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory
# macos 10.15
sudo mount -uw /
sudo ln -s "$(xcrun --show-sdk-path)/usr/include" /usr/include
export SDKROOT="$(xcrun --show-sdk-path)"
echo "export SDKROOT=\"\$(xcrun --show-sdk-path)\"" >> ~/.bash_profile
sudo DevToolsSecurity -enable

你可能感兴趣的:(mac,PHP,mac,os,x)