欢迎来到天天文库
浏览记录
ID:8808615
大小:60.00 KB
页数:18页
时间:2018-04-08
《macosx下安装nginxphpmysql》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、揭示:如果不习惯使用vi编辑器,可以将sudovi替换成系统默认的文本编辑工具,例如 sudovi/etc/hosts替换成sudo/Applications/TextEdit.app/Contents/MacOS/TextEdit/etc/hosts 1.安装Xcode Xcode可以去apple官网上去下载,默认系统不包含gcc等编译器,安装完Xcode就会有相应的开发编译环境。 2.删除默认的PHP 如果要删除系统默认安装的Apache与PHP,可以将如下列表的文件删除,这个步骤可以不用执行。 /usr/bin/php /usr/bi
2、n/php-config /usr/bin/phpize /usr/include/php /usr/lib/php /usr/share/man/man1/php.1.gz /usr/share/man/man1/php-config.1.gz /usr/share/man/man1/phpize.1.gz /etc/apache2 /usr/libexec/apache2 3.安装libjpeg,mcrypt,libmcrypt,mhash,autoconf2.13,cmake 安装jpegv8c tarxvzfjpegsrc.v8c
3、.tar.gz cdjpeg-8c ./configure--prefix=/usr make sudomakeinstall 安装mhash tarzxvfmhash-0.9.9.9.tar.gz cdmhash-0.9.9.9/ ./configure--prefix=/usr make sudomakeinstall 安装libmcrypt tarzxvflibmcrypt-2.5.8.tar.gz cdlibmcrypt-2.5.8/ ./configure--prefix=/usr--disable-posix-threads--en
4、able-static 如果出现如下错误 checkinghostsystemtype…configure:error:cannotguesshosttype;youmustspecifyone 执行如下复制命令,将系统中的文件复制到当前目录下 cp/usr/share/libtool/config/config.*. make sudomakeinstall 安装mcrypt tarzxvfmcrypt-2.6.8.tar.gz cdmcrypt-2.6.8/ ./configure--prefix=/usr make sudomakeinst
5、all rfc2440.c:26:20:error:malloc.h:Nosuchfileordirectory ... make[1]:***[rfc2440.o]Error1 make:***[install-recursive]Error1 如果出现如上错误,修改文件src/rfc2440.c,修改26行 #include 修改为: #include 安装autoconf2.13 由于安装php-fpm需要重新创建编译文件,系统默认的autoconf版本过高,导致重建通不过。 tarxvz
6、fautoconf-2.13.tar.gz cdautoconf-2.13 ./configure--prefix=/usr/local/autoconf213 make sudomakeinstall 安装cmake 由于编译安装mysql5.5以上版本,需要使用cmake编译工具 tarxvzfcmake-2.8.4.tar.gz cdcmake-2.8.4 ./configure--prefix=/usr/local/cmake make sudomakeinstall 4.安装mysql mysql需要下载源代码版本,去mysql网
7、站http://www.mysql.com/downloads/mysql/ SelectPlatform选择SourceCode 下载GenericLinux(ArchitectureIndependent),CompressedTARArchive tarxvzfmysql.5.5.10.tar.gz cdmysql.5.5.10 CFLAGS="-O3-fno-omit-frame-pointer" CXXFLAGS="-O3-fno-omit-frame-pointer-felide-constructors-fno-exception
8、s-fno-rtti" /usr/local/cmake/bin/cmake. -DCMAKE_INSTALL_PREF
此文档下载收益归作者所有