Nginx 在工作中已经有好几个环境在使用了,每次都是重新去网上找博客,各种编译配置,今天自己也整理一份安装文档和 nginx.conf 配置选项的说明,留作以后参考。
1. 安装nginx
1.1 选择稳定版本
我们编译安装nginx来定制自己的模块,机器CentOS 6.2 ...
苏 demo
10年前 (2015-06-14)
2688℃
0评论
0喜欢
安装PHP编译提示错误:
configure: error: Cannot find MySQL header files under /usr/bin/.
Note that the MySQL client library is not bundled anymore!
my...
苏 demo
10年前 (2015-05-22)
2495℃
0评论
0喜欢
Redis是一个超精简的基于内存的键值对数据库(key-value),一般对并发有一定要求的应用都用其储存session,乃至整个数据库。 参见: node.js与redis结合使用。 不过它公自带一个最小化的命令行式的数据库管理工具,有时侯使用起来并不方便。不过Github上面...
苏 demo
10年前 (2015-05-19)
3335℃
1评论
0喜欢
redis 是一个基于内存的高性能key-value数据库,数据都保存在内存中定期刷新到磁盘,以极高的读写效率而备受关注。他的特点是支持各种数据结构,stirng,hashes, list,set,和sorted sets
1、下载安装
wget http://download....
苏 demo
10年前 (2015-05-19)
2687℃
0评论
0喜欢
###准备工作
#安装“最快镜像源”插件,加速下载
yum install yum-plugin-fastestmirror.noarch
#升级系统
yum update
#安装两个软件源
rpm -ivh http://dl.iuscommunity.org/pub/ius/...
苏 demo
10年前 (2015-05-09)
2900℃
0评论
0喜欢
[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喜欢
#安装“最快镜像源”插件,加速下载
yum install yum-plugin-fastestmirror.noarch
#升级系统
yum update
#安装两个软件源
rpm -ivh http://dl.iuscommunity.org/pub/ius/stable/R...
苏 demo
10年前 (2015-05-09)
3125℃
0评论
0喜欢
// linux下磁盘分区与格式化-pingley-ITPUB博客// //
先使用fdisk -l 列出设备的分区。我这里的/dev/sdb 磁盘是我向运行在virtualbox中的虚拟机
添加的虚拟磁盘。顺便来说下往运行在virtualbox 中的系统添加虚拟...
苏 demo
10年前 (2015-04-28)
5168℃
0评论
0喜欢
文章摘抄至
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喜欢
//
vi /etc/sysconfig/iptables-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT(允许80端口通过防火墙)
-A INPUT -m state –state NEW ...
苏 demo
10年前 (2015-04-28)
2369℃
0评论
0喜欢