2011年8月29日

服务器架设:CentOS搭建LAMP详细教程

摘要: 面,你就能看到刚刚安装的 PHP和MySQL 模块。6. 设置 Apache2 和 MySQL 开机启动chkconfig --levels 3 httpd onchkconfig --list httpd/etc/init.d/httpd restartchkconfig --levels 3 mysqld onchkconfig --list mysqld/etc/init.d/mysqld restart注意:“设置 Apache 和 MySQL 开机启动”这一步一定要做,否则是访问不了你的网站的。OK,一个 LAMP 服务器搭建完成。第二部分1.安装phpMyAdmin如果已经将PHP 阅读全文

posted @ 2011-08-29 16:03 cn三少<script></script> 阅读(294) 评论(0) 推荐(0) 编辑

MySQL的show系列命令总结

摘要: MySQL的show系列命令总结发表于: DataBase, MySQL, 个人日记 | 作者: 谋万世全局者标签: mysql,show,命令,总结PS:以下MySQL的show命令很常用,总结以下:01、show tables或show tables from database_name; — 显示当前数据库中所有表的名称02、show databases; — 显示mysql中所有数据库的名称03、show columns from table_name from database_name; 或show columns from database_name.table_name; — 阅读全文

posted @ 2011-08-29 15:12 cn三少<script></script> 阅读(205) 评论(0) 推荐(0) 编辑

日本最大社交网络Mixi的服务器架构图解

摘要: 动,使他们患上了Mixi依赖症。这些Mixi迷很在意自己在其中的表现,无论是照片还是日记,会担心写得好不好,有没有人看,访问人数下滑了之类。这也从另一方面反映了Mixi在日本当地用户中的地位。Mixi的CTO Batara Kesuma 在PPTmixi.jpscaling out with open source中讲他们怎么使用开源工具做向外扩展伸缩的。主要是怎么对MySQL数据库做切分(partitioning)。Mixi还被MySQL官方收为案例之一:mixi Delivers Massive Scale-out with MySQL这篇文章memcached全面剖析–5. memcac 阅读全文

posted @ 2011-08-29 15:09 cn三少<script></script> 阅读(466) 评论(0) 推荐(0) 编辑

CentOS 5.5 系统安全配置

摘要: 750 /usr/bin/c++* [root@localhost ~]# chmod 750 /usr/bin/ld [root@localhost ~]# chmod 750 /usr/bin/as [root@localhost ~]# locate sqlaccess /opt/lampp/bin/mysqlaccess [root@localhost ~]# chmod 755 /opt/lampp/bin/mysqlaccess [root@localhost ~]# chattr +a .bash_history [root@localhost ~]# chattr +i .ba 阅读全文

posted @ 2011-08-29 14:15 cn三少<script></script> 阅读(205) 评论(0) 推荐(0) 编辑

五种常见的 PHP 设计模式

摘要: 设计模式 一书将设计模式引入软件社区,该书的作者是 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides Design(俗称 “四人帮”)。所介绍的设计模式背后的核心概念非常简单。经过多年的软件开发实践,Gamma 等人发现了某些具有固定设计的模式,就像建筑师设计房子和建筑物一样,可以为浴室的位置或厨房的构造方式开发模板。使用这些模板或者说设计模式 意味着可以更快地设计更好的建筑物。同样的概念也适用于软件。设计模式不仅代表着更快开发健壮软件的有用方法,而且还提供了以友好的术语封装大型理念的方法。例如,您可以说您正在编写一个提供松散耦合的 阅读全文

posted @ 2011-08-29 09:59 cn三少<script></script> 阅读(211) 评论(0) 推荐(0) 编辑

2011年8月26日

PHP 连贯操作

摘要: method_x(substr($method,6)); } } function method1() { $this->i+=1; return $this; } function method2() { $this->i+=2; return $this; } function method_x() { $args=func_get_arg(0); $this->i+=$args; return $this; } }$test=new myoop();echo $test->method1()->method2()->method88881()-> 阅读全文

posted @ 2011-08-26 16:56 cn三少<script></script> 阅读(245) 评论(0) 推荐(0) 编辑

memcache 管理指令 --stats

摘要: 连上memcache,然后stats,详细如下:mqq@32_167_game:~> telnet server portTrying 172.16.32.166...Connected to 172.16.32.166.Escape character is '^]'.statsSTAT pid 26530STAT uptime 5807STAT time 1258643806STAT version 1.2.2STAT pointer_size 64STAT rusage_user 12.372773STAT rusage_system 24.233514STAT c 阅读全文

posted @ 2011-08-26 11:30 cn三少<script></script> 阅读(477) 评论(0) 推荐(0) 编辑

Ubuntu 10.04配置Apache+PHP+MySQL

摘要: 测试环境:Ubuntu 10.041.安装apache2.0sudo apt-get install apache2安装过程就不多说了安装后在浏览器中打开:http://localhost/或者http://127.0.0.1如果出现It works!那证明OK了2.安装PHP依次在终端打开:sudo apt-get install php5 //安装PHP5sudo apt-get install libapache2-mod-php5 //配置APACHE+PHPsudo /etc/init.d/apache2 restart //重启APACHE测试:打开gksudo gedit /va 阅读全文

posted @ 2011-08-26 11:03 cn三少<script></script> 阅读(215) 评论(0) 推荐(0) 编辑

2011年8月25日

从PHP5.2.x迁移到PHP5.3.x

摘要: 写在前面从PHP5.2.x迁移到PHP5.3.x,这是官方提供的Migrating from PHP 5.2.x to PHP 5.3.x的翻译。还未完成。文章参考了此文的翻译http://www.flyinghail.net/?p=99 在此表示感谢。翻译追求表意,由于部分函数/类没有使用经验,翻译出错难免,请大家指正以修改、完善。目录一、PHP 5.3.x中发生了什么变化二、向后不兼容的变化三、新功能四、Windows支持的变化五、SAPI modules中的变化六、PHP 5.3.x中不建议使用的功能七、PHP 5.3.x中去除不推荐的功能八、新参数九、新函数十、新的stream wra 阅读全文

posted @ 2011-08-25 12:48 cn三少<script></script> 阅读(1529) 评论(0) 推荐(0) 编辑

服务器并发能力测试 Apache Beach

摘要: 1.打开windows cmd(以下数据兼为windows xp平台运行数据)2.Cd 至Apache bin目录。3.运行ab.exe ( ApacheBench command line utility)Java代码 Usage: ab [options] [http://]hostname[:port]/path Options are: -n requests Number of requests to perform -c concurrency Number of multiple requests to make -t tim... 阅读全文

posted @ 2011-08-25 11:27 cn三少<script></script> 阅读(1080) 评论(0) 推荐(0) 编辑

导航