之前为了便于控制过程,一直都使用nginx的编译安装 的方式进行安装,虽然麻烦,但胜在保险。最近新尝试了一下yum安装,感觉更省事,记录一下。
1. 安装基础依赖
yum -y install gcc automake autoconf libtool make gcc-c++ pcre* zlib openssl openssl-devel
2. 编译安装其他自选的依赖包
如果有需要就自己编译,然后在安装nginx的时候,引入即可
3. 安装nginx主程序
其实主程序还是编译安装的囧rz
./configure --prefix=/home/trs/FastDFS --sbin-path=/home/trs/FastDFS/nginx --conf-path=/home/trs/FastDFS/nginx.conf --pid-path=/home/trs/FastDFS/nginx.pid --with-http_ssl_module --add-module=/home/trs/FastDFS/fastdfs-nginx-module/src
make && make install
以上。