
server搭建
傲雪星枫
活着,虽然令人感到痛苦,然而美好之事,却唯有活着,才能经历。
微信号:fdipzone-idea
展开
-
ubuntu下安装Apache+PHP+Mysql
步骤一,安装apache2 sudo apt-get install apache2 安装完成。 运行如下命令重启下: sudo /etc/init .d /apache2 restart 在浏览器里输入http://localhost或者是http://127.0.0.1,如果看到了It works!,那就说明Apache就成功的安装了,Apache的默认安装,会在/var下建转载 2011-12-30 22:50:26 · 2479 阅读 · 0 评论 -
Ubuntu安装MongoDB
UBuntu上安装MongoDB server 获取最新版本 wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.0.2.tgz 解压缩即可执行 tar zxvf mongodb-linux-x86_64-2.0.2.tgz cd /usr/mongodb-linux-x86_64-2.0.2/bin转载 2012-03-03 23:04:52 · 10282 阅读 · 0 评论 -
尝试用Gearman实现分布式处理(PHP)
本文需要你已对Gearman有个大致了解。 顺便再推荐两篇参考文章 http://hi.baidu.com/thinkinginlamp/blog/item/ff49972b9e7378f3e6cd40aa.html (学学Gearman) http://www.ibm.com/developerworks/cn/opensource/os-php-gearman/index.html转载 2011-12-31 00:06:13 · 21780 阅读 · 0 评论 -
在ubuntu下安装memcache
使用Memcache的网站一般流量都是比较大的,为了缓解数据库的压力,让Memcache作为一个缓存区域,把部分信息保存在内存中,在前端能 够迅速的进行存取。 下面来介绍一下如何安装和使用memcache。 安装memcache 在ubuntu下安装memcache是非常的简单和快捷的,直接安装即可(本人使用的是ubuntu 10.04LTS) sudo apt-get instal转载 2011-12-30 23:53:31 · 2790 阅读 · 0 评论 -
系统中有两个version的PHP存在,导致phpunit测试出现问题的解决方法
今天要搭建本机的LAMP开发环境,因系统自带的php版本是5.5.14,但开发要使用的是php 5.6以上,因此安装了php 5.6.7。这样导致了系统中有两个版本的php存在。 正常开发是没有问题的,但如果使用了phpunit,phpunit会调用系统自带的php 5.5.14来执行。而我安装的php扩展(例如memcache,redis等)都是安装在php 5.6.7的那个版本上。使用phpunit做单元测试时,会提示扩展没有安装的情况。(例如memcache function not found)。原创 2015-04-26 11:05:11 · 22135 阅读 · 0 评论 -
Mac OSX使用brew安装旧版本phpunit的方法
本文介绍在Mac OSX系统中使用brew安装/卸载软件的基本操作。用phpunit作为例子,说明如何通过brew安装旧版本的软件,提供完整操作流程和执行命令。原创 2017-08-29 22:25:52 · 45470 阅读 · 0 评论