欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mac下使用brew配置环境的步骤分享

程序员文章站 2023-04-07 14:59:27
首先 开启web共享。 配置 httpd.conf 加入php拓展 /etc/apache2/httpd.conf 如出现 ulimit_max_files="ulimit...
首先 开启web共享。

配置

httpd.conf 加入php拓展 /etc/apache2/httpd.conf

如出现 ulimit_max_files="ulimit -s -n `ulimit -h -n`" 错误

需要去掉

/usr/sbin/apachectl 里面的 ulimit -s -n `ulimit -h -n

重启apache

brew install memcached 安装 memcache

安装后 memcache 路径 /usr/local/bin/memcached

add "-d" to start it as a daemon.

/usr/local/bin/memcached -d 启动 不能使用 root账户启动

下载 memcache

http://pecl.php.net/package/memcache

执行 ./configure make sudo make install

编辑 php ini chmod -r 755 /etc/php.ini

修改拓展路径 /usr/lib/php/extensions/no-debug-non-zts-20090626/

新加 extension=memcache.so

查看 phpinfo 是否 拓展 memcache