在Mac OS上自行编译安装Apache服务器和PHP解释器
发布:smiling 来源: PHP粉丝网 添加日期:2021-07-01 16:49:41 浏览: 评论:0
这篇文章主要介绍了在Mac OS上编译安装Apache服务器和PHP解释器的教程,尽管Mac上自带Apache和PHP,但由于版本或者其他原因很多情况下还是自己配置更为舒心,需要的朋友可以参考下。
Apache 2.2.27和PHP 5.5.12在Mac OS X 10.8.5编译安装过程:
在开始之前首先升级Xcode的组件: preferences => Downloads => 下载Command Line Tools包
然后进入Apache的源码包,对于大部分的源码包都可以使用下面这个指令来查看编译选项:
./configure --help
配置编译选项:
./configure --prefix=/Users/levin/dev/apache2.2.27 --enable-modules=most --enable-mods-shared=all
报错:
- checking for APR-util... yes
- checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain/usr/bin/cc
- checking whether the C compiler works... no
- configure: error: in `/Users/levin/Downloads/httpd-2.2.27':
- configure: error: C compiler cannot create executables
- See `config.log' for more details
上面的报错是指路径:
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain/usr/bin/cc
不存在
解决方法:
cd /Applications/Xcode.app/Contents/Developer/Toolchains
sudo ln -s XcodeDefault.xctoolchain OSX10.8.xctoolchain
接着编译并安装:
make
make install
编辑配置文件httpd.conf,一般修改监听端口、运行Apache的用户和组、服务器名称、开启gzip等配置。
进入安装好的目录启动Apache:
./bin/apachectl start
安装PHP
关于PHP编译选项可以参考: PHP: List of core configure options - Manual
- ./configure --prefix=/Users/levin/dev/php5.5.12 --with-apxs2=/Users/levin/dev/apache2.2.27/bin/apxs --with-config-file-path=/Users/levin/dev/php5.5.12/etc --with-openssl --with-zlib --enable-bcmath --with-bz2 --with-curl --enable-ftp --with-gd --enable-gd-native-ttf --with-mhash --enable-mbstring --enable-soap --enable-zip --enable-sockets --with-mysql=/usr/local/mysql-5.6.12-osx10.7-x86_64 --with-mysqli=/usr/local/mysql-5.6.12-osx10.7-x86_64/bin/mysql_config --with-iconv --with-pear --enable-opcache
- make
整个编译过程需要5-10分钟,视硬件配置而定,可以先去弄杯牛奶喝
发生错误:
- Undefined symbols for architecture x86_64:
- "_res_9_init", referenced from:
- _zif_dns_get_mx in dns.o
- _zif_dns_get_record in dns.o
- _zif_dns_check_record in dns.o
- "_res_9_search", referenced from:
- _zif_dns_get_mx in dns.o
- _zif_dns_get_record in dns.o
- _zif_dns_check_record in dns.o
- "_res_9_dn_skipname", referenced from:
- _zif_dns_get_mx in dns.o
- _zif_dns_get_record in dns.o
- "_res_9_dn_expand", referenced from:
- _zif_dns_get_mx in dns.o
- _php_parserr in dns.o
- ld: symbol(s) not found for architecture x86_64
- collect2: ld returned 1 exit status
- make: *** [libs/libphp5.bundle] Error 1
解决:
export LDFLAGS=-lresolv
错误:
- dyld: Library not loaded: libmysqlclient.18.dylib
- Referenced from: /Users/levin/Downloads/php-5.5.12/sapi/cli/php
- Reason: image not found
- ...
- make: *** [ext/phar/phar.php] Error 133
解决:
cd /usr/lib
ln -s /usr/local/mysql-5.6.12-osx10.7-x86_64/lib/libmysqlclient.18.dylib libmysqlclient.18.dylib
重新编译并安装:
make clean && make
make install
安装完成,此时需要从PHP的源码目录copy一份配置文件到安装目录的etc文件夹下面并改名为php.ini,需要更改PHP的配置时就使用该文件即可。
Tags: Mac OS Apache PHP解释器
相关文章
- ·mac php netbeans xdebug 配置方法详解(2014-08-25)
- ·Mac下搭建PHP 开发环境的教程(详细步骤)(2020-01-26)
- ·mac下如何进行php7.1 memcache扩展的安装(2020-02-08)
- ·如何在Mac上安装PHP?(2020-02-08)
- ·mac系统下php项目除了首页全访问不了(2020-02-22)
- ·Mac配置虚拟主机详细过程(2020-02-22)
- ·Mac系统下用Apache和PHP安装Xdebug详细流程(2020-03-02)
- ·mac环境中使用brew安装php5.5.15(2021-04-02)
- ·MacOS 安装 PHP的图片裁剪扩展Tclip(2021-05-18)
- ·在Mac上编译安装PHP7的开发环境(2021-06-14)
- ·全新Mac配置PHP开发环境教程(2021-07-08)
- ·在Mac OS上搭建PHP的Yii框架及相关测试环境(2021-07-09)
- ·在Mac OS上编译安装Nginx+PHP+MariaDB开发环境的教程(2021-07-11)
- ·mac 下安装php7全过程介绍(2021-09-05)
- ·Mac下快速搭建PHP开发环境步骤详解(2021-11-21)
- ·mac pecl 安装php7.1扩展教程(2022-01-08)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)