博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux 下搭建PHP环境(make方法)太麻烦了
阅读量:6702 次
发布时间:2019-06-25

本文共 6166 字,大约阅读时间需要 20 分钟。

hot3.png

载软件包 

4、下载php 
   us.php.net/get/php-5.3.10.tar.gz/from/cn2.php.net/mirror 

 http://cn2.php.net/distributions/php-5.6.19.tar.gz

5、下载cmake(MySQL编译工具) 

   http://www.cmake.org/files/v2.8/cmake-2.8.7.tar.gz 

    https://cmake.org/files/v3.5/cmake-3.5.0.tar.gz

6、下载libmcrypt(PHPlibmcrypt模块) 

   ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz 
7、下载Zend Guard  (需要注册)
   http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz 

    http://downloads.zend.com/guard/7.0.0/zend-loader-php5.6-linux-x86_64.tar.gz

安装篇 

以下是用putty工具远程登录到服务器,在命令行下面操作的 
一、安装libmcrypt 

cd /usr/local/src tar zxvf  libmcrypt-2.5.7.tar.gz   #解压 cd  libmcrypt-2.5.7 #进入目录 ./configure    #配置 make           #编译 make install   #安装

二、安装cmake 

cd /usr/local/src tar zxvf cmake-2.8.7.tar.gz cd cmake-2.8.7 ./configure make           #编译 make install   #安装

三、安装pcre 

 cd /usr/local/src  mkdir /usr/local/pcre  #创建安装目录  tar  zxvf pcre-8.30.tar.gz  cd pcre-8.30  ./configure  --prefix=/usr/local/pcre  #配置  make  make install

六、安装php 

cd /usr/local/srctar -zvxf php-5.3.10.tar.gzcd  php-5.3.10mkdir -p /usr/local/php5  #建立php安装目录./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-gd --with-iconv  --with-zlib  --enable-xml --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curlwrappers --enable-mbregex  --enable-fpm --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl  #配置make   #编译make install    #安装cp  php.ini-production   /usr/local/php5/etc/php.ini  #复制php配置文件到安装目录rm -rf /etc/php.ini   #删除系统自带配置文件ln -s /usr/local/php5/etc/php.ini  /etc/php.ini    #添加软链接cp  /usr/local/php5/etc/php-fpm.conf.default   /usr/local/php5/etc/php-fpm.conf    #拷贝模板文件为php-fpm配置文件vi  /usr/local/php5/etc/php-fpm.conf  #编辑user = www    #设置php-fpm运行账号为wwwgroup = www   #设置php-fpm运行组为wwwpid = run/php-fpm.pid    #取消前面的分号设置 php-fpm开机启动cp /usr/local/src/php-5.3.10/sapi/fpm/init.d.php-fpm   /etc/rc.d/init.d/php-fpm  #拷贝php-fpm到启动目录chmod +x /etc/rc.d/init.d/php-fpm  #添加执行权限chkconfig php-fpm on    #设置开机启动vi /usr/local/php5/etc/php.ini    #编辑配置文件找到:;open_basedir =修改为:open_basedir = .:/tmp/   #防止php木马跨站,重要!!找到:disable_functions =修改为:disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname#列出PHP可以禁用的函数,如果某些程序需要用到这个函数,可以删除,取消禁用。找到:;date.timezone =修改为:date.timezone = PRC   #设置时区找到:expose_php = On修改为:expose_php = OFF  #禁止显示php版本的信息找到:display_errors = On修改为:display_errors = OFF  #关闭错误提示

七、配置nginx支持php 

vi /usr/local/nginx/conf/nginx.conf修改/usr/local/nginx/conf/nginx.conf 配置文件,需做如下修改user   www  www;          #首行user去掉注释,修改Nginx运行组为www www;必须与/usr/local/php5/etc/php-fpm.conf中的user,group配置相同,否则php运行出错index  index.php  index.html index.htm;    #添加index.php  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  #  location ~ \.php$ {    root           html;    fastcgi_pass   127.0.0.1:9000;    fastcgi_index  index.php;    fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;    include        fastcgi_params;  }#取消FastCGI server部分location的注释,并要注意fastcgi_param行的参数,改为$document_root$fastcgi_script_name,或者使用绝对路径/etc/init.d/nginx restart  #重启nginx

八、配置php支持Zend Guard 

安装Zend Guardcd /usr/local/srcmkdir /usr/local/zend       #建立Zend安装目录tar xvfz ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz  #解压安装文件cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php-5.3.x/ZendGuardLoader.so  /usr/local/zend/  #拷贝文件到安装目录vi /usr/local/php5/etc/php.ini   #编辑文件在最后位置添加以下内容[Zend Guard]zend_extension=/usr/local/zend/ZendGuardLoader.sozend_loader.enable=1zend_loader.disable_licensing=0zend_loader.obfuscation_level_support=3zend_loader.license_path=测试篇cd  /usr/local/nginx/html/   #进入nginx默认网站根目录rm -rf   /usr/local/nginx/html/*   #删除默认测试页vi  index.php  #新建index.php文件
:wq!   #保存chown www.www /usr/local/nginx/html/  -R   #设置目录所有者chmod 700 /usr/local/nginx/html/  -R #设置目录权限shutdown -r now    #重启在客户端浏览器输入服务器IP地址,可以看到相关的配置信息!service nginx restart    #重启nginxservice mysqld restart   #重启mysql/usr/local/php5/sbin/php-fpm   #启动php-fpm/etc/rc.d/init.d/php-fpm  restart   #重启php-fpm/etc/rc.d/init.d/php-fpm  stop  #停止php-fpm/etc/rc.d/init.d/php-fpm  start  #启动php-fpm#############################################################################备注:nginx默认站点目录是:/usr/local/nginx/html/ 权限设置:chown www.www  /usr/local/nginx/html/  -RMySQL数据库目录是:/data/mysql权限设置:chown mysql.mysql -R  /data/mysql

php安装错误configure: error: Please reinstall the libcurl distribu

 (2013-05-03 13:32:04)
11171058_P5Bh.gif转载▼
分类: 

今天配置一台server的php支持curl的时候, 出现如下报错

checking for cURL in default path... not found

configure: error: Please reinstall the libcurl distribution -
easy.h should be in /include/curl/

其实就是curl的dev包没有安装, 解决方案:

终端下

# yum -y install curl-devel

然后就可以继续了

 

yum install openssl openssl-devel

ln -s /usr/lib64/libssl.so /usr/lib/

安装PHP的时候提示这个错误 configure: error: png.h not found.,这个是选择安装GD模块才会出现的错误,详细错误信息如下

If configure fails try --with-vpx-dir=<DIR>

If configure fails try --with-jpeg-dir=<DIR>
configure: error: png.h not found.

我找了下资料说是libpng没有安装,于是我执行命令

$>yum install libpng
但是并没有解决,想了下是不是还有什么devel包没安装吧,试了下面这个命令
$> yum install libpng-devel
终于解决了,呵呵。记录下来,方便大家和自己下次查看。

转载于:https://my.oschina.net/u/2473874/blog/635530

你可能感兴趣的文章
实战PHP数据结构基础之单链表
查看>>
函数化组件
查看>>
二叉树
查看>>
Go微服务 - 第一部分 - 介绍及理论基础
查看>>
语义图像分割概览
查看>>
React 教程第十五篇 —— 项目应用
查看>>
关于js类型转换骚操作
查看>>
JS代码复用模式
查看>>
Node.js 教程第七篇——Express 基础应用
查看>>
如何优雅的设计PHP异常
查看>>
JavaScript的String
查看>>
记录Homestead安装过程中的坑
查看>>
【基础】JavaScript类型判断
查看>>
learning javascript - 数组
查看>>
猫头鹰的深夜翻译:软件设计原则--更健壮的代码
查看>>
前端学习资源
查看>>
FPGA算法映射要点
查看>>
带你玩转 JavaScript ES6 (六) - Map 映射
查看>>
【313天】我爱刷题系列072(2017.12.15)
查看>>
Android简易柱状图和曲线图表实现
查看>>