2023-05-12 开启多语言插件支持……

 分类:Linux

Nginx 服务器安装及配置文件详解

Nginx 服务器安装及配置文件详解
Nginx 在工作中已经有好几个环境在使用了,每次都是重新去网上找博客,各种编译配置,今天自己也整理一份安装文档和 nginx.conf 配置选项的说明,留作以后参考。 1. 安装nginx 1.1 选择稳定版本 我们编译安装nginx来定制自己的模块,机器CentOS 6.2 ...

苏 demo 10年前 (2015-06-14) 2688℃ 0评论 0喜欢

几款开源的图形化Redis客户端管理软件

几款开源的图形化Redis客户端管理软件
Redis是一个超精简的基于内存的键值对数据库(key-value),一般对并发有一定要求的应用都用其储存session,乃至整个数据库。 参见: node.js与redis结合使用。 不过它公自带一个最小化的命令行式的数据库管理工具,有时侯使用起来并不方便。不过Github上面...

苏 demo 10年前 (2015-05-19) 3335℃ 1评论 0喜欢

centos 6 搭建redis

centos 6 搭建redis
redis 是一个基于内存的高性能key-value数据库,数据都保存在内存中定期刷新到磁盘,以极高的读写效率而备受关注。他的特点是支持各种数据结构,stirng,hashes, list,set,和sorted sets 1、下载安装 wget http://download....

苏 demo 10年前 (2015-05-19) 2687℃ 0评论 0喜欢

CentOS 配置 xcache for php.5.3.3

CentOS 配置 xcache for php.5.3.3
###准备工作 #安装“最快镜像源”插件,加速下载 yum install yum-plugin-fastestmirror.noarch #升级系统 yum update #安装两个软件源 rpm -ivh http://dl.iuscommunity.org/pub/ius/...

苏 demo 10年前 (2015-05-09) 2900℃ 0评论 0喜欢

phpize: command not found 解决

phpize: command not found 解决
[root@host yum]# phpize -bash: phpize: command not found 方法1:[root@host yum]# yum install php-devel 方法2: 直接去php的安装位置下的bin文件夹 运行phpize也可以记得写全...

苏 demo 10年前 (2015-05-09) 4070℃ 0评论 0喜欢

linux下磁盘分区与格式化

linux下磁盘分区与格式化
// linux下磁盘分区与格式化-pingley-ITPUB博客// // 先使用fdisk -l 列出设备的分区。我这里的/dev/sdb 磁盘是我向运行在virtualbox中的虚拟机 添加的虚拟磁盘。顺便来说下往运行在virtualbox 中的系统添加虚拟...

苏 demo 10年前 (2015-04-28) 5168℃ 0评论 0喜欢

Linux mysql 允许远程连接

Linux mysql 允许远程连接
文章摘抄至 http://blog.csdn.net/hi_dyp/article/details/5556027   1、root用户登录到mysql数据库 /usr/local/mysql/bin/mysql -u root -p  (输入密码进入mysql) &n...

苏 demo 10年前 (2015-04-28) 2296℃ 0评论 0喜欢