ftsr 发表于 2015-8-31 11:19:53

mac 下 使用 brew 配置 环境

  首先 开启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
  安装mysql
  shell> groupadd mysql
  shell> useradd -r -g mysql mysql
  shell> cd /usr/localshell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
  shell> ln -s full-path-to-mysql-VERSION-OS mysql
  shell> cd mysqlshell> chown -R mysql .
  shell> chgrp -R mysql .
  shell> scripts/mysql_install_db --user=mysql
  shell> chown -R root .
  shell> chown -R mysql data# Next command is optional
  shell> cp support-files/my-medium.cnf /etc/my.cnf
  shell> bin/mysqld_safe --user=mysql &# Next command is optional
  shell> cp support-files/mysql.server /etc/init.d/mysql.server
  修改密码 ./bin/mysqladmin -uroot password 123456
  修改 phpini


pdo_mysql.default_socket=/tmp/mysql.sock
mysql.default_socket = /tmp/mysql.sock
mysqli.default_socket = /tmp/mysql.sock
页: [1]
查看完整版本: mac 下 使用 brew 配置 环境