转:http://xn--ghqyhzj.com/post-21537.html本文针对LNMP的PHP 版本ver 5.3.6 or Higher,其它未测试过。1. 使用不同端口或php-fpm.sock启动多个php-fpm主进程假设使用不同的配置文件启动3个创建sock监听的PHP-FPM主...
分类:
Web程序 时间:
2014-08-06 22:05:02
阅读次数:
275
基本环境系统:centos6.4nginx-1.2.0mysql-5.5.13php-5.4.9[root@localhost~]#servicehttpdstop//确认httpd服务已关闭[root@localhost~]#servicemysqldstop//确认系统中的mysql数据库没有启动[root@localhost~]#yum-ygroupinstall"Development//安装开发环境和开发库libraries"..
分类:
其他好文 时间:
2014-08-06 19:30:52
阅读次数:
331
安装php扩展软件#哈稀函数库[root@localhost~]#tar-zxvfmhash-0.9.9.9.tar.gz[root@localhostmhash-0.9.9.9]#cdmhash-0.9.9.9[root@localhostmhash-0.9.9.9]#./configure[root@localhostmhash-0.9.9.9]#make[root@localhostmhash-0.9.9.9]#makeinstall#处理中文各种编码之间的..
分类:
其他好文 时间:
2014-08-06 19:29:22
阅读次数:
286
因为要使用php的pcntl扩展多进程函数,所以需要添加php的pcntl的函数。但是本机linux环境使用的是lnmp.org的一键安装包,查看ext里面的文件后,没有发现有pcntl的文件包。 解决办法: 在网上下载对应版本的php,然后在linux下解压,解压后找到pcntl的文件包,然后将其...
分类:
Web程序 时间:
2014-08-05 15:35:09
阅读次数:
264
系统:Cenos6.5X64软件:tengine-2.0.3.tar.gzpcre-8.33.tar.bz2mysql-5.6.12.tar.gzphp-5.5.14.tar.bz2一、安装nginx1.1安装nginx所需的pcre-devel库,使nginx支持HTTPRewrite模块[root@node3pcre-8.33]#./configure--prefix=/home/webserver/pcre&&make&&make..
分类:
其他好文 时间:
2014-08-04 18:18:29
阅读次数:
402
configure:error:noacceptableccfoundin$PATH解决方案:yuminstall-ygccconfigure:error:xml2-confignotfound.Pleasecheckyourlibxml2installation.解决方案:yuminstall-ylibxml2-develconfigure:error:CannotfindOpenSSL‘s<evp.h>解决方案:yuminstall-yopenssl-develc..
分类:
其他好文 时间:
2014-08-04 18:15:48
阅读次数:
213
在本人的项目中,运行在路由器上的服务器采用Nginx+MySQL+PHP 架构。通常较为常见的web框架为Lamp(Linux+Apache+Mysql+PHP),为何我们选择LNMP呢?我将在后续的几篇文章中给出答案。
首先我们来介绍如何在Openwrt上搭建MySQL数据库。
分类:
数据库 时间:
2014-08-02 15:08:03
阅读次数:
273
在上篇LNMP的基础上进行测试vim/usr/local/nginx/html/test.php<?php$link=mysql_connect(‘localhost‘,‘root‘,‘mysql服务器密码,没有就在两个单引号中为空‘);if(!$link)echo"fail";elseecho"success";mysql_close();?>chmod755/usr/local/apache/htdocs/testdb.phpservi..
分类:
数据库 时间:
2014-08-01 20:13:03
阅读次数:
258
昨天搞了整整一天,各种问题。搭建环境为LAMP,我天真的用LNMP去搭建,结果死活运行不起来zabbix的前台页面。还有PHP的时区问题、mysql的连接问题。今天从开始安装,尽量整理重现碰到的所有问题,以及后续的解决办法1.linux系统安装,用的是6.0minimal,安装过程就不写了。2.环..
分类:
其他好文 时间:
2014-08-01 20:09:52
阅读次数:
289
LNMP即Linux+Nginx+MySQL+PHP的web架构。1.在网站的根目录touch文件404.html,内容如下:<html><body><H1>404NOTFOUND!</H1></body></html>2.chmod755404.htmlchownwww:www404.html3.修改nginx配置文件nginx.conf:在http{}区域添加上:fas..
分类:
其他好文 时间:
2014-07-31 03:09:46
阅读次数:
198